Files
deepagent/.gitignore
HyunjunJeon d8f2eb68d4 feat(workflow): implement workflow graph system with node types and agent vertex
- Added `mod.rs` for the workflow graph system, outlining the structure and usage.
- Introduced `node.rs` defining various node types (Agent, Tool, Router, etc.) and their configurations.
- Created `vertices/agent.rs` implementing the `AgentVertex` for LLM-based processing with tool calling capabilities.
- Added `vertices/mod.rs` to organize vertex implementations.
- Implemented serialization and deserialization for node configurations using Serde.
- Included tests for node configurations and agent vertex functionality.
2026-01-02 12:34:02 +09:00

26 lines
226 B
Plaintext

# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv
.python-version
# Secret Environment
.env
# Cache
*_cache/
*_api/
# AI
.serena/
# Others
.DS_Store
.vscode/
*.pdf