You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update version to 0.1.15 and enhance README with new features and Docker support
This commit updates the version in pyproject.toml to 0.1.15 and significantly enhances the README for TinyCodeAgent, introducing a more engaging description and outlining revolutionary features such as support for any AI model, secure sandboxed execution, and flexible execution environments. Additionally, a new DockerImageBuilder class is added, providing a fluent API for creating custom Docker images, along with a DockerConfigBuilder for simplified configuration management. These updates aim to improve user experience and facilitate the integration of TinyAgent's capabilities.
Copy file name to clipboardExpand all lines: pyproject.toml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,8 @@ tinyagent = ["prompts/*.yaml"]
12
12
13
13
[project]
14
14
name = "tinyagent-py"
15
-
version = "0.1.14"
16
-
description = "TinyAgent with MCP Client, CodeAgent (Thinking, Planning, Interactive Python and Shell with high variaety of sandboxing(Seatbelt, Modal, E2B, docker, etc) ), and Extendable Hooks, Tiny but powerful"
15
+
version = "0.1.15"
16
+
description = "🛠️ Build your own AI coding assistant with any model you want. Revolutionary agent framework with secure sandboxed execution, parallel subagents, and freedom to choose any LLM provider - OpenAI, Anthropic, Ollama, or 100+ others."
Copy file name to clipboardExpand all lines: tinyagent/code_agent/README.md
+33-20Lines changed: 33 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,19 @@
1
1
# TinyCodeAgent
2
+
🔥 **Your Personal AI Coding Powerhouse** - Secure code execution with *any* AI model, anywhere
2
3
3
-
A specialized TinyAgent for code execution tasks with pluggable execution providers.
4
+
## 🎯 The Ultimate Coding Assistant Revolution
4
5
5
-
## Overview
6
+
Imagine having the world's most powerful coding assistant that works with **your choice** of AI brain - whether that's GPT-5, Claude, or even your private Llama model running locally. TinyCodeAgent makes this dream reality.
6
7
7
-
TinyCodeAgent provides a high-level interface for creating AI agents that can execute Python code using various backend providers. It's designed with enterprise-grade software engineering practices in mind:
TinyCodeAgent supports local models through Ollama for code execution tasks without requiring cloud APIs.
50
+
**Your code, your hardware, your privacy.** Run cutting-edge AI models locally and never worry about data leaving your machine again. This is true digital sovereignty.
47
51
48
52
#### Prerequisites
49
53
@@ -250,7 +254,9 @@ import asyncio
250
254
asyncio.run(run_example())
251
255
```
252
256
253
-
## Architecture
257
+
## 🏗️ Architectural Brilliance
258
+
259
+
**Built for the future, designed for today.** Every line of code reflects enterprise-grade thinking with startup agility.
254
260
255
261
### Directory Structure
256
262
@@ -269,9 +275,9 @@ code_agent/
269
275
└── example_tools.py # Weather & traffic tools
270
276
```
271
277
272
-
### Provider System
278
+
### 🔄 The Provider Revolution
273
279
274
-
The provider system allows you to easily switch between different code execution backends:
-**💻 Native Local**: Direct system execution with perfect security
555
+
-**☁️ Cloud Giants**: AWS Lambda, Google Cloud Functions, Azure
556
+
-**🛡️ Fort Knox++**: Even more advanced security features
557
+
-**⚡ Speed of Light**: Performance optimizations that will blow your mind
558
+
-**🧰 Tool Galaxy**: Vast ecosystem of specialized tools and templates
559
+
560
+
### 🌟 The Vision
561
+
Imagine a world where any developer can build AI agents as powerful as the ones used by tech giants - but with complete freedom, privacy, and control. That's not a dream. **That's TinyAgent.**
543
562
544
-
-[ ] Docker execution provider
545
-
-[ ] Local execution provider
546
-
-[ ] AWS Lambda provider
547
-
-[ ] Google Cloud Functions provider
548
-
-[ ] Enhanced security features
549
-
-[ ] Performance optimizations
550
-
-[ ] More example tools and templates
563
+
**Join the revolution. Build the future. Your AI assistant awaits.**
0 commit comments