-
Notifications
You must be signed in to change notification settings - Fork 9
docs: define llm and actor input/output interfaces #131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR establishes the foundational architecture for EverMemoryArchive by defining core interface contracts. It introduces a conceptual module that documents how different system components (UI, Actor, LLM, Storage) interact through well-defined TypeScript interfaces.
Key changes:
- Introduces interface definitions for Actor client, LLM client, and storage components in a new
conceptmodule - Adds type-checking utilities for compile-time interface validation
- Updates documentation generation to include the new concept module and adds Mermaid diagram rendering support
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
scripts/docs.js |
Refactored to include the new concept module in documentation generation |
packages/ema/src/types.ts |
Added type-checking utilities for interface validation |
packages/ema/src/concept/storage.ts |
Defined interfaces for actor state storage and memory management |
packages/ema/src/concept/llm.ts |
Defined interface for LLM client interactions |
packages/ema/src/concept/index.ts |
Module entry point with architecture documentation and Mermaid diagram |
packages/ema/src/concept/actor.ts |
Defined Actor client interface with event-based communication |
packages/ema/src/actor.ts |
Updated import to use new concept module location |
docs/.vitepress/config.js |
Added Mermaid.js integration for rendering diagrams in documentation |
05b3dcc to
f2eed2b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 7 out of 8 changed files in this pull request and generated 10 comments.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
163b41c to
f7b9c6c
Compare
This PR adds the concept of the EverMemoryArchive.
ActorClient.EmaLLMClient.Agent.AgentSchedulerby providingAgentTask.