add code-first agent example and isolate core dependencies

This commit is contained in:
Chrishabh2002
2026-01-25 17:21:58 +05:30
parent cdbcac68b8
commit c454870ac8
15 changed files with 497 additions and 7 deletions
+14
View File
@@ -57,6 +57,20 @@ cd exports/my_agent
PYTHONPATH=core:exports python -m my_agent validate
```
### Option 3: Manual Code-First (Minimal Example)
If you prefer to start with code rather than CLI wizards, check out the manual agent example:
```bash
# View the minimal example
cat core/examples/manual_agent.py
# Run it (no API keys required)
PYTHONPATH=core python core/examples/manual_agent.py
```
This demonstrates the core runtime loop using pure Python functions, skipping the complexity of LLM setup and file-based configuration.
## Project Structure
```