release: WRNexusJS 0.8.0
Quality / quality (ubuntu-latest) (push) Failing after 21s
Quality / quality (windows-latest) (push) Canceled after 0s

This commit is contained in:
2026-08-02 23:18:51 +05:30
parent 87507edf59
commit 586a6db8ff
625 changed files with 243608 additions and 11210 deletions
+43 -2
View File
@@ -245,5 +245,46 @@ export function createAI(config: AIConfig = {}): AI {
return { generate, stream, streamResponse };
}
export { anthropicProvider, aiProvider, createAIClient } from "./providers.ts";
export type { AIUsage, AIResult, AIProvider, AIClient, AIClientOptions } from "./providers.ts";
export {
anthropicProvider,
aiProvider,
createAIClient,
deterministicAIProvider,
} from "./providers.ts";
export type {
AIAttemptEvent,
AICircuitBreakerOptions,
AIClient,
AIClientOptions,
AIProvider,
AIProviderCapabilities,
AIResult,
AIRetryOptions,
AITool,
AIToolCall,
AIUsage,
DeterministicAIProviderOptions,
} from "./providers.ts";
export {
aiRateLimiter,
createRagPipeline,
evaluateAI,
googleAIProvider,
guardedProvider,
localAIProvider,
maxPromptLength,
memoryConversationStore,
memoryVectorStore,
openAIEmbeddings,
openAIProvider,
promptTemplate,
} from "./platform.ts";
export type {
AIGuardrail,
ConversationStore,
EmbeddingProvider,
HttpAIProviderOptions,
VectorMatch,
VectorRecord,
VectorStore,
} from "./platform.ts";