bugfix
This commit is contained in:
parent
e85eddfa02
commit
218166c41c
23
README.md
23
README.md
@ -1,2 +1,23 @@
|
|||||||
# skillagent
|
# SkillAgent Module
|
||||||
|
|
||||||
|
This module provides a general-purpose Agent framework that integrates with Skillkit.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- Dynamic Skill and Script loading from skillspath
|
||||||
|
- Multi-layer document feeding to LLM (Skill / Script / Example)
|
||||||
|
- Multi-skill, multi-script DAG planning
|
||||||
|
- Parameter schema validation and multi-turn resume
|
||||||
|
- Unified Skillkit invocation interface
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
```python
|
||||||
|
from skillagent.agent import SkillAgent
|
||||||
|
from skillagent.skill_loader import SkillLoader
|
||||||
|
from skillagent.skillkit_wrapper import SkillkitWrapper
|
||||||
|
|
||||||
|
loader = SkillLoader("./skillagent/skillspath")
|
||||||
|
skillkit = SkillkitWrapper(skillkit_client)
|
||||||
|
agent = SkillAgent(loader, skillkit, llm)
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user