Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ class GroqMultimodalAgent:
|
|
14 |
def __init__(self):
|
15 |
self.client = Groq(api_key=os.getenv("GROQ_API_KEY"))
|
16 |
self.llava_model = "llava-v1.5-7b-4096-preview" # For image Q&A
|
17 |
-
self.llama_model = "llama-
|
18 |
self.whisper_model = "whisper-large-v3" # For audio transcription
|
19 |
self.instructions = (
|
20 |
"You are a helpful assistant. For every question or media, reply with only the answer—no explanation, "
|
|
|
14 |
def __init__(self):
|
15 |
self.client = Groq(api_key=os.getenv("GROQ_API_KEY"))
|
16 |
self.llava_model = "llava-v1.5-7b-4096-preview" # For image Q&A
|
17 |
+
self.llama_model = "meta-llama/llama-4-scout-17b-16e-instruct" # For text Q&A
|
18 |
self.whisper_model = "whisper-large-v3" # For audio transcription
|
19 |
self.instructions = (
|
20 |
"You are a helpful assistant. For every question or media, reply with only the answer—no explanation, "
|