Update app.py
Browse files
app.py
CHANGED
@@ -52,7 +52,7 @@ def predict(chat_history, query, image):
|
|
52 |
# Call the Groq API with the messages
|
53 |
try:
|
54 |
completion = client.chat.completions.create(
|
55 |
-
model="llama-3.2-
|
56 |
messages=messages,
|
57 |
temperature=1,
|
58 |
max_tokens=1500,
|
@@ -74,7 +74,7 @@ def main():
|
|
74 |
args = _get_args()
|
75 |
|
76 |
with gr.Blocks() as demo:
|
77 |
-
gr.Markdown("<h1 style='text-align: center;'>Llama-3.2-
|
78 |
|
79 |
chatbox = gr.Chatbot()
|
80 |
query = gr.Textbox(label="Input", placeholder="Type your query here...")
|
|
|
52 |
# Call the Groq API with the messages
|
53 |
try:
|
54 |
completion = client.chat.completions.create(
|
55 |
+
model="llama-3.2-90b-vision-preview",
|
56 |
messages=messages,
|
57 |
temperature=1,
|
58 |
max_tokens=1500,
|
|
|
74 |
args = _get_args()
|
75 |
|
76 |
with gr.Blocks() as demo:
|
77 |
+
gr.Markdown("<h1 style='text-align: center;'>Llama-3.2-90b-vision-preview</h1>")
|
78 |
|
79 |
chatbox = gr.Chatbot()
|
80 |
query = gr.Textbox(label="Input", placeholder="Type your query here...")
|