Update app.py
Browse files
app.py
CHANGED
@@ -14,6 +14,7 @@ from database import (
|
|
14 |
|
15 |
# Initialize the AI agent
|
16 |
agent = CodeAgent(
|
|
|
17 |
model=HfApiModel(model_id="Qwen/Qwen2.5-Coder-32B-Instruct"),
|
18 |
)
|
19 |
|
|
|
14 |
|
15 |
# Initialize the AI agent
|
16 |
agent = CodeAgent(
|
17 |
+
tools=[], # Required parameter even if empty
|
18 |
model=HfApiModel(model_id="Qwen/Qwen2.5-Coder-32B-Instruct"),
|
19 |
)
|
20 |
|