Updated LLMs
Browse files
app.py
CHANGED
|
@@ -47,7 +47,7 @@ def setup_llm():
|
|
| 47 |
from llama_index.llms.groq import Groq
|
| 48 |
llm = Groq(
|
| 49 |
api_key=groq_key,
|
| 50 |
-
model="
|
| 51 |
max_tokens=1024,
|
| 52 |
temperature=0.1
|
| 53 |
)
|
|
@@ -80,7 +80,7 @@ def setup_llm():
|
|
| 80 |
from llama_index.llms.together import Together
|
| 81 |
llm = Together(
|
| 82 |
api_key=together_key,
|
| 83 |
-
model="
|
| 84 |
max_tokens=1024,
|
| 85 |
temperature=0.1
|
| 86 |
)
|
|
|
|
| 47 |
from llama_index.llms.groq import Groq
|
| 48 |
llm = Groq(
|
| 49 |
api_key=groq_key,
|
| 50 |
+
model="meta-llama/llama-4-scout-17b-16e-instruct", # Known working Groq model
|
| 51 |
max_tokens=1024,
|
| 52 |
temperature=0.1
|
| 53 |
)
|
|
|
|
| 80 |
from llama_index.llms.together import Together
|
| 81 |
llm = Together(
|
| 82 |
api_key=together_key,
|
| 83 |
+
model="deepseek-ai/DeepSeek-V3", # Known working Together model
|
| 84 |
max_tokens=1024,
|
| 85 |
temperature=0.1
|
| 86 |
)
|