Update app.py
Browse files
app.py
CHANGED
@@ -141,7 +141,7 @@ search_tool = DuckDuckGoSearchTool()
|
|
141 |
#llm_engine = LiteLLMModel(model_id="Qwen/Qwen2.5-72B-Instruct", temperature=0.2, max_tokens=5000)
|
142 |
#llm_engine=InferenceClientModel()
|
143 |
|
144 |
-
|
145 |
agent = CodeAgent(tools=[image_generation_tool, search_tool], model=llm_engine)
|
146 |
|
147 |
# =========================================================
|
|
|
141 |
#llm_engine = LiteLLMModel(model_id="Qwen/Qwen2.5-72B-Instruct", temperature=0.2, max_tokens=5000)
|
142 |
#llm_engine=InferenceClientModel()
|
143 |
|
144 |
+
llm_engine = InferenceClientModel("Qwen/Qwen2.5-Coder-32B-Instruct")
|
145 |
agent = CodeAgent(tools=[image_generation_tool, search_tool], model=llm_engine)
|
146 |
|
147 |
# =========================================================
|