mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 15:02:32 +00:00
- Renamed AppMessage to AgentMessage throughout - New agent-loop.ts with AgentLoopContext, AgentLoopConfig - Removed transport abstraction, Agent now takes streamFn directly - Extracted streamProxy to proxy.ts utility - Removed agent-loop from pi-ai (now in agent package) - Updated consumers (coding-agent, mom) for AgentMessage rename - Tests updated but some consumers still need migration Known issues: - AgentTool, AgentToolResult not exported from pi-ai - Attachment not exported from pi-agent-core - ProviderTransport removed but still referenced - messageTransformer -> convertToLlm migration incomplete - CustomMessages declaration merging not working properly
13 lines
518 B
TypeScript
13 lines
518 B
TypeScript
export * from "./models.js";
|
|
export * from "./providers/anthropic.js";
|
|
export * from "./providers/google.js";
|
|
export * from "./providers/google-gemini-cli.js";
|
|
export * from "./providers/openai-completions.js";
|
|
export * from "./providers/openai-responses.js";
|
|
export * from "./stream.js";
|
|
export * from "./types.js";
|
|
export * from "./utils/event-stream.js";
|
|
export * from "./utils/oauth/index.js";
|
|
export * from "./utils/overflow.js";
|
|
export * from "./utils/typebox-helpers.js";
|
|
export * from "./utils/validation.js";
|