Add teaching Python agent CLI with Poetry and CI

This commit is contained in:
Shawn Bot
2026-04-02 10:09:34 +00:00
parent 0b4e0c0ae9
commit 3e979daa61
27 changed files with 2181 additions and 0 deletions

3
src/agt/__init__.py Normal file
View File

@@ -0,0 +1,3 @@
from .agent import Agent, Message, Tool, ToolResult
__all__ = ["Agent", "Message", "Tool", "ToolResult"]