Spaces:
Running
Running
File size: 13,032 Bytes
2893fbd 6f8e334 9997dfd b637fc4 2893fbd 6f8e334 2893fbd 9997dfd 6f8e334 2893fbd a90a47c 6f8e334 2893fbd 6f8e334 2893fbd d5ddb65 2893fbd 6f8e334 2893fbd b637fc4 6f8e334 2893fbd 6f8e334 2893fbd d5ddb65 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd d5ddb65 6f8e334 d5ddb65 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd b637fc4 2893fbd 6f8e334 2893fbd b637fc4 6f8e334 2893fbd b637fc4 2893fbd 6f8e334 2893fbd b637fc4 6f8e334 2893fbd b637fc4 6f8e334 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd b637fc4 2893fbd b637fc4 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd 6f8e334 2893fbd d5ddb65 2893fbd d5ddb65 2893fbd |
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 |
import os
from typing import Optional, List, Dict, Any
import gradio as gr
import requests
from smolagents import CodeAgent, Tool
from smolagents.models import HfApiModel
from smolagents.monitoring import LogLevel
from gradio import ChatMessage
import logging
from functools import lru_cache
# Configure logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
DEFAULT_MODEL = "Qwen/Qwen2.5-Coder-32B-Instruct"
HF_API_TOKEN = os.getenv("HF_TOKEN")
# Tool descriptions for the UI
TOOL_DESCRIPTIONS = {
"Hub Collections": "Add tool collections from Hugging Face Hub.",
"Spaces": "Add tools from Hugging Face Spaces.",
}
@lru_cache(maxsize=128)
def search_spaces(query: str, limit: int = 1) -> Optional[Dict[str, str]]:
"""
Search for Hugging Face Spaces using the API.
Returns the first result or None if no results.
"""
try:
url = f"https://huggingface.co./api/spaces?search={query}&limit={limit}"
response = requests.get(url, headers={"Authorization": f"Bearer {HF_API_TOKEN}"})
response.raise_for_status()
spaces = response.json()
if not spaces:
return None
return extract_space_info(spaces[0])
except requests.RequestException as e:
logger.error(f"Error searching spaces: {e}")
return None
def extract_space_info(space: Dict[str, Any]) -> Dict[str, str]:
"""
Extracts space information from the API response.
"""
space_id = space["id"]
title = space_id.split("/")[-1]
description = f"Tool from {space_id}"
if "title" in space:
title = space["title"]
elif "cardData" in space and "title" in space["cardData"]:
title = space["cardData"]["title"]
if "description" in space:
description = space["description"]
elif "cardData" in space and "description" in space["cardData"]:
description = space["cardData"]["description"]
return {"id": space_id, "title": title, "description": description}
def get_space_metadata(space_id: str) -> Optional[Dict[str, str]]:
"""
Get metadata for a specific Hugging Face Space.
"""
try:
url = f"https://huggingface.co./api/spaces/{space_id}"
response = requests.get(url, headers={"Authorization": f"Bearer {HF_API_TOKEN}"})
response.raise_for_status()
space = response.json()
return extract_space_info(space)
except requests.RequestException as e:
logger.error(f"Error getting space metadata: {e}")
return None
def create_agent(model_name: str, space_tools: Optional[List[Dict[str, str]]] = None) -> Optional[CodeAgent]:
"""
Create a CodeAgent with the specified model and tools.
"""
if not space_tools:
space_tools = []
try:
tools = [
Tool.from_space(
tool_info["id"],
name=tool_info.get("name", tool_info["id"]),
description=tool_info.get("description", ""),
) for tool_info in space_tools
]
model = HfApiModel(model_id=model_name, token=HF_API_TOKEN)
agent = CodeAgent(
tools=tools,
model=model,
additional_authorized_imports=["PIL", "requests"],
verbosity_level=LogLevel.DEBUG,
)
logger.info(f"Agent created successfully with {len(tools)} tools")
return agent
except Exception as e:
logger.error(f"Error creating agent: {e}")
return create_fallback_agent(tools)
def create_fallback_agent(tools: List[Tool]) -> Optional[CodeAgent]:
"""
Create a fallback CodeAgent if the primary model fails.
"""
try:
logger.info("Trying fallback model...")
fallback_model = HfApiModel(model_id="Qwen/Qwen2.5-Coder-7B-Instruct", token=HF_API_TOKEN)
agent = CodeAgent(
tools=tools,
model=fallback_model,
additional_authorized_imports=["PIL", "requests"],
verbosity_level=LogLevel.DEBUG,
)
logger.info("Agent created successfully with fallback model")
return agent
except Exception as e:
logger.error(f"Error creating agent with fallback model: {e}")
return None
# Event handler functions
def on_search_spaces(query: str) -> tuple:
if not query:
return "Please enter a search term.", "", "", ""
try:
space_info = search_spaces(query)
if space_info is None:
return "No spaces found.", "", "", ""
results_md = f"### Search Results:\n- ID: `{space_info['id']}`\n- Title: {space_info['title']}\n- Description: {space_info['description']}\n"
return results_md, space_info["id"], space_info["title"], space_info["description"]
except Exception as e:
logger.error(f"Error in search: {e}")
return f"Error: {str(e)}", "", "", ""
def on_validate_space(space_id: str) -> tuple:
if not space_id:
return "Please enter a space ID or search term.", "", ""
try:
space_info = get_space_metadata(space_id)
if space_info is None:
space_info = search_spaces(space_id)
if space_info is None:
return f"No spaces found for '{space_id}'.", "", ""
result_md = f"### Found Space via Search:\n- ID: `{space_info['id']}`\n- Title: {space_info['title']}\n- Description: {space_info['description']}\n"
return result_md, space_info["title"], space_info["description"]
result_md = f"### Space Validated Successfully:\n- ID: `{space_info['id']}`\n- Title: {space_info['title']}\n- Description: {space_info['description']}\n"
return result_md, space_info["title"], space_info["description"]
except Exception as e:
logger.error(f"Error validating space: {e}")
return f"Error: {str(e)}", "", ""
def on_add_tool(space_id: str, space_name: str, space_description: str, current_tools: List[Dict[str, str]]) -> tuple:
if not space_id:
return current_tools, "Please enter a space ID."
for tool in current_tools:
if tool["id"] == space_id:
return current_tools, f"Tool '{space_id}' is already added."
new_tool = {
"id": space_id,
"name": space_name if space_name else space_id,
"description": space_description if space_description else "No description",
}
updated_tools = current_tools + [new_tool]
tools_md = "### Added Tools:\n"
for i, tool in enumerate(updated_tools, 1):
tools_md += f"{i}. **{tool['name']}** (`{tool['id']}`)\n {tool['description']}\n\n"
return updated_tools, tools_md
def on_create_agent(model: str, space_tools: List[Dict[str, str]]) -> tuple:
if not space_tools:
return None, [], "", "Please add at least one tool before creating an agent.", "No agent created yet."
try:
agent = create_agent(model, space_tools)
if agent is None:
return None, [], "", "Failed to create agent. Please try again with different tools or model.", "No agent created yet."
tools_str = ", ".join([f"{tool['name']} ({tool['id']})" for tool in space_tools])
agent_status = update_agent_status(agent)
return agent, [], "", f"β
Agent created successfully with {model}!\nTools: {tools_str}", agent_status
except Exception as e:
logger.error(f"Error creating agent: {e}")
return None, [], "", f"Error creating agent: {str(e)}", "No agent created yet."
def add_user_message(message: str, chat_history: List[ChatMessage]) -> tuple:
if not message:
return "", chat_history
chat_history = chat_history + [ChatMessage(role="user", content=message)]
return message, chat_history
def stream_to_gradio(agent: CodeAgent, task: str, reset_agent_memory: bool = False, additional_args: Optional[dict] = None):
from smolagents.gradio_ui import pull_messages_from_step, handle_agent_output_types
from smolagents.agent_types import AgentAudio, AgentImage, AgentText
for step_log in agent.run(task, stream=True, reset=reset_agent_memory, additional_args=additional_args):
for message in pull_messages_from_step(step_log):
yield message
final_answer = step_log
final_answer = handle_agent_output_types(final_answer)
if isinstance(final_answer, AgentImage):
yield gr.ChatMessage(role="assistant", content={"path": final_answer.to_string(), "mime_type": "image/png"})
elif isinstance(final_answer, AgentText) and os.path.exists(final_answer.to_string()):
yield gr.ChatMessage(role="assistant", content=gr.Image(final_answer.to_string()))
elif isinstance(final_answer, AgentAudio):
yield gr.ChatMessage(role="assistant", content={"path": final_answer.to_string(), "mime_type": "audio/wav"})
else:
yield gr.ChatMessage(role="assistant", content=f"**Final answer:** {str(final_answer)}")
def stream_agent_response(agent: CodeAgent, message: str, chat_history: List[ChatMessage]):
if not message or agent is None:
return chat_history
yield chat_history
try:
for msg in stream_to_gradio(agent, message):
chat_history = chat_history + [msg]
yield chat_history
except Exception as e:
error_msg = f"Error: {str(e)}"
chat_history = chat_history + [ChatMessage(role="assistant", content=error_msg)]
yield chat_history
def on_clear(agent: Optional[CodeAgent] = None) -> tuple:
return agent, [], "", "Agent cleared. Create a new one to continue.", "", gr.update(interactive=False)
def update_agent_status(agent: Optional[CodeAgent]) -> str:
if agent is None:
return "No agent created yet. Add a Space tool to get started."
tools = agent.tools if hasattr(agent, "tools") else []
tool_count = len(tools)
status = f"Agent ready with {tool_count} tools"
return status
# Create the Gradio app
with gr.Blocks(title="AI Agent Builder") as app:
gr.Markdown("# AI Agent Builder with smolagents")
gr.Markdown("Build your own AI agent by selecting tools from Hugging Face Spaces.")
agent_state = gr.State(None)
last_message = gr.State("")
space_tools_state = gr.State([])
msg_store = gr.State("")
with gr.Row():
with gr.Column(scale=1):
gr.Markdown("## Tool Configuration")
gr.Markdown("Add multiple Hugging Face Spaces as tools for your agent:")
model_input = gr.Textbox(value=DEFAULT_MODEL, label="Model", visible=False)
with gr.Group():
gr.Markdown("### Add Space as Tool")
space_tool_input = gr.Textbox(
label="Space ID or Search Term",
placeholder="Enter a Space ID (username/space-name) or search term",
info="Enter a Space ID (username/space-name) or search term"
)
space_name_input = gr.Textbox(
label="Tool Name (optional)",
placeholder="Enter a name for this tool"
)
space_description_input = gr.Textbox(
label="Tool Description (optional)",
placeholder="Enter a description for this tool",
lines=2
)
add_tool_button = gr.Button("Add Tool", variant="primary")
gr.Markdown("### Added Tools")
tools_display = gr.Markdown("No tools added yet. Add at least one tool before creating an agent.")
create_button = gr.Button("Create Agent with Selected Tools", variant="secondary", size="lg")
status_msg = gr.Markdown("")
agent_status = gr.Markdown("No agent created yet.")
with gr.Column(scale=2):
chatbot = gr.Chatbot(label="Agent Chat", height=600, show_copy_button=True, avatar_images=("π€", "π€"), type="messages")
msg = gr.Textbox(label="Your message", placeholder="Type a message to your agent...", interactive=True)
with gr.Row():
with gr.Column(scale=1, min_width=60):
clear = gr.Button("ποΈ", scale=1)
with gr.Column(scale=8):
pass
space_tool_input.submit(on_validate_space, inputs=[space_tool_input], outputs=[status_msg, space_name_input, space_description_input])
add_tool_button.click(on_add_tool, inputs=[space_tool_input, space_name_input, space_description_input, space_tools_state], outputs=[space_tools_state, tools_display])
create_button.click(on_create_agent, inputs=[model_input, space_tools_state], outputs=[agent_state, chatbot, msg, status_msg, agent_status])
msg.submit(lambda message: (message, message, ""), inputs=[msg], outputs=[msg_store, msg, msg], queue=False)\
.then(add_user_message, inputs=[msg_store, chatbot], outputs=[msg_store, chatbot], queue=False)\
.then(stream_agent_response, inputs=[agent_state, msg_store, chatbot], outputs=chatbot, queue=True)
if __name__ == "__main__":
app.queue().launch() |