Ceylon Core
Core abstractions for the Ceylon agent mesh framework.
This crate provides the fundamental building blocks:
- [
Agent] - Trait for implementing autonomous agents - [
AgentContext] - Runtime context passed to agent methods - [
Memory] - Trait for memory/storage backends - [
Mesh] - Trait for agent coordination - [
Message] - Inter-agent communication
Example
use ;
use Result;
use async_trait;
;