Raffaele Terribile
commited on
Definisci il modello di LLM da usare
Browse files
app.py
CHANGED
@@ -27,9 +27,9 @@ class FirstAgent:
|
|
27 |
### First Agent is the first attempt to develop an agent for the course. ###
|
28 |
def __init__(self):
|
29 |
self.agent = CodeAgent(
|
|
|
30 |
tools=[
|
31 |
# DuckDuckGoSearchTool(),
|
32 |
-
InferenceClientModel(),
|
33 |
# GoogleSearchTool(),
|
34 |
WebSearchTool(),
|
35 |
PythonInterpreterTool(),
|
|
|
27 |
### First Agent is the first attempt to develop an agent for the course. ###
|
28 |
def __init__(self):
|
29 |
self.agent = CodeAgent(
|
30 |
+
model=InferenceClientModel(),
|
31 |
tools=[
|
32 |
# DuckDuckGoSearchTool(),
|
|
|
33 |
# GoogleSearchTool(),
|
34 |
WebSearchTool(),
|
35 |
PythonInterpreterTool(),
|