Spaces:
Sleeping
Sleeping
import yaml | |
import os | |
from smolagents import GradioUI, CodeAgent, LiteLLMModel | |
# Get current directory path | |
CURRENT_DIR = os.path.dirname(os.path.abspath(__file__)) | |
from tools.final_answer import FinalAnswerTool as FinalAnswer | |
model = LiteLLMModel( | |
num_ctx=20000, | |
model_id='ollama_chat/hf.co/bartowski/Qwen2.5-7B-Instruct-GGUF:Q6_K_L', | |
api_base='http://localhost:11434', | |
) | |
final_answer = FinalAnswer() | |
with open(os.path.join(CURRENT_DIR, "prompts.yaml"), 'r') as stream: | |
prompt_templates = yaml.safe_load(stream) | |
agent = CodeAgent( | |
model=model, | |
tools=[], | |
managed_agents=[], | |
max_steps=6, | |
verbosity_level=1, | |
grammar=None, | |
planning_interval=None, | |
name=None, | |
description=None, | |
prompt_templates=prompt_templates | |
) | |
if __name__ == "__main__": | |
GradioUI(agent).launch() | |