TinyCodeAgent / README.md
Mahdiyar
Add initial implementation of TinyCodeAgent with Python code execution capabilities
78098b8
|
raw
history blame
1.45 kB
metadata
title: TinyCodeAgent
emoji: 🌍
colorFrom: indigo
colorTo: yellow
sdk: gradio
sdk_version: 5.33.1
app_file: app.py
pinned: false
license: apache-2.0
short_description: Think in python and execute code to solve a task

Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference

TinyCodeAgent

TinyCodeAgent is an extention to TinyAgent that think in python and allows you to execute python code to solve a task.

You can extend it using TinyAgent Hooks system, and use it with Gradio Integration. Your agent could become a MCP Server or tool for another agent.

Benefits

  • Stateful python code using Modal Functions (Instead of using a sandbox, Faster and cheaper)
  • Use TinyAgent Hooks system to extend your agent
  • Use Gradio Integration to use your agent as a tool for another agent
  • Log System
  • Storage
  • Multi MCP Connections

Credits

  • TinyAgent I have built this project as well.
  • Modal I use Modal Functions to run python code.
  • Gradio I use Gradio to create a web interface for my agent.
  • Cloudpickle I use Cloudpickle to serialize and deserialize python objects.
  • SmolAgents Use SmolAgents Coding Agent System Prompt as a base for my system prompt.