Expand description
§rpc-agent
This crate provides a modular framework for building RPC-based AI agent servers.
It exposes core components for agent management, tool integration, error handling,
and provider abstraction. Use the AgentServerBuilder to configure and launch
your own agent server with custom tools and providers.
Structs§
- Agent
Server - Main agent server type, responsible for handling requests and managing tools/providers.
- Agent
Server Builder - Builder for configuring and launching an
AgentServer. - ApiError
- API error type used for provider-specific error responses. API error type used for provider-specific error responses.
- Tool
Wrapper - Wrapper type for integrating tools into the agent server.
A wrapper around a
Toolthat implementsClone.