Spaces:
Sleeping
Sleeping
app and agents
Browse files- app.py +4 -2
- mini_agents.py +1 -0
app.py
CHANGED
|
@@ -3,6 +3,7 @@ import gradio as gr
|
|
| 3 |
import requests
|
| 4 |
import inspect
|
| 5 |
import pandas as pd
|
|
|
|
| 6 |
|
| 7 |
# (Keep Constants as is)
|
| 8 |
# --- Constants ---
|
|
@@ -12,10 +13,11 @@ DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
|
|
| 12 |
# ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
|
| 13 |
class BasicAgent:
|
| 14 |
def __init__(self):
|
| 15 |
-
|
|
|
|
| 16 |
def __call__(self, question: str) -> str:
|
| 17 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 18 |
-
fixed_answer =
|
| 19 |
print(f"Agent returning fixed answer: {fixed_answer}")
|
| 20 |
return fixed_answer
|
| 21 |
|
|
|
|
| 3 |
import requests
|
| 4 |
import inspect
|
| 5 |
import pandas as pd
|
| 6 |
+
from mini_agents import master_agent
|
| 7 |
|
| 8 |
# (Keep Constants as is)
|
| 9 |
# --- Constants ---
|
|
|
|
| 13 |
# ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
|
| 14 |
class BasicAgent:
|
| 15 |
def __init__(self):
|
| 16 |
+
self.agent = master_agent
|
| 17 |
+
print("Master Agent initialized.")
|
| 18 |
def __call__(self, question: str) -> str:
|
| 19 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
| 20 |
+
fixed_answer = self.agent.run(question)
|
| 21 |
print(f"Agent returning fixed answer: {fixed_answer}")
|
| 22 |
return fixed_answer
|
| 23 |
|
mini_agents.py
CHANGED
|
@@ -100,6 +100,7 @@ master_agent = CodeAgent(
|
|
| 100 |
managed_agents=[multimodal_manager, operation_manager],
|
| 101 |
tools=[sort_list],
|
| 102 |
verbose=True,
|
|
|
|
| 103 |
max_steps=16,
|
| 104 |
planning_steps=4,
|
| 105 |
name="Master Agent",
|
|
|
|
| 100 |
managed_agents=[multimodal_manager, operation_manager],
|
| 101 |
tools=[sort_list],
|
| 102 |
verbose=True,
|
| 103 |
+
verbose_level=2,
|
| 104 |
max_steps=16,
|
| 105 |
planning_steps=4,
|
| 106 |
name="Master Agent",
|