Agents, tools
This commit is contained in:
parent
49a436da7f
commit
4bb7b92eac
3 changed files with 621 additions and 1 deletions
|
|
@ -10,6 +10,7 @@ pub mod krill;
|
|||
pub mod project;
|
||||
pub mod task;
|
||||
pub mod todo;
|
||||
pub mod tools;
|
||||
|
||||
pub use ai_response::{Conversation, Message};
|
||||
pub use coral::{Coral, CoralId};
|
||||
|
|
@ -19,3 +20,7 @@ pub use krill::{KrillConfig, KrillDescriptor, KrillId};
|
|||
pub use project::{Project, ProjectFile, ProjectId, ProjectSettings};
|
||||
pub use task::{Task, TaskResult};
|
||||
pub use todo::ToDo;
|
||||
pub use tools::{
|
||||
format_tool_error, format_tool_result, parse_tool_call_blocks, parse_tool_call_stream,
|
||||
ParsedToolCall, ToolDefinition, ToolParser,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue