Spaces:
Sleeping
Sleeping
File size: 10,743 Bytes
47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 680df21 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 680df21 314fc0f 39db524 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 47add8d 314fc0f 8edcd84 47add8d 8edcd84 314fc0f 47add8d 314fc0f 8edcd84 47add8d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 | from pathlib import Path
import litellm
from smolagents import (
CodeAgent,
WebSearchTool,
VisitWebpageTool,
WikipediaSearchTool,
PythonInterpreterTool,
FinalAnswerTool,
LiteLLMModel,
)
from smolagents.monitoring import LogLevel
from smolagents import tool
import os
class SubAgent:
def __init__(self):
"""
Initialize the SubAgent with a given agent.
"""
self._model = LiteLLMModel(
model_id="gemini/gemini-2.0-flash", # you can see other model names here: https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models. It is important to prefix the name with "gemini/"
api_key=os.getenv("GEMINI_API_KEY"),
max_tokens=8192,
temperature=0.2,
)
class ReadingAgent(SubAgent):
def __init__(
self,
):
super().__init__()
self._r_agent = CodeAgent(
model=self._model,
tools=[read_excel_file, read_python_file],
name="reading_agent",
description="Reads the contents of files and extracts the contents from them. This agent should not be used to execute code or make requests to URLs.",
verbosity_level=LogLevel.INFO,
max_steps=1,
)
@property
def agent(self):
"""
Property that returns the CodeAgent instance
"""
return self._r_agent
class DescribeAgent(SubAgent):
def __init__(
self,
):
super().__init__()
self._r_agent = CodeAgent(
model=self._model,
tools=[describe_audio, describe_image],
name="describe_agent",
description="Transcribe extracts information from files and provides information about the contents of the file provided. As an example this might transcribe an audio file or describe an image. This agent should not be used to execute code or make requests to URLs.",
verbosity_level=LogLevel.INFO,
max_steps=1,
)
@property
def agent(self):
"""
Property that returns the CodeAgent instance
"""
return self._r_agent
class CodingAgent(SubAgent):
def __init__(self):
super().__init__()
self._c_agent = CodeAgent(
model=self._model,
tools=[PythonInterpreterTool()],
name="coding_agent",
description="Executes Python code to solve tasks, this agent should not be used to make external calls e.g. do not make any requests to URLs. This agent should just be used to process information retrieved from other tools and agents locally",
verbosity_level=LogLevel.INFO,
max_steps=5,
# add_base_tools=True,
additional_authorized_imports=[
"pandas",
"re",
"requests",
"json",
"numpy",
"bs4",
"datetime",
"os",
"io",
"csv",
],
)
@property
def agent(self):
"""
Property that returns the CodeAgent instance
"""
return self._c_agent
class WebAgent(SubAgent):
def __init__(self):
super().__init__()
self._w_agent = CodeAgent(
model=self._model,
tools=[WebSearchTool(), VisitWebpageTool(), WikipediaSearchTool()],
name="web_agent",
description="Browses the web to find information, to find information about a subject Wikipedia is the best source for factual information. For following direct links, use the VisitWebpageTool. For general searches, use the WebSearchTool. This agent should not be used to execute code or make requests to URLs.",
verbosity_level=LogLevel.INFO,
max_steps=3,
)
@property
def agent(self):
"""
Property that returns the CodeAgent instance
"""
return self._w_agent
class BudleeAgent(SubAgent):
# Constructor for SMOL Agent
_PROMPT = """
"You are a general AI assistant. "
"I will ask you a question. Report your thoughts step by step. "
"Finish your answer only with the final answer. In the final answer don't write explanations. "
"The answer should be a number OR as few words as possible OR a comma separated list of numbers and/or strings. "
"Avoid units, abbreviations, or articles unless specified. "
"Pay attention to each sentence in the question and verify the answer against every part. "
"If the question requires a specific format (e.g., a number, a name, 'yes/no'), provide the answer in that format. "
"If the answer is a numerical value, return only the number itself. "
"If the detailed response does not clearly answer the question, output 'Unable to determine a concise answer from the provided information.' "
"Focus solely on the factual answer."
""
"QUESTION: "
""
"{question}"
"""
def __init__(self):
"""
Initialize the BudleeAgent.
This is where you can set up any necessary configurations or parameters.
"""
# self._api_url = api_base_url
# model = InferenceClientModel(
# max_tokens=4096,
# temperature=0.2,
# model_id="Qwen/Qwen2.5-Coder-32B-Instruct", # it is possible that this model may be overloaded
# custom_role_conversions=None,
# provider="hf-inference",
# )
super().__init__()
agent_web = WebAgent().agent
agent_coding = CodingAgent().agent
agent_reading = ReadingAgent().agent
agent_describing = DescribeAgent().agent
self._manager_agent = CodeAgent(
model=self._model,
managed_agents=[agent_web, agent_coding, agent_reading, agent_describing],
tools=[
FinalAnswerTool(),
],
planning_interval=5,
verbosity_level=LogLevel.DEBUG,
# final_answer_checks=[self._check_response],
max_steps=5,
)
self._manager_agent.visualize()
# def _check_response(self, final_answer, agent_memory):
# """
# Check the final answer response for validity.
# This is a placeholder; implement your own checks as needed.
# """
# # Example: always return True (no check)
# return True
def answer(self, question: str) -> str:
"""
Try to solve the task as an Agent using the information
"""
print(f"Agent received question (first 50 chars): {question[:50]}...")
prompt = self._PROMPT.format(
question=question,
# additional_context=additional_context
)
print(f"Agent prompt {prompt}")
answer = self._manager_agent.run(prompt)
print(f"Agent returning fixed answer: {answer}")
return answer # type: ignore
@tool
def read_excel_file(file_path: str) -> str:
"""Reads an Excel file and returns its content as a string.
Args:
file_path: The path to the Excel file.
Returns:
The content of the Excel file as a string, or an error message if the file cannot be read.
"""
try:
import pandas as pd
# Read the Excel file
df = pd.read_excel(file_path)
# Convert the DataFrame to a string representation
return df.to_string()
except Exception as e:
return f"Error reading the Excel file: {str(e)}"
@tool
def read_python_file(file_path: str) -> str:
"""Reads a Python file and returns its content as a string.
Args:
file_path: The path to the Python file.
Returns:
The content of the Python file as a string, or an error message if the file cannot be read.
"""
try:
with open(file_path, "r") as file:
content = file.read()
return content
except Exception as e:
return f"Error reading the Python file: {str(e)}"
import base64
def convert_image_to_base64(image_path: str) -> str:
"""
Converts an image to a Base64 string.
Args:
image_path: The path to the image file.
Returns:
A Base64 encoded string of the image.
"""
try:
with open(image_path, "rb") as image_file:
# Read the image file as binary data
encoded_string = base64.b64encode(image_file.read()).decode("utf-8")
return encoded_string
except Exception as e:
return f"Error converting image to Base64: {str(e)}"
@tool
def describe_image(image_path: str) -> str:
"""
Return the description of a given image.
Args:
image_path: the input path of the image to describe.
"""
encoded_data = convert_image_to_base64(image_path)
messages = [
{
"role": "user",
"content": [
{"type": "text", "text": "Describe the image in detail."},
{
"type": "file",
"file": {
"file_data": f"data:image/png;base64,{encoded_data}", # 👈 SET MIME_TYPE + DATA
},
},
],
}
]
# Make the API call to Gemini model
response = litellm.completion(
model="gemini/gemini-2.0-flash-lite",
messages=messages,
)
# Extract the response content
content = response.get("choices", [{}])[0].get("message", {}).get("content")
return content
@tool
def describe_audio(audio_path: str) -> str:
"""
Return the transcription of a given audio file.
Args:
audio_path: the input path of the audio to transcribe.
"""
audio_bytes = Path(audio_path).read_bytes()
encoded_data = base64.b64encode(audio_bytes).decode("utf-8")
messages = [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Please transcribe the content of this audio.",
},
{
"type": "file",
"file": {
"file_data": "data:audio/mp3;base64,{}".format(
encoded_data
), # 👈 SET MIME_TYPE + DATA
},
},
],
}
]
# Make the API call to Gemini model
response = litellm.completion(
model="gemini/gemini-2.0-flash-lite",
messages=messages,
)
# Extract the response content
content = response.get("choices", [{}])[0].get("message", {}).get("content")
return content
|