mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 21:03:42 +00:00
- Add 'aborted' as a distinct stop reason separate from 'error'
- Change AssistantMessage.error to errorMessage for clarity
- Update error event to include reason field ('error' | 'aborted')
- Map provider-specific safety/refusal reasons to 'error' stop reason
- Reorganize utility functions into utils/ directory
- Rename agent.ts to agent-loop.ts for better clarity
- Fix error handling in all providers to properly distinguish abort from error
9 lines
345 B
TypeScript
9 lines
345 B
TypeScript
export * from "./agent/index.js";
|
|
export * from "./models.js";
|
|
export * from "./providers/anthropic.js";
|
|
export * from "./providers/google.js";
|
|
export * from "./providers/openai-completions.js";
|
|
export * from "./providers/openai-responses.js";
|
|
export * from "./stream.js";
|
|
export * from "./types.js";
|
|
export * from "./utils/typebox-helpers.js";
|