Spaces:
Sleeping
Sleeping
apple muncy
commited on
Commit
·
c929d3c
1
Parent(s):
3553c20
fix global spelling
Browse filesSigned-off-by: apple muncy <[email protected]>
app.py
CHANGED
@@ -123,7 +123,7 @@ async def get_agent():
|
|
123 |
logger.info("Tools loaded successfully")
|
124 |
|
125 |
print(f"Agent loaded with {len(agent_instance.available_tools)} tools:")
|
126 |
-
|
127 |
for t in agent_instance.available_tools:
|
128 |
print(f"🔧🔧• {t.function.name}")
|
129 |
g_tools.append(t.function.name)
|
|
|
123 |
logger.info("Tools loaded successfully")
|
124 |
|
125 |
print(f"Agent loaded with {len(agent_instance.available_tools)} tools:")
|
126 |
+
global g_tools
|
127 |
for t in agent_instance.available_tools:
|
128 |
print(f"🔧🔧• {t.function.name}")
|
129 |
g_tools.append(t.function.name)
|