Martin Bär
commited on
Commit
·
d91012e
1
Parent(s):
6fec0c8
Change model
Browse files- basic_agent.py +1 -1
basic_agent.py
CHANGED
@@ -12,7 +12,7 @@ from multimodality_tools import get_image_qa_tool, get_transcription_tool, \
|
|
12 |
class BasicAgent:
|
13 |
def __init__(self, ollama=False, langfuse=False):
|
14 |
if not ollama:
|
15 |
-
llm = HuggingFaceInferenceAPI(model_name="Qwen/Qwen2.5-Coder-32B-Instruct")
|
16 |
else:
|
17 |
llm = Ollama(model="mistral:latest", request_timeout=120.0)
|
18 |
|
|
|
12 |
class BasicAgent:
|
13 |
def __init__(self, ollama=False, langfuse=False):
|
14 |
if not ollama:
|
15 |
+
llm = HuggingFaceInferenceAPI(model_name="Qwen/Qwen3-32B") #"Qwen/Qwen2.5-Coder-32B-Instruct")
|
16 |
else:
|
17 |
llm = Ollama(model="mistral:latest", request_timeout=120.0)
|
18 |
|