communication and cleanup

This commit is contained in:
dal 2025-08-08 06:55:54 -06:00
parent c432df1326
commit 4e19eddbb8
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
2 changed files with 0 additions and 22 deletions

View File

@ -7,7 +7,6 @@ import type {
function hasFailureIndicators(entry: ChatMessageReasoningMessage): boolean {
return (
entry.status === 'failed' ||
entry.status === 'error' ||
(entry.title?.toLowerCase().includes('error') ?? false) ||
(entry.title?.toLowerCase().includes('failed') ?? false)
);

View File

@ -1,24 +1,3 @@
/**
* AI Package Utilities
*
* Exports commonly used utilities for AI agents, tools, and workflows
*/
// Message and memory utilities
export * from './memory';
export * from './standardizeMessages';
// Model utilities
export * from '../models/ai-fallback';
export * from '../models/providers/anthropic';
export * from '../models/anthropic-cached';
export * from '../models/providers/vertex';
export * from '../models/sonnet-4';
export * from '../models/haiku-3-5';
// Streaming utilities
export * from './streaming';
// Database utilities
export * from './database/format-llm-messages-as-reasoning';
export * from './database/save-conversation-history';