sigoden / llm-functions

Easily create LLM tools and agents using Bash/JavaScript/Python, also a library of commonly used LLM tools and agents.
MIT License
166 stars 22 forks source link

feat: agent support tools.txt #64

Closed sigoden closed 3 months ago

sigoden commented 3 months ago
└── agents
    └── myagent
        ├── functions.json                  # Function declarations file (Auto-generated)
        ├── index.yaml                      # Agent definition file
+       ├── tools.txt                       # Reuse tools
        └── tools.{sh,js,py}                # Agent tools script

Relate to sigoden/aichat#686