@ax-llm/ax 12.0.1 → 12.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs +140 -48
- package/index.cjs.map +1 -1
- package/index.d.cts +17 -4
- package/index.d.ts +17 -4
- package/index.js +140 -48
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.cts
CHANGED
|
@@ -986,8 +986,9 @@ declare class AxAIDeepSeek extends AxAIOpenAIBase<AxAIDeepSeekModel, undefined>
|
|
|
986
986
|
}
|
|
987
987
|
|
|
988
988
|
declare enum AxAIGoogleGeminiModel {
|
|
989
|
-
Gemini25Pro = "gemini-2.5-pro
|
|
990
|
-
Gemini25Flash = "gemini-2.5-flash
|
|
989
|
+
Gemini25Pro = "gemini-2.5-pro",
|
|
990
|
+
Gemini25Flash = "gemini-2.5-flash",
|
|
991
|
+
Gemini25FlashLite = "gemini-2.5-flash-lite-preview-06-17",
|
|
991
992
|
Gemini20Flash = "gemini-2.0-flash",
|
|
992
993
|
Gemini20FlashLite = "gemini-2.0-flash-lite-preview-02-05",
|
|
993
994
|
Gemini1Pro = "gemini-1.0-pro",
|
|
@@ -997,7 +998,7 @@ declare enum AxAIGoogleGeminiModel {
|
|
|
997
998
|
Gemini15Pro = "gemini-1.5-pro"
|
|
998
999
|
}
|
|
999
1000
|
declare enum AxAIGoogleGeminiEmbedModel {
|
|
1000
|
-
GeminiEmbedding = "gemini-embedding-exp
|
|
1001
|
+
GeminiEmbedding = "gemini-embedding-exp",
|
|
1001
1002
|
TextEmbeddingLarge = "text-embedding-large-exp-03-07",
|
|
1002
1003
|
TextEmbedding004 = "text-embedding-004",
|
|
1003
1004
|
TextEmbedding005 = "text-embedding-005"
|
|
@@ -1142,6 +1143,13 @@ type AxAIGoogleGeminiThinkingConfig = {
|
|
|
1142
1143
|
thinkingTokenBudget?: number;
|
|
1143
1144
|
includeThoughts?: boolean;
|
|
1144
1145
|
};
|
|
1146
|
+
type AxAIGoogleGeminiThinkingTokenBudgetLevels = {
|
|
1147
|
+
minimal?: number;
|
|
1148
|
+
low?: number;
|
|
1149
|
+
medium?: number;
|
|
1150
|
+
high?: number;
|
|
1151
|
+
highest?: number;
|
|
1152
|
+
};
|
|
1145
1153
|
/**
|
|
1146
1154
|
* AxAIGoogleGeminiConfig: Configuration options for Google Gemini API
|
|
1147
1155
|
*/
|
|
@@ -1153,6 +1161,7 @@ type AxAIGoogleGeminiConfig = AxModelConfig & {
|
|
|
1153
1161
|
dimensions?: number;
|
|
1154
1162
|
autoTruncate?: boolean;
|
|
1155
1163
|
thinking?: AxAIGoogleGeminiThinkingConfig;
|
|
1164
|
+
thinkingTokenBudgetLevels?: AxAIGoogleGeminiThinkingTokenBudgetLevels;
|
|
1156
1165
|
urlContext?: string;
|
|
1157
1166
|
};
|
|
1158
1167
|
/**
|
|
@@ -2065,6 +2074,7 @@ declare class AxSignature {
|
|
|
2065
2074
|
private outputFields;
|
|
2066
2075
|
private sigHash;
|
|
2067
2076
|
private sigString;
|
|
2077
|
+
private validatedAtHash?;
|
|
2068
2078
|
constructor(signature?: Readonly<AxSignature | string>);
|
|
2069
2079
|
private parseParsedField;
|
|
2070
2080
|
private parseField;
|
|
@@ -2076,10 +2086,13 @@ declare class AxSignature {
|
|
|
2076
2086
|
getInputFields: () => Readonly<AxIField[]>;
|
|
2077
2087
|
getOutputFields: () => Readonly<AxIField[]>;
|
|
2078
2088
|
getDescription: () => string | undefined;
|
|
2089
|
+
private invalidateValidationCache;
|
|
2079
2090
|
private toTitle;
|
|
2080
2091
|
toJSONSchema: () => AxFunctionJSONSchema;
|
|
2092
|
+
private updateHashLight;
|
|
2081
2093
|
private updateHash;
|
|
2082
2094
|
private validateSignatureConsistency;
|
|
2095
|
+
validate: () => boolean;
|
|
2083
2096
|
hash: () => string;
|
|
2084
2097
|
toString: () => string;
|
|
2085
2098
|
toJSON: () => {
|
|
@@ -3812,4 +3825,4 @@ declare const axModelInfoReka: AxModelInfo[];
|
|
|
3812
3825
|
|
|
3813
3826
|
declare const axModelInfoTogether: AxModelInfo[];
|
|
3814
3827
|
|
|
3815
|
-
export { AxAI, AxAIAnthropic, type AxAIAnthropicArgs, type AxAIAnthropicChatError, type AxAIAnthropicChatRequest, type AxAIAnthropicChatRequestCacheParam, type AxAIAnthropicChatResponse, type AxAIAnthropicChatResponseDelta, type AxAIAnthropicConfig, type AxAIAnthropicContentBlockDeltaEvent, type AxAIAnthropicContentBlockStartEvent, type AxAIAnthropicContentBlockStopEvent, type AxAIAnthropicErrorEvent, type AxAIAnthropicMessageDeltaEvent, type AxAIAnthropicMessageStartEvent, type AxAIAnthropicMessageStopEvent, AxAIAnthropicModel, type AxAIAnthropicPingEvent, AxAIAnthropicVertexModel, type AxAIArgs, AxAIAzureOpenAI, type AxAIAzureOpenAIArgs, type AxAIAzureOpenAIConfig, AxAICohere, type AxAICohereArgs, type AxAICohereChatRequest, type AxAICohereChatRequestToolResults, type AxAICohereChatResponse, type AxAICohereChatResponseDelta, type AxAICohereChatResponseToolCalls, type AxAICohereConfig, AxAICohereEmbedModel, type AxAICohereEmbedRequest, type AxAICohereEmbedResponse, AxAICohereModel, AxAIDeepSeek, type AxAIDeepSeekArgs, AxAIDeepSeekModel, type AxAIEmbedModels, type AxAIFeatures, AxAIGoogleGemini, type AxAIGoogleGeminiArgs, type AxAIGoogleGeminiBatchEmbedRequest, type AxAIGoogleGeminiBatchEmbedResponse, type AxAIGoogleGeminiChatRequest, type AxAIGoogleGeminiChatResponse, type AxAIGoogleGeminiChatResponseDelta, type AxAIGoogleGeminiConfig, type AxAIGoogleGeminiContent, type AxAIGoogleGeminiContentPart, AxAIGoogleGeminiEmbedModel, AxAIGoogleGeminiEmbedTypes, type AxAIGoogleGeminiGenerationConfig, AxAIGoogleGeminiModel, type AxAIGoogleGeminiOptionsTools, AxAIGoogleGeminiSafetyCategory, type AxAIGoogleGeminiSafetySettings, AxAIGoogleGeminiSafetyThreshold, type AxAIGoogleGeminiThinkingConfig, type AxAIGoogleGeminiTool, type AxAIGoogleGeminiToolConfig, type AxAIGoogleGeminiToolFunctionDeclaration, type AxAIGoogleGeminiToolGoogleSearchRetrieval, type AxAIGoogleVertexBatchEmbedRequest, type AxAIGoogleVertexBatchEmbedResponse, AxAIGrok, type AxAIGrokArgs, type AxAIGrokChatRequest, AxAIGrokEmbedModels, AxAIGrokModel, type AxAIGrokOptionsTools, type AxAIGrokSearchSource, AxAIGroq, type AxAIGroqArgs, AxAIGroqModel, AxAIHuggingFace, type AxAIHuggingFaceArgs, type AxAIHuggingFaceConfig, AxAIHuggingFaceModel, type AxAIHuggingFaceRequest, type AxAIHuggingFaceResponse, type AxAIInputModelList, type AxAIMemory, AxAIMistral, type AxAIMistralArgs, AxAIMistralEmbedModels, AxAIMistralModel, type AxAIModelList, type AxAIModelListBase, type AxAIModels, AxAIOllama, type AxAIOllamaAIConfig, type AxAIOllamaArgs, AxAIOpenAI, type AxAIOpenAIArgs, AxAIOpenAIBase, type AxAIOpenAIBaseArgs, type AxAIOpenAIChatRequest, type AxAIOpenAIChatResponse, type AxAIOpenAIChatResponseDelta, type AxAIOpenAIConfig, AxAIOpenAIEmbedModel, type AxAIOpenAIEmbedRequest, type AxAIOpenAIEmbedResponse, type AxAIOpenAILogprob, AxAIOpenAIModel, type AxAIOpenAIResponseDelta, AxAIOpenAIResponses, type AxAIOpenAIResponsesArgs, AxAIOpenAIResponsesBase, type AxAIOpenAIResponsesCodeInterpreterToolCall, type AxAIOpenAIResponsesComputerToolCall, type AxAIOpenAIResponsesConfig, type AxAIOpenAIResponsesContentPartAddedEvent, type AxAIOpenAIResponsesContentPartDoneEvent, type AxAIOpenAIResponsesDefineFunctionTool, type AxAIOpenAIResponsesErrorEvent, type AxAIOpenAIResponsesFileSearchCallCompletedEvent, type AxAIOpenAIResponsesFileSearchCallInProgressEvent, type AxAIOpenAIResponsesFileSearchCallSearchingEvent, type AxAIOpenAIResponsesFileSearchToolCall, type AxAIOpenAIResponsesFunctionCallArgumentsDeltaEvent, type AxAIOpenAIResponsesFunctionCallArgumentsDoneEvent, type AxAIOpenAIResponsesFunctionCallItem, type AxAIOpenAIResponsesImageGenerationCallCompletedEvent, type AxAIOpenAIResponsesImageGenerationCallGeneratingEvent, type AxAIOpenAIResponsesImageGenerationCallInProgressEvent, type AxAIOpenAIResponsesImageGenerationCallPartialImageEvent, type AxAIOpenAIResponsesImageGenerationToolCall, AxAIOpenAIResponsesImpl, type AxAIOpenAIResponsesInputAudioContentPart, type AxAIOpenAIResponsesInputContentPart, type AxAIOpenAIResponsesInputFunctionCallItem, type AxAIOpenAIResponsesInputFunctionCallOutputItem, type AxAIOpenAIResponsesInputImageUrlContentPart, type AxAIOpenAIResponsesInputItem, type AxAIOpenAIResponsesInputMessageItem, type AxAIOpenAIResponsesInputTextContentPart, type AxAIOpenAIResponsesLocalShellToolCall, type AxAIOpenAIResponsesMCPCallArgumentsDeltaEvent, type AxAIOpenAIResponsesMCPCallArgumentsDoneEvent, type AxAIOpenAIResponsesMCPCallCompletedEvent, type AxAIOpenAIResponsesMCPCallFailedEvent, type AxAIOpenAIResponsesMCPCallInProgressEvent, type AxAIOpenAIResponsesMCPListToolsCompletedEvent, type AxAIOpenAIResponsesMCPListToolsFailedEvent, type AxAIOpenAIResponsesMCPListToolsInProgressEvent, type AxAIOpenAIResponsesMCPToolCall, AxAIOpenAIResponsesModel, type AxAIOpenAIResponsesOutputItem, type AxAIOpenAIResponsesOutputItemAddedEvent, type AxAIOpenAIResponsesOutputItemDoneEvent, type AxAIOpenAIResponsesOutputMessageItem, type AxAIOpenAIResponsesOutputRefusalContentPart, type AxAIOpenAIResponsesOutputTextAnnotationAddedEvent, type AxAIOpenAIResponsesOutputTextContentPart, type AxAIOpenAIResponsesOutputTextDeltaEvent, type AxAIOpenAIResponsesOutputTextDoneEvent, type AxAIOpenAIResponsesReasoningDeltaEvent, type AxAIOpenAIResponsesReasoningDoneEvent, type AxAIOpenAIResponsesReasoningItem, type AxAIOpenAIResponsesReasoningSummaryDeltaEvent, type AxAIOpenAIResponsesReasoningSummaryDoneEvent, type AxAIOpenAIResponsesReasoningSummaryPart, type AxAIOpenAIResponsesReasoningSummaryPartAddedEvent, type AxAIOpenAIResponsesReasoningSummaryPartDoneEvent, type AxAIOpenAIResponsesReasoningSummaryTextDeltaEvent, type AxAIOpenAIResponsesReasoningSummaryTextDoneEvent, type AxAIOpenAIResponsesRefusalDeltaEvent, type AxAIOpenAIResponsesRefusalDoneEvent, type AxAIOpenAIResponsesRequest, type AxAIOpenAIResponsesResponse, type AxAIOpenAIResponsesResponseCompletedEvent, type AxAIOpenAIResponsesResponseCreatedEvent, type AxAIOpenAIResponsesResponseDelta, type AxAIOpenAIResponsesResponseFailedEvent, type AxAIOpenAIResponsesResponseInProgressEvent, type AxAIOpenAIResponsesResponseIncompleteEvent, type AxAIOpenAIResponsesResponseQueuedEvent, type AxAIOpenAIResponsesStreamEvent, type AxAIOpenAIResponsesStreamEventBase, type AxAIOpenAIResponsesToolCall, type AxAIOpenAIResponsesToolCallBase, type AxAIOpenAIResponsesToolChoice, type AxAIOpenAIResponsesToolDefinition, type AxAIOpenAIResponsesWebSearchCallCompletedEvent, type AxAIOpenAIResponsesWebSearchCallInProgressEvent, type AxAIOpenAIResponsesWebSearchCallSearchingEvent, type AxAIOpenAIResponsesWebSearchToolCall, type AxAIOpenAIUsage, type AxAIPromptConfig, AxAIReka, type AxAIRekaArgs, type AxAIRekaChatRequest, type AxAIRekaChatResponse, type AxAIRekaChatResponseDelta, type AxAIRekaConfig, AxAIRekaModel, type AxAIRekaUsage, type AxAIService, AxAIServiceAbortedError, type AxAIServiceActionOptions, AxAIServiceAuthenticationError, AxAIServiceError, type AxAIServiceImpl, type AxAIServiceMetrics, AxAIServiceNetworkError, type AxAIServiceOptions, AxAIServiceResponseError, AxAIServiceStatusError, AxAIServiceStreamTerminatedError, AxAIServiceTimeoutError, AxAITogether, type AxAITogetherArgs, type AxAPI, type AxAPIConfig, AxAgent, type AxAgentFeatures, type AxAgentOptions, type AxAgentic, AxApacheTika, type AxApacheTikaArgs, type AxApacheTikaConvertOptions, type AxAssertion, AxAssertionError, AxBalancer, type AxBalancerOptions, AxBaseAI, type AxBaseAIArgs, AxBootstrapFewShot, AxChainOfThought, type AxChatRequest, type AxChatResponse, type AxChatResponseFunctionCall, type AxChatResponseResult, AxDB, type AxDBArgs, AxDBBase, type AxDBBaseArgs, type AxDBBaseOpOptions, AxDBCloudflare, type AxDBCloudflareArgs, type AxDBCloudflareOpOptions, type AxDBLoaderOptions, AxDBManager, type AxDBManagerArgs, type AxDBMatch, AxDBMemory, type AxDBMemoryArgs, type AxDBMemoryOpOptions, AxDBPinecone, type AxDBPineconeArgs, type AxDBPineconeOpOptions, type AxDBQueryRequest, type AxDBQueryResponse, type AxDBQueryService, type AxDBService, type AxDBState, type AxDBUpsertRequest, type AxDBUpsertResponse, AxDBWeaviate, type AxDBWeaviateArgs, type AxDBWeaviateOpOptions, type AxDataRow, AxDefaultQueryRewriter, AxDefaultResultReranker, type AxDockerContainer, AxDockerSession, type AxEmbedRequest, type AxEmbedResponse, AxEmbeddingAdapter, AxEvalUtil, type AxEvaluateArgs, type AxExample, type AxField, type AxFieldDescriptor, type AxFieldProcessor, type AxFieldProcessorProcess, type AxFieldTemplateFn, type AxFieldType, type AxFieldValue, type AxFunction, AxFunctionError, type AxFunctionHandler, type AxFunctionJSONSchema, AxFunctionProcessor, AxGen, type AxGenDeltaOut, type AxGenIn, type AxGenOut, type AxGenStreamingOut, AxGenerateError, type AxGenerateErrorDetails, type AxGenerateResult, AxHFDataLoader, type AxIField, type AxInputFunctionType, AxInstanceRegistry, type AxInternalChatRequest, type AxInternalEmbedRequest, AxJSInterpreter, AxJSInterpreterPermission, AxLLMRequestTypeValues, type AxLoggerFunction, type AxLoggerTag, AxMCPClient, AxMCPHTTPSSETransport, AxMCPStdioTransport, type AxMCPStreamableHTTPTransportOptions, AxMCPStreambleHTTPTransport, type AxMCPTransport, AxMemory, type AxMessage, type AxMetricFn, type AxMetricFnArgs, AxMiPRO, type AxMiPROOptions, AxMockAIService, type AxMockAIServiceConfig, type AxModelConfig, type AxModelInfo, type AxModelInfoWithProvider, type AxModelUsage, AxMultiServiceRouter, type AxOptimizationStats, type AxOptimizerArgs, AxProgram, type AxProgramDemos, type AxProgramExamples, type AxProgramForwardOptions, type AxProgramStreamingForwardOptions, type AxProgramTrace, type AxProgramUsage, AxProgramWithSignature, type AxProgramWithSignatureOptions, AxPromptTemplate, type AxPromptTemplateOptions, AxRAG, type AxRateLimiterFunction, AxRateLimiterTokenUsage, type AxRateLimiterTokenUsageOptions, type AxRerankerIn, type AxRerankerOut, type AxResponseHandlerArgs, type AxRewriteIn, type AxRewriteOut, AxRewriter, type AxSetExamplesOptions, AxSignature, type AxSignatureTemplateValue, AxSimpleClassifier, AxSimpleClassifierClass, type AxSimpleClassifierForwardOptions, AxSpanKindValues, type AxStreamingAssertion, type AxStreamingEvent, type AxStreamingFieldProcessorProcess, AxStringUtil, AxTestPrompt, type AxTokenUsage, type AxTunable, type AxUsable, ax, axAIAnthropicDefaultConfig, axAIAnthropicVertexDefaultConfig, axAIAzureOpenAIBestConfig, axAIAzureOpenAICreativeConfig, axAIAzureOpenAIDefaultConfig, axAIAzureOpenAIFastConfig, axAICohereCreativeConfig, axAICohereDefaultConfig, axAIDeepSeekCodeConfig, axAIDeepSeekDefaultConfig, axAIGoogleGeminiDefaultConfig, axAIGoogleGeminiDefaultCreativeConfig, axAIGrokBestConfig, axAIGrokDefaultConfig, axAIHuggingFaceCreativeConfig, axAIHuggingFaceDefaultConfig, axAIMistralBestConfig, axAIMistralDefaultConfig, axAIOllamaDefaultConfig, axAIOllamaDefaultCreativeConfig, axAIOpenAIBestConfig, axAIOpenAICreativeConfig, axAIOpenAIDefaultConfig, axAIOpenAIFastConfig, axAIOpenAIResponsesBestConfig, axAIOpenAIResponsesCreativeConfig, axAIOpenAIResponsesDefaultConfig, axAIRekaBestConfig, axAIRekaCreativeConfig, axAIRekaDefaultConfig, axAIRekaFastConfig, axAITogetherDefaultConfig, axBaseAIDefaultConfig, axBaseAIDefaultCreativeConfig, axGlobals, axModelInfoAnthropic, axModelInfoCohere, axModelInfoDeepSeek, axModelInfoGoogleGemini, axModelInfoGrok, axModelInfoGroq, axModelInfoHuggingFace, axModelInfoMistral, axModelInfoOpenAI, axModelInfoReka, axModelInfoTogether, axSpanAttributes, axSpanEvents, f, s };
|
|
3828
|
+
export { AxAI, AxAIAnthropic, type AxAIAnthropicArgs, type AxAIAnthropicChatError, type AxAIAnthropicChatRequest, type AxAIAnthropicChatRequestCacheParam, type AxAIAnthropicChatResponse, type AxAIAnthropicChatResponseDelta, type AxAIAnthropicConfig, type AxAIAnthropicContentBlockDeltaEvent, type AxAIAnthropicContentBlockStartEvent, type AxAIAnthropicContentBlockStopEvent, type AxAIAnthropicErrorEvent, type AxAIAnthropicMessageDeltaEvent, type AxAIAnthropicMessageStartEvent, type AxAIAnthropicMessageStopEvent, AxAIAnthropicModel, type AxAIAnthropicPingEvent, AxAIAnthropicVertexModel, type AxAIArgs, AxAIAzureOpenAI, type AxAIAzureOpenAIArgs, type AxAIAzureOpenAIConfig, AxAICohere, type AxAICohereArgs, type AxAICohereChatRequest, type AxAICohereChatRequestToolResults, type AxAICohereChatResponse, type AxAICohereChatResponseDelta, type AxAICohereChatResponseToolCalls, type AxAICohereConfig, AxAICohereEmbedModel, type AxAICohereEmbedRequest, type AxAICohereEmbedResponse, AxAICohereModel, AxAIDeepSeek, type AxAIDeepSeekArgs, AxAIDeepSeekModel, type AxAIEmbedModels, type AxAIFeatures, AxAIGoogleGemini, type AxAIGoogleGeminiArgs, type AxAIGoogleGeminiBatchEmbedRequest, type AxAIGoogleGeminiBatchEmbedResponse, type AxAIGoogleGeminiChatRequest, type AxAIGoogleGeminiChatResponse, type AxAIGoogleGeminiChatResponseDelta, type AxAIGoogleGeminiConfig, type AxAIGoogleGeminiContent, type AxAIGoogleGeminiContentPart, AxAIGoogleGeminiEmbedModel, AxAIGoogleGeminiEmbedTypes, type AxAIGoogleGeminiGenerationConfig, AxAIGoogleGeminiModel, type AxAIGoogleGeminiOptionsTools, AxAIGoogleGeminiSafetyCategory, type AxAIGoogleGeminiSafetySettings, AxAIGoogleGeminiSafetyThreshold, type AxAIGoogleGeminiThinkingConfig, type AxAIGoogleGeminiThinkingTokenBudgetLevels, type AxAIGoogleGeminiTool, type AxAIGoogleGeminiToolConfig, type AxAIGoogleGeminiToolFunctionDeclaration, type AxAIGoogleGeminiToolGoogleSearchRetrieval, type AxAIGoogleVertexBatchEmbedRequest, type AxAIGoogleVertexBatchEmbedResponse, AxAIGrok, type AxAIGrokArgs, type AxAIGrokChatRequest, AxAIGrokEmbedModels, AxAIGrokModel, type AxAIGrokOptionsTools, type AxAIGrokSearchSource, AxAIGroq, type AxAIGroqArgs, AxAIGroqModel, AxAIHuggingFace, type AxAIHuggingFaceArgs, type AxAIHuggingFaceConfig, AxAIHuggingFaceModel, type AxAIHuggingFaceRequest, type AxAIHuggingFaceResponse, type AxAIInputModelList, type AxAIMemory, AxAIMistral, type AxAIMistralArgs, AxAIMistralEmbedModels, AxAIMistralModel, type AxAIModelList, type AxAIModelListBase, type AxAIModels, AxAIOllama, type AxAIOllamaAIConfig, type AxAIOllamaArgs, AxAIOpenAI, type AxAIOpenAIArgs, AxAIOpenAIBase, type AxAIOpenAIBaseArgs, type AxAIOpenAIChatRequest, type AxAIOpenAIChatResponse, type AxAIOpenAIChatResponseDelta, type AxAIOpenAIConfig, AxAIOpenAIEmbedModel, type AxAIOpenAIEmbedRequest, type AxAIOpenAIEmbedResponse, type AxAIOpenAILogprob, AxAIOpenAIModel, type AxAIOpenAIResponseDelta, AxAIOpenAIResponses, type AxAIOpenAIResponsesArgs, AxAIOpenAIResponsesBase, type AxAIOpenAIResponsesCodeInterpreterToolCall, type AxAIOpenAIResponsesComputerToolCall, type AxAIOpenAIResponsesConfig, type AxAIOpenAIResponsesContentPartAddedEvent, type AxAIOpenAIResponsesContentPartDoneEvent, type AxAIOpenAIResponsesDefineFunctionTool, type AxAIOpenAIResponsesErrorEvent, type AxAIOpenAIResponsesFileSearchCallCompletedEvent, type AxAIOpenAIResponsesFileSearchCallInProgressEvent, type AxAIOpenAIResponsesFileSearchCallSearchingEvent, type AxAIOpenAIResponsesFileSearchToolCall, type AxAIOpenAIResponsesFunctionCallArgumentsDeltaEvent, type AxAIOpenAIResponsesFunctionCallArgumentsDoneEvent, type AxAIOpenAIResponsesFunctionCallItem, type AxAIOpenAIResponsesImageGenerationCallCompletedEvent, type AxAIOpenAIResponsesImageGenerationCallGeneratingEvent, type AxAIOpenAIResponsesImageGenerationCallInProgressEvent, type AxAIOpenAIResponsesImageGenerationCallPartialImageEvent, type AxAIOpenAIResponsesImageGenerationToolCall, AxAIOpenAIResponsesImpl, type AxAIOpenAIResponsesInputAudioContentPart, type AxAIOpenAIResponsesInputContentPart, type AxAIOpenAIResponsesInputFunctionCallItem, type AxAIOpenAIResponsesInputFunctionCallOutputItem, type AxAIOpenAIResponsesInputImageUrlContentPart, type AxAIOpenAIResponsesInputItem, type AxAIOpenAIResponsesInputMessageItem, type AxAIOpenAIResponsesInputTextContentPart, type AxAIOpenAIResponsesLocalShellToolCall, type AxAIOpenAIResponsesMCPCallArgumentsDeltaEvent, type AxAIOpenAIResponsesMCPCallArgumentsDoneEvent, type AxAIOpenAIResponsesMCPCallCompletedEvent, type AxAIOpenAIResponsesMCPCallFailedEvent, type AxAIOpenAIResponsesMCPCallInProgressEvent, type AxAIOpenAIResponsesMCPListToolsCompletedEvent, type AxAIOpenAIResponsesMCPListToolsFailedEvent, type AxAIOpenAIResponsesMCPListToolsInProgressEvent, type AxAIOpenAIResponsesMCPToolCall, AxAIOpenAIResponsesModel, type AxAIOpenAIResponsesOutputItem, type AxAIOpenAIResponsesOutputItemAddedEvent, type AxAIOpenAIResponsesOutputItemDoneEvent, type AxAIOpenAIResponsesOutputMessageItem, type AxAIOpenAIResponsesOutputRefusalContentPart, type AxAIOpenAIResponsesOutputTextAnnotationAddedEvent, type AxAIOpenAIResponsesOutputTextContentPart, type AxAIOpenAIResponsesOutputTextDeltaEvent, type AxAIOpenAIResponsesOutputTextDoneEvent, type AxAIOpenAIResponsesReasoningDeltaEvent, type AxAIOpenAIResponsesReasoningDoneEvent, type AxAIOpenAIResponsesReasoningItem, type AxAIOpenAIResponsesReasoningSummaryDeltaEvent, type AxAIOpenAIResponsesReasoningSummaryDoneEvent, type AxAIOpenAIResponsesReasoningSummaryPart, type AxAIOpenAIResponsesReasoningSummaryPartAddedEvent, type AxAIOpenAIResponsesReasoningSummaryPartDoneEvent, type AxAIOpenAIResponsesReasoningSummaryTextDeltaEvent, type AxAIOpenAIResponsesReasoningSummaryTextDoneEvent, type AxAIOpenAIResponsesRefusalDeltaEvent, type AxAIOpenAIResponsesRefusalDoneEvent, type AxAIOpenAIResponsesRequest, type AxAIOpenAIResponsesResponse, type AxAIOpenAIResponsesResponseCompletedEvent, type AxAIOpenAIResponsesResponseCreatedEvent, type AxAIOpenAIResponsesResponseDelta, type AxAIOpenAIResponsesResponseFailedEvent, type AxAIOpenAIResponsesResponseInProgressEvent, type AxAIOpenAIResponsesResponseIncompleteEvent, type AxAIOpenAIResponsesResponseQueuedEvent, type AxAIOpenAIResponsesStreamEvent, type AxAIOpenAIResponsesStreamEventBase, type AxAIOpenAIResponsesToolCall, type AxAIOpenAIResponsesToolCallBase, type AxAIOpenAIResponsesToolChoice, type AxAIOpenAIResponsesToolDefinition, type AxAIOpenAIResponsesWebSearchCallCompletedEvent, type AxAIOpenAIResponsesWebSearchCallInProgressEvent, type AxAIOpenAIResponsesWebSearchCallSearchingEvent, type AxAIOpenAIResponsesWebSearchToolCall, type AxAIOpenAIUsage, type AxAIPromptConfig, AxAIReka, type AxAIRekaArgs, type AxAIRekaChatRequest, type AxAIRekaChatResponse, type AxAIRekaChatResponseDelta, type AxAIRekaConfig, AxAIRekaModel, type AxAIRekaUsage, type AxAIService, AxAIServiceAbortedError, type AxAIServiceActionOptions, AxAIServiceAuthenticationError, AxAIServiceError, type AxAIServiceImpl, type AxAIServiceMetrics, AxAIServiceNetworkError, type AxAIServiceOptions, AxAIServiceResponseError, AxAIServiceStatusError, AxAIServiceStreamTerminatedError, AxAIServiceTimeoutError, AxAITogether, type AxAITogetherArgs, type AxAPI, type AxAPIConfig, AxAgent, type AxAgentFeatures, type AxAgentOptions, type AxAgentic, AxApacheTika, type AxApacheTikaArgs, type AxApacheTikaConvertOptions, type AxAssertion, AxAssertionError, AxBalancer, type AxBalancerOptions, AxBaseAI, type AxBaseAIArgs, AxBootstrapFewShot, AxChainOfThought, type AxChatRequest, type AxChatResponse, type AxChatResponseFunctionCall, type AxChatResponseResult, AxDB, type AxDBArgs, AxDBBase, type AxDBBaseArgs, type AxDBBaseOpOptions, AxDBCloudflare, type AxDBCloudflareArgs, type AxDBCloudflareOpOptions, type AxDBLoaderOptions, AxDBManager, type AxDBManagerArgs, type AxDBMatch, AxDBMemory, type AxDBMemoryArgs, type AxDBMemoryOpOptions, AxDBPinecone, type AxDBPineconeArgs, type AxDBPineconeOpOptions, type AxDBQueryRequest, type AxDBQueryResponse, type AxDBQueryService, type AxDBService, type AxDBState, type AxDBUpsertRequest, type AxDBUpsertResponse, AxDBWeaviate, type AxDBWeaviateArgs, type AxDBWeaviateOpOptions, type AxDataRow, AxDefaultQueryRewriter, AxDefaultResultReranker, type AxDockerContainer, AxDockerSession, type AxEmbedRequest, type AxEmbedResponse, AxEmbeddingAdapter, AxEvalUtil, type AxEvaluateArgs, type AxExample, type AxField, type AxFieldDescriptor, type AxFieldProcessor, type AxFieldProcessorProcess, type AxFieldTemplateFn, type AxFieldType, type AxFieldValue, type AxFunction, AxFunctionError, type AxFunctionHandler, type AxFunctionJSONSchema, AxFunctionProcessor, AxGen, type AxGenDeltaOut, type AxGenIn, type AxGenOut, type AxGenStreamingOut, AxGenerateError, type AxGenerateErrorDetails, type AxGenerateResult, AxHFDataLoader, type AxIField, type AxInputFunctionType, AxInstanceRegistry, type AxInternalChatRequest, type AxInternalEmbedRequest, AxJSInterpreter, AxJSInterpreterPermission, AxLLMRequestTypeValues, type AxLoggerFunction, type AxLoggerTag, AxMCPClient, AxMCPHTTPSSETransport, AxMCPStdioTransport, type AxMCPStreamableHTTPTransportOptions, AxMCPStreambleHTTPTransport, type AxMCPTransport, AxMemory, type AxMessage, type AxMetricFn, type AxMetricFnArgs, AxMiPRO, type AxMiPROOptions, AxMockAIService, type AxMockAIServiceConfig, type AxModelConfig, type AxModelInfo, type AxModelInfoWithProvider, type AxModelUsage, AxMultiServiceRouter, type AxOptimizationStats, type AxOptimizerArgs, AxProgram, type AxProgramDemos, type AxProgramExamples, type AxProgramForwardOptions, type AxProgramStreamingForwardOptions, type AxProgramTrace, type AxProgramUsage, AxProgramWithSignature, type AxProgramWithSignatureOptions, AxPromptTemplate, type AxPromptTemplateOptions, AxRAG, type AxRateLimiterFunction, AxRateLimiterTokenUsage, type AxRateLimiterTokenUsageOptions, type AxRerankerIn, type AxRerankerOut, type AxResponseHandlerArgs, type AxRewriteIn, type AxRewriteOut, AxRewriter, type AxSetExamplesOptions, AxSignature, type AxSignatureTemplateValue, AxSimpleClassifier, AxSimpleClassifierClass, type AxSimpleClassifierForwardOptions, AxSpanKindValues, type AxStreamingAssertion, type AxStreamingEvent, type AxStreamingFieldProcessorProcess, AxStringUtil, AxTestPrompt, type AxTokenUsage, type AxTunable, type AxUsable, ax, axAIAnthropicDefaultConfig, axAIAnthropicVertexDefaultConfig, axAIAzureOpenAIBestConfig, axAIAzureOpenAICreativeConfig, axAIAzureOpenAIDefaultConfig, axAIAzureOpenAIFastConfig, axAICohereCreativeConfig, axAICohereDefaultConfig, axAIDeepSeekCodeConfig, axAIDeepSeekDefaultConfig, axAIGoogleGeminiDefaultConfig, axAIGoogleGeminiDefaultCreativeConfig, axAIGrokBestConfig, axAIGrokDefaultConfig, axAIHuggingFaceCreativeConfig, axAIHuggingFaceDefaultConfig, axAIMistralBestConfig, axAIMistralDefaultConfig, axAIOllamaDefaultConfig, axAIOllamaDefaultCreativeConfig, axAIOpenAIBestConfig, axAIOpenAICreativeConfig, axAIOpenAIDefaultConfig, axAIOpenAIFastConfig, axAIOpenAIResponsesBestConfig, axAIOpenAIResponsesCreativeConfig, axAIOpenAIResponsesDefaultConfig, axAIRekaBestConfig, axAIRekaCreativeConfig, axAIRekaDefaultConfig, axAIRekaFastConfig, axAITogetherDefaultConfig, axBaseAIDefaultConfig, axBaseAIDefaultCreativeConfig, axGlobals, axModelInfoAnthropic, axModelInfoCohere, axModelInfoDeepSeek, axModelInfoGoogleGemini, axModelInfoGrok, axModelInfoGroq, axModelInfoHuggingFace, axModelInfoMistral, axModelInfoOpenAI, axModelInfoReka, axModelInfoTogether, axSpanAttributes, axSpanEvents, f, s };
|
package/index.d.ts
CHANGED
|
@@ -986,8 +986,9 @@ declare class AxAIDeepSeek extends AxAIOpenAIBase<AxAIDeepSeekModel, undefined>
|
|
|
986
986
|
}
|
|
987
987
|
|
|
988
988
|
declare enum AxAIGoogleGeminiModel {
|
|
989
|
-
Gemini25Pro = "gemini-2.5-pro
|
|
990
|
-
Gemini25Flash = "gemini-2.5-flash
|
|
989
|
+
Gemini25Pro = "gemini-2.5-pro",
|
|
990
|
+
Gemini25Flash = "gemini-2.5-flash",
|
|
991
|
+
Gemini25FlashLite = "gemini-2.5-flash-lite-preview-06-17",
|
|
991
992
|
Gemini20Flash = "gemini-2.0-flash",
|
|
992
993
|
Gemini20FlashLite = "gemini-2.0-flash-lite-preview-02-05",
|
|
993
994
|
Gemini1Pro = "gemini-1.0-pro",
|
|
@@ -997,7 +998,7 @@ declare enum AxAIGoogleGeminiModel {
|
|
|
997
998
|
Gemini15Pro = "gemini-1.5-pro"
|
|
998
999
|
}
|
|
999
1000
|
declare enum AxAIGoogleGeminiEmbedModel {
|
|
1000
|
-
GeminiEmbedding = "gemini-embedding-exp
|
|
1001
|
+
GeminiEmbedding = "gemini-embedding-exp",
|
|
1001
1002
|
TextEmbeddingLarge = "text-embedding-large-exp-03-07",
|
|
1002
1003
|
TextEmbedding004 = "text-embedding-004",
|
|
1003
1004
|
TextEmbedding005 = "text-embedding-005"
|
|
@@ -1142,6 +1143,13 @@ type AxAIGoogleGeminiThinkingConfig = {
|
|
|
1142
1143
|
thinkingTokenBudget?: number;
|
|
1143
1144
|
includeThoughts?: boolean;
|
|
1144
1145
|
};
|
|
1146
|
+
type AxAIGoogleGeminiThinkingTokenBudgetLevels = {
|
|
1147
|
+
minimal?: number;
|
|
1148
|
+
low?: number;
|
|
1149
|
+
medium?: number;
|
|
1150
|
+
high?: number;
|
|
1151
|
+
highest?: number;
|
|
1152
|
+
};
|
|
1145
1153
|
/**
|
|
1146
1154
|
* AxAIGoogleGeminiConfig: Configuration options for Google Gemini API
|
|
1147
1155
|
*/
|
|
@@ -1153,6 +1161,7 @@ type AxAIGoogleGeminiConfig = AxModelConfig & {
|
|
|
1153
1161
|
dimensions?: number;
|
|
1154
1162
|
autoTruncate?: boolean;
|
|
1155
1163
|
thinking?: AxAIGoogleGeminiThinkingConfig;
|
|
1164
|
+
thinkingTokenBudgetLevels?: AxAIGoogleGeminiThinkingTokenBudgetLevels;
|
|
1156
1165
|
urlContext?: string;
|
|
1157
1166
|
};
|
|
1158
1167
|
/**
|
|
@@ -2065,6 +2074,7 @@ declare class AxSignature {
|
|
|
2065
2074
|
private outputFields;
|
|
2066
2075
|
private sigHash;
|
|
2067
2076
|
private sigString;
|
|
2077
|
+
private validatedAtHash?;
|
|
2068
2078
|
constructor(signature?: Readonly<AxSignature | string>);
|
|
2069
2079
|
private parseParsedField;
|
|
2070
2080
|
private parseField;
|
|
@@ -2076,10 +2086,13 @@ declare class AxSignature {
|
|
|
2076
2086
|
getInputFields: () => Readonly<AxIField[]>;
|
|
2077
2087
|
getOutputFields: () => Readonly<AxIField[]>;
|
|
2078
2088
|
getDescription: () => string | undefined;
|
|
2089
|
+
private invalidateValidationCache;
|
|
2079
2090
|
private toTitle;
|
|
2080
2091
|
toJSONSchema: () => AxFunctionJSONSchema;
|
|
2092
|
+
private updateHashLight;
|
|
2081
2093
|
private updateHash;
|
|
2082
2094
|
private validateSignatureConsistency;
|
|
2095
|
+
validate: () => boolean;
|
|
2083
2096
|
hash: () => string;
|
|
2084
2097
|
toString: () => string;
|
|
2085
2098
|
toJSON: () => {
|
|
@@ -3812,4 +3825,4 @@ declare const axModelInfoReka: AxModelInfo[];
|
|
|
3812
3825
|
|
|
3813
3826
|
declare const axModelInfoTogether: AxModelInfo[];
|
|
3814
3827
|
|
|
3815
|
-
export { AxAI, AxAIAnthropic, type AxAIAnthropicArgs, type AxAIAnthropicChatError, type AxAIAnthropicChatRequest, type AxAIAnthropicChatRequestCacheParam, type AxAIAnthropicChatResponse, type AxAIAnthropicChatResponseDelta, type AxAIAnthropicConfig, type AxAIAnthropicContentBlockDeltaEvent, type AxAIAnthropicContentBlockStartEvent, type AxAIAnthropicContentBlockStopEvent, type AxAIAnthropicErrorEvent, type AxAIAnthropicMessageDeltaEvent, type AxAIAnthropicMessageStartEvent, type AxAIAnthropicMessageStopEvent, AxAIAnthropicModel, type AxAIAnthropicPingEvent, AxAIAnthropicVertexModel, type AxAIArgs, AxAIAzureOpenAI, type AxAIAzureOpenAIArgs, type AxAIAzureOpenAIConfig, AxAICohere, type AxAICohereArgs, type AxAICohereChatRequest, type AxAICohereChatRequestToolResults, type AxAICohereChatResponse, type AxAICohereChatResponseDelta, type AxAICohereChatResponseToolCalls, type AxAICohereConfig, AxAICohereEmbedModel, type AxAICohereEmbedRequest, type AxAICohereEmbedResponse, AxAICohereModel, AxAIDeepSeek, type AxAIDeepSeekArgs, AxAIDeepSeekModel, type AxAIEmbedModels, type AxAIFeatures, AxAIGoogleGemini, type AxAIGoogleGeminiArgs, type AxAIGoogleGeminiBatchEmbedRequest, type AxAIGoogleGeminiBatchEmbedResponse, type AxAIGoogleGeminiChatRequest, type AxAIGoogleGeminiChatResponse, type AxAIGoogleGeminiChatResponseDelta, type AxAIGoogleGeminiConfig, type AxAIGoogleGeminiContent, type AxAIGoogleGeminiContentPart, AxAIGoogleGeminiEmbedModel, AxAIGoogleGeminiEmbedTypes, type AxAIGoogleGeminiGenerationConfig, AxAIGoogleGeminiModel, type AxAIGoogleGeminiOptionsTools, AxAIGoogleGeminiSafetyCategory, type AxAIGoogleGeminiSafetySettings, AxAIGoogleGeminiSafetyThreshold, type AxAIGoogleGeminiThinkingConfig, type AxAIGoogleGeminiTool, type AxAIGoogleGeminiToolConfig, type AxAIGoogleGeminiToolFunctionDeclaration, type AxAIGoogleGeminiToolGoogleSearchRetrieval, type AxAIGoogleVertexBatchEmbedRequest, type AxAIGoogleVertexBatchEmbedResponse, AxAIGrok, type AxAIGrokArgs, type AxAIGrokChatRequest, AxAIGrokEmbedModels, AxAIGrokModel, type AxAIGrokOptionsTools, type AxAIGrokSearchSource, AxAIGroq, type AxAIGroqArgs, AxAIGroqModel, AxAIHuggingFace, type AxAIHuggingFaceArgs, type AxAIHuggingFaceConfig, AxAIHuggingFaceModel, type AxAIHuggingFaceRequest, type AxAIHuggingFaceResponse, type AxAIInputModelList, type AxAIMemory, AxAIMistral, type AxAIMistralArgs, AxAIMistralEmbedModels, AxAIMistralModel, type AxAIModelList, type AxAIModelListBase, type AxAIModels, AxAIOllama, type AxAIOllamaAIConfig, type AxAIOllamaArgs, AxAIOpenAI, type AxAIOpenAIArgs, AxAIOpenAIBase, type AxAIOpenAIBaseArgs, type AxAIOpenAIChatRequest, type AxAIOpenAIChatResponse, type AxAIOpenAIChatResponseDelta, type AxAIOpenAIConfig, AxAIOpenAIEmbedModel, type AxAIOpenAIEmbedRequest, type AxAIOpenAIEmbedResponse, type AxAIOpenAILogprob, AxAIOpenAIModel, type AxAIOpenAIResponseDelta, AxAIOpenAIResponses, type AxAIOpenAIResponsesArgs, AxAIOpenAIResponsesBase, type AxAIOpenAIResponsesCodeInterpreterToolCall, type AxAIOpenAIResponsesComputerToolCall, type AxAIOpenAIResponsesConfig, type AxAIOpenAIResponsesContentPartAddedEvent, type AxAIOpenAIResponsesContentPartDoneEvent, type AxAIOpenAIResponsesDefineFunctionTool, type AxAIOpenAIResponsesErrorEvent, type AxAIOpenAIResponsesFileSearchCallCompletedEvent, type AxAIOpenAIResponsesFileSearchCallInProgressEvent, type AxAIOpenAIResponsesFileSearchCallSearchingEvent, type AxAIOpenAIResponsesFileSearchToolCall, type AxAIOpenAIResponsesFunctionCallArgumentsDeltaEvent, type AxAIOpenAIResponsesFunctionCallArgumentsDoneEvent, type AxAIOpenAIResponsesFunctionCallItem, type AxAIOpenAIResponsesImageGenerationCallCompletedEvent, type AxAIOpenAIResponsesImageGenerationCallGeneratingEvent, type AxAIOpenAIResponsesImageGenerationCallInProgressEvent, type AxAIOpenAIResponsesImageGenerationCallPartialImageEvent, type AxAIOpenAIResponsesImageGenerationToolCall, AxAIOpenAIResponsesImpl, type AxAIOpenAIResponsesInputAudioContentPart, type AxAIOpenAIResponsesInputContentPart, type AxAIOpenAIResponsesInputFunctionCallItem, type AxAIOpenAIResponsesInputFunctionCallOutputItem, type AxAIOpenAIResponsesInputImageUrlContentPart, type AxAIOpenAIResponsesInputItem, type AxAIOpenAIResponsesInputMessageItem, type AxAIOpenAIResponsesInputTextContentPart, type AxAIOpenAIResponsesLocalShellToolCall, type AxAIOpenAIResponsesMCPCallArgumentsDeltaEvent, type AxAIOpenAIResponsesMCPCallArgumentsDoneEvent, type AxAIOpenAIResponsesMCPCallCompletedEvent, type AxAIOpenAIResponsesMCPCallFailedEvent, type AxAIOpenAIResponsesMCPCallInProgressEvent, type AxAIOpenAIResponsesMCPListToolsCompletedEvent, type AxAIOpenAIResponsesMCPListToolsFailedEvent, type AxAIOpenAIResponsesMCPListToolsInProgressEvent, type AxAIOpenAIResponsesMCPToolCall, AxAIOpenAIResponsesModel, type AxAIOpenAIResponsesOutputItem, type AxAIOpenAIResponsesOutputItemAddedEvent, type AxAIOpenAIResponsesOutputItemDoneEvent, type AxAIOpenAIResponsesOutputMessageItem, type AxAIOpenAIResponsesOutputRefusalContentPart, type AxAIOpenAIResponsesOutputTextAnnotationAddedEvent, type AxAIOpenAIResponsesOutputTextContentPart, type AxAIOpenAIResponsesOutputTextDeltaEvent, type AxAIOpenAIResponsesOutputTextDoneEvent, type AxAIOpenAIResponsesReasoningDeltaEvent, type AxAIOpenAIResponsesReasoningDoneEvent, type AxAIOpenAIResponsesReasoningItem, type AxAIOpenAIResponsesReasoningSummaryDeltaEvent, type AxAIOpenAIResponsesReasoningSummaryDoneEvent, type AxAIOpenAIResponsesReasoningSummaryPart, type AxAIOpenAIResponsesReasoningSummaryPartAddedEvent, type AxAIOpenAIResponsesReasoningSummaryPartDoneEvent, type AxAIOpenAIResponsesReasoningSummaryTextDeltaEvent, type AxAIOpenAIResponsesReasoningSummaryTextDoneEvent, type AxAIOpenAIResponsesRefusalDeltaEvent, type AxAIOpenAIResponsesRefusalDoneEvent, type AxAIOpenAIResponsesRequest, type AxAIOpenAIResponsesResponse, type AxAIOpenAIResponsesResponseCompletedEvent, type AxAIOpenAIResponsesResponseCreatedEvent, type AxAIOpenAIResponsesResponseDelta, type AxAIOpenAIResponsesResponseFailedEvent, type AxAIOpenAIResponsesResponseInProgressEvent, type AxAIOpenAIResponsesResponseIncompleteEvent, type AxAIOpenAIResponsesResponseQueuedEvent, type AxAIOpenAIResponsesStreamEvent, type AxAIOpenAIResponsesStreamEventBase, type AxAIOpenAIResponsesToolCall, type AxAIOpenAIResponsesToolCallBase, type AxAIOpenAIResponsesToolChoice, type AxAIOpenAIResponsesToolDefinition, type AxAIOpenAIResponsesWebSearchCallCompletedEvent, type AxAIOpenAIResponsesWebSearchCallInProgressEvent, type AxAIOpenAIResponsesWebSearchCallSearchingEvent, type AxAIOpenAIResponsesWebSearchToolCall, type AxAIOpenAIUsage, type AxAIPromptConfig, AxAIReka, type AxAIRekaArgs, type AxAIRekaChatRequest, type AxAIRekaChatResponse, type AxAIRekaChatResponseDelta, type AxAIRekaConfig, AxAIRekaModel, type AxAIRekaUsage, type AxAIService, AxAIServiceAbortedError, type AxAIServiceActionOptions, AxAIServiceAuthenticationError, AxAIServiceError, type AxAIServiceImpl, type AxAIServiceMetrics, AxAIServiceNetworkError, type AxAIServiceOptions, AxAIServiceResponseError, AxAIServiceStatusError, AxAIServiceStreamTerminatedError, AxAIServiceTimeoutError, AxAITogether, type AxAITogetherArgs, type AxAPI, type AxAPIConfig, AxAgent, type AxAgentFeatures, type AxAgentOptions, type AxAgentic, AxApacheTika, type AxApacheTikaArgs, type AxApacheTikaConvertOptions, type AxAssertion, AxAssertionError, AxBalancer, type AxBalancerOptions, AxBaseAI, type AxBaseAIArgs, AxBootstrapFewShot, AxChainOfThought, type AxChatRequest, type AxChatResponse, type AxChatResponseFunctionCall, type AxChatResponseResult, AxDB, type AxDBArgs, AxDBBase, type AxDBBaseArgs, type AxDBBaseOpOptions, AxDBCloudflare, type AxDBCloudflareArgs, type AxDBCloudflareOpOptions, type AxDBLoaderOptions, AxDBManager, type AxDBManagerArgs, type AxDBMatch, AxDBMemory, type AxDBMemoryArgs, type AxDBMemoryOpOptions, AxDBPinecone, type AxDBPineconeArgs, type AxDBPineconeOpOptions, type AxDBQueryRequest, type AxDBQueryResponse, type AxDBQueryService, type AxDBService, type AxDBState, type AxDBUpsertRequest, type AxDBUpsertResponse, AxDBWeaviate, type AxDBWeaviateArgs, type AxDBWeaviateOpOptions, type AxDataRow, AxDefaultQueryRewriter, AxDefaultResultReranker, type AxDockerContainer, AxDockerSession, type AxEmbedRequest, type AxEmbedResponse, AxEmbeddingAdapter, AxEvalUtil, type AxEvaluateArgs, type AxExample, type AxField, type AxFieldDescriptor, type AxFieldProcessor, type AxFieldProcessorProcess, type AxFieldTemplateFn, type AxFieldType, type AxFieldValue, type AxFunction, AxFunctionError, type AxFunctionHandler, type AxFunctionJSONSchema, AxFunctionProcessor, AxGen, type AxGenDeltaOut, type AxGenIn, type AxGenOut, type AxGenStreamingOut, AxGenerateError, type AxGenerateErrorDetails, type AxGenerateResult, AxHFDataLoader, type AxIField, type AxInputFunctionType, AxInstanceRegistry, type AxInternalChatRequest, type AxInternalEmbedRequest, AxJSInterpreter, AxJSInterpreterPermission, AxLLMRequestTypeValues, type AxLoggerFunction, type AxLoggerTag, AxMCPClient, AxMCPHTTPSSETransport, AxMCPStdioTransport, type AxMCPStreamableHTTPTransportOptions, AxMCPStreambleHTTPTransport, type AxMCPTransport, AxMemory, type AxMessage, type AxMetricFn, type AxMetricFnArgs, AxMiPRO, type AxMiPROOptions, AxMockAIService, type AxMockAIServiceConfig, type AxModelConfig, type AxModelInfo, type AxModelInfoWithProvider, type AxModelUsage, AxMultiServiceRouter, type AxOptimizationStats, type AxOptimizerArgs, AxProgram, type AxProgramDemos, type AxProgramExamples, type AxProgramForwardOptions, type AxProgramStreamingForwardOptions, type AxProgramTrace, type AxProgramUsage, AxProgramWithSignature, type AxProgramWithSignatureOptions, AxPromptTemplate, type AxPromptTemplateOptions, AxRAG, type AxRateLimiterFunction, AxRateLimiterTokenUsage, type AxRateLimiterTokenUsageOptions, type AxRerankerIn, type AxRerankerOut, type AxResponseHandlerArgs, type AxRewriteIn, type AxRewriteOut, AxRewriter, type AxSetExamplesOptions, AxSignature, type AxSignatureTemplateValue, AxSimpleClassifier, AxSimpleClassifierClass, type AxSimpleClassifierForwardOptions, AxSpanKindValues, type AxStreamingAssertion, type AxStreamingEvent, type AxStreamingFieldProcessorProcess, AxStringUtil, AxTestPrompt, type AxTokenUsage, type AxTunable, type AxUsable, ax, axAIAnthropicDefaultConfig, axAIAnthropicVertexDefaultConfig, axAIAzureOpenAIBestConfig, axAIAzureOpenAICreativeConfig, axAIAzureOpenAIDefaultConfig, axAIAzureOpenAIFastConfig, axAICohereCreativeConfig, axAICohereDefaultConfig, axAIDeepSeekCodeConfig, axAIDeepSeekDefaultConfig, axAIGoogleGeminiDefaultConfig, axAIGoogleGeminiDefaultCreativeConfig, axAIGrokBestConfig, axAIGrokDefaultConfig, axAIHuggingFaceCreativeConfig, axAIHuggingFaceDefaultConfig, axAIMistralBestConfig, axAIMistralDefaultConfig, axAIOllamaDefaultConfig, axAIOllamaDefaultCreativeConfig, axAIOpenAIBestConfig, axAIOpenAICreativeConfig, axAIOpenAIDefaultConfig, axAIOpenAIFastConfig, axAIOpenAIResponsesBestConfig, axAIOpenAIResponsesCreativeConfig, axAIOpenAIResponsesDefaultConfig, axAIRekaBestConfig, axAIRekaCreativeConfig, axAIRekaDefaultConfig, axAIRekaFastConfig, axAITogetherDefaultConfig, axBaseAIDefaultConfig, axBaseAIDefaultCreativeConfig, axGlobals, axModelInfoAnthropic, axModelInfoCohere, axModelInfoDeepSeek, axModelInfoGoogleGemini, axModelInfoGrok, axModelInfoGroq, axModelInfoHuggingFace, axModelInfoMistral, axModelInfoOpenAI, axModelInfoReka, axModelInfoTogether, axSpanAttributes, axSpanEvents, f, s };
|
|
3828
|
+
export { AxAI, AxAIAnthropic, type AxAIAnthropicArgs, type AxAIAnthropicChatError, type AxAIAnthropicChatRequest, type AxAIAnthropicChatRequestCacheParam, type AxAIAnthropicChatResponse, type AxAIAnthropicChatResponseDelta, type AxAIAnthropicConfig, type AxAIAnthropicContentBlockDeltaEvent, type AxAIAnthropicContentBlockStartEvent, type AxAIAnthropicContentBlockStopEvent, type AxAIAnthropicErrorEvent, type AxAIAnthropicMessageDeltaEvent, type AxAIAnthropicMessageStartEvent, type AxAIAnthropicMessageStopEvent, AxAIAnthropicModel, type AxAIAnthropicPingEvent, AxAIAnthropicVertexModel, type AxAIArgs, AxAIAzureOpenAI, type AxAIAzureOpenAIArgs, type AxAIAzureOpenAIConfig, AxAICohere, type AxAICohereArgs, type AxAICohereChatRequest, type AxAICohereChatRequestToolResults, type AxAICohereChatResponse, type AxAICohereChatResponseDelta, type AxAICohereChatResponseToolCalls, type AxAICohereConfig, AxAICohereEmbedModel, type AxAICohereEmbedRequest, type AxAICohereEmbedResponse, AxAICohereModel, AxAIDeepSeek, type AxAIDeepSeekArgs, AxAIDeepSeekModel, type AxAIEmbedModels, type AxAIFeatures, AxAIGoogleGemini, type AxAIGoogleGeminiArgs, type AxAIGoogleGeminiBatchEmbedRequest, type AxAIGoogleGeminiBatchEmbedResponse, type AxAIGoogleGeminiChatRequest, type AxAIGoogleGeminiChatResponse, type AxAIGoogleGeminiChatResponseDelta, type AxAIGoogleGeminiConfig, type AxAIGoogleGeminiContent, type AxAIGoogleGeminiContentPart, AxAIGoogleGeminiEmbedModel, AxAIGoogleGeminiEmbedTypes, type AxAIGoogleGeminiGenerationConfig, AxAIGoogleGeminiModel, type AxAIGoogleGeminiOptionsTools, AxAIGoogleGeminiSafetyCategory, type AxAIGoogleGeminiSafetySettings, AxAIGoogleGeminiSafetyThreshold, type AxAIGoogleGeminiThinkingConfig, type AxAIGoogleGeminiThinkingTokenBudgetLevels, type AxAIGoogleGeminiTool, type AxAIGoogleGeminiToolConfig, type AxAIGoogleGeminiToolFunctionDeclaration, type AxAIGoogleGeminiToolGoogleSearchRetrieval, type AxAIGoogleVertexBatchEmbedRequest, type AxAIGoogleVertexBatchEmbedResponse, AxAIGrok, type AxAIGrokArgs, type AxAIGrokChatRequest, AxAIGrokEmbedModels, AxAIGrokModel, type AxAIGrokOptionsTools, type AxAIGrokSearchSource, AxAIGroq, type AxAIGroqArgs, AxAIGroqModel, AxAIHuggingFace, type AxAIHuggingFaceArgs, type AxAIHuggingFaceConfig, AxAIHuggingFaceModel, type AxAIHuggingFaceRequest, type AxAIHuggingFaceResponse, type AxAIInputModelList, type AxAIMemory, AxAIMistral, type AxAIMistralArgs, AxAIMistralEmbedModels, AxAIMistralModel, type AxAIModelList, type AxAIModelListBase, type AxAIModels, AxAIOllama, type AxAIOllamaAIConfig, type AxAIOllamaArgs, AxAIOpenAI, type AxAIOpenAIArgs, AxAIOpenAIBase, type AxAIOpenAIBaseArgs, type AxAIOpenAIChatRequest, type AxAIOpenAIChatResponse, type AxAIOpenAIChatResponseDelta, type AxAIOpenAIConfig, AxAIOpenAIEmbedModel, type AxAIOpenAIEmbedRequest, type AxAIOpenAIEmbedResponse, type AxAIOpenAILogprob, AxAIOpenAIModel, type AxAIOpenAIResponseDelta, AxAIOpenAIResponses, type AxAIOpenAIResponsesArgs, AxAIOpenAIResponsesBase, type AxAIOpenAIResponsesCodeInterpreterToolCall, type AxAIOpenAIResponsesComputerToolCall, type AxAIOpenAIResponsesConfig, type AxAIOpenAIResponsesContentPartAddedEvent, type AxAIOpenAIResponsesContentPartDoneEvent, type AxAIOpenAIResponsesDefineFunctionTool, type AxAIOpenAIResponsesErrorEvent, type AxAIOpenAIResponsesFileSearchCallCompletedEvent, type AxAIOpenAIResponsesFileSearchCallInProgressEvent, type AxAIOpenAIResponsesFileSearchCallSearchingEvent, type AxAIOpenAIResponsesFileSearchToolCall, type AxAIOpenAIResponsesFunctionCallArgumentsDeltaEvent, type AxAIOpenAIResponsesFunctionCallArgumentsDoneEvent, type AxAIOpenAIResponsesFunctionCallItem, type AxAIOpenAIResponsesImageGenerationCallCompletedEvent, type AxAIOpenAIResponsesImageGenerationCallGeneratingEvent, type AxAIOpenAIResponsesImageGenerationCallInProgressEvent, type AxAIOpenAIResponsesImageGenerationCallPartialImageEvent, type AxAIOpenAIResponsesImageGenerationToolCall, AxAIOpenAIResponsesImpl, type AxAIOpenAIResponsesInputAudioContentPart, type AxAIOpenAIResponsesInputContentPart, type AxAIOpenAIResponsesInputFunctionCallItem, type AxAIOpenAIResponsesInputFunctionCallOutputItem, type AxAIOpenAIResponsesInputImageUrlContentPart, type AxAIOpenAIResponsesInputItem, type AxAIOpenAIResponsesInputMessageItem, type AxAIOpenAIResponsesInputTextContentPart, type AxAIOpenAIResponsesLocalShellToolCall, type AxAIOpenAIResponsesMCPCallArgumentsDeltaEvent, type AxAIOpenAIResponsesMCPCallArgumentsDoneEvent, type AxAIOpenAIResponsesMCPCallCompletedEvent, type AxAIOpenAIResponsesMCPCallFailedEvent, type AxAIOpenAIResponsesMCPCallInProgressEvent, type AxAIOpenAIResponsesMCPListToolsCompletedEvent, type AxAIOpenAIResponsesMCPListToolsFailedEvent, type AxAIOpenAIResponsesMCPListToolsInProgressEvent, type AxAIOpenAIResponsesMCPToolCall, AxAIOpenAIResponsesModel, type AxAIOpenAIResponsesOutputItem, type AxAIOpenAIResponsesOutputItemAddedEvent, type AxAIOpenAIResponsesOutputItemDoneEvent, type AxAIOpenAIResponsesOutputMessageItem, type AxAIOpenAIResponsesOutputRefusalContentPart, type AxAIOpenAIResponsesOutputTextAnnotationAddedEvent, type AxAIOpenAIResponsesOutputTextContentPart, type AxAIOpenAIResponsesOutputTextDeltaEvent, type AxAIOpenAIResponsesOutputTextDoneEvent, type AxAIOpenAIResponsesReasoningDeltaEvent, type AxAIOpenAIResponsesReasoningDoneEvent, type AxAIOpenAIResponsesReasoningItem, type AxAIOpenAIResponsesReasoningSummaryDeltaEvent, type AxAIOpenAIResponsesReasoningSummaryDoneEvent, type AxAIOpenAIResponsesReasoningSummaryPart, type AxAIOpenAIResponsesReasoningSummaryPartAddedEvent, type AxAIOpenAIResponsesReasoningSummaryPartDoneEvent, type AxAIOpenAIResponsesReasoningSummaryTextDeltaEvent, type AxAIOpenAIResponsesReasoningSummaryTextDoneEvent, type AxAIOpenAIResponsesRefusalDeltaEvent, type AxAIOpenAIResponsesRefusalDoneEvent, type AxAIOpenAIResponsesRequest, type AxAIOpenAIResponsesResponse, type AxAIOpenAIResponsesResponseCompletedEvent, type AxAIOpenAIResponsesResponseCreatedEvent, type AxAIOpenAIResponsesResponseDelta, type AxAIOpenAIResponsesResponseFailedEvent, type AxAIOpenAIResponsesResponseInProgressEvent, type AxAIOpenAIResponsesResponseIncompleteEvent, type AxAIOpenAIResponsesResponseQueuedEvent, type AxAIOpenAIResponsesStreamEvent, type AxAIOpenAIResponsesStreamEventBase, type AxAIOpenAIResponsesToolCall, type AxAIOpenAIResponsesToolCallBase, type AxAIOpenAIResponsesToolChoice, type AxAIOpenAIResponsesToolDefinition, type AxAIOpenAIResponsesWebSearchCallCompletedEvent, type AxAIOpenAIResponsesWebSearchCallInProgressEvent, type AxAIOpenAIResponsesWebSearchCallSearchingEvent, type AxAIOpenAIResponsesWebSearchToolCall, type AxAIOpenAIUsage, type AxAIPromptConfig, AxAIReka, type AxAIRekaArgs, type AxAIRekaChatRequest, type AxAIRekaChatResponse, type AxAIRekaChatResponseDelta, type AxAIRekaConfig, AxAIRekaModel, type AxAIRekaUsage, type AxAIService, AxAIServiceAbortedError, type AxAIServiceActionOptions, AxAIServiceAuthenticationError, AxAIServiceError, type AxAIServiceImpl, type AxAIServiceMetrics, AxAIServiceNetworkError, type AxAIServiceOptions, AxAIServiceResponseError, AxAIServiceStatusError, AxAIServiceStreamTerminatedError, AxAIServiceTimeoutError, AxAITogether, type AxAITogetherArgs, type AxAPI, type AxAPIConfig, AxAgent, type AxAgentFeatures, type AxAgentOptions, type AxAgentic, AxApacheTika, type AxApacheTikaArgs, type AxApacheTikaConvertOptions, type AxAssertion, AxAssertionError, AxBalancer, type AxBalancerOptions, AxBaseAI, type AxBaseAIArgs, AxBootstrapFewShot, AxChainOfThought, type AxChatRequest, type AxChatResponse, type AxChatResponseFunctionCall, type AxChatResponseResult, AxDB, type AxDBArgs, AxDBBase, type AxDBBaseArgs, type AxDBBaseOpOptions, AxDBCloudflare, type AxDBCloudflareArgs, type AxDBCloudflareOpOptions, type AxDBLoaderOptions, AxDBManager, type AxDBManagerArgs, type AxDBMatch, AxDBMemory, type AxDBMemoryArgs, type AxDBMemoryOpOptions, AxDBPinecone, type AxDBPineconeArgs, type AxDBPineconeOpOptions, type AxDBQueryRequest, type AxDBQueryResponse, type AxDBQueryService, type AxDBService, type AxDBState, type AxDBUpsertRequest, type AxDBUpsertResponse, AxDBWeaviate, type AxDBWeaviateArgs, type AxDBWeaviateOpOptions, type AxDataRow, AxDefaultQueryRewriter, AxDefaultResultReranker, type AxDockerContainer, AxDockerSession, type AxEmbedRequest, type AxEmbedResponse, AxEmbeddingAdapter, AxEvalUtil, type AxEvaluateArgs, type AxExample, type AxField, type AxFieldDescriptor, type AxFieldProcessor, type AxFieldProcessorProcess, type AxFieldTemplateFn, type AxFieldType, type AxFieldValue, type AxFunction, AxFunctionError, type AxFunctionHandler, type AxFunctionJSONSchema, AxFunctionProcessor, AxGen, type AxGenDeltaOut, type AxGenIn, type AxGenOut, type AxGenStreamingOut, AxGenerateError, type AxGenerateErrorDetails, type AxGenerateResult, AxHFDataLoader, type AxIField, type AxInputFunctionType, AxInstanceRegistry, type AxInternalChatRequest, type AxInternalEmbedRequest, AxJSInterpreter, AxJSInterpreterPermission, AxLLMRequestTypeValues, type AxLoggerFunction, type AxLoggerTag, AxMCPClient, AxMCPHTTPSSETransport, AxMCPStdioTransport, type AxMCPStreamableHTTPTransportOptions, AxMCPStreambleHTTPTransport, type AxMCPTransport, AxMemory, type AxMessage, type AxMetricFn, type AxMetricFnArgs, AxMiPRO, type AxMiPROOptions, AxMockAIService, type AxMockAIServiceConfig, type AxModelConfig, type AxModelInfo, type AxModelInfoWithProvider, type AxModelUsage, AxMultiServiceRouter, type AxOptimizationStats, type AxOptimizerArgs, AxProgram, type AxProgramDemos, type AxProgramExamples, type AxProgramForwardOptions, type AxProgramStreamingForwardOptions, type AxProgramTrace, type AxProgramUsage, AxProgramWithSignature, type AxProgramWithSignatureOptions, AxPromptTemplate, type AxPromptTemplateOptions, AxRAG, type AxRateLimiterFunction, AxRateLimiterTokenUsage, type AxRateLimiterTokenUsageOptions, type AxRerankerIn, type AxRerankerOut, type AxResponseHandlerArgs, type AxRewriteIn, type AxRewriteOut, AxRewriter, type AxSetExamplesOptions, AxSignature, type AxSignatureTemplateValue, AxSimpleClassifier, AxSimpleClassifierClass, type AxSimpleClassifierForwardOptions, AxSpanKindValues, type AxStreamingAssertion, type AxStreamingEvent, type AxStreamingFieldProcessorProcess, AxStringUtil, AxTestPrompt, type AxTokenUsage, type AxTunable, type AxUsable, ax, axAIAnthropicDefaultConfig, axAIAnthropicVertexDefaultConfig, axAIAzureOpenAIBestConfig, axAIAzureOpenAICreativeConfig, axAIAzureOpenAIDefaultConfig, axAIAzureOpenAIFastConfig, axAICohereCreativeConfig, axAICohereDefaultConfig, axAIDeepSeekCodeConfig, axAIDeepSeekDefaultConfig, axAIGoogleGeminiDefaultConfig, axAIGoogleGeminiDefaultCreativeConfig, axAIGrokBestConfig, axAIGrokDefaultConfig, axAIHuggingFaceCreativeConfig, axAIHuggingFaceDefaultConfig, axAIMistralBestConfig, axAIMistralDefaultConfig, axAIOllamaDefaultConfig, axAIOllamaDefaultCreativeConfig, axAIOpenAIBestConfig, axAIOpenAICreativeConfig, axAIOpenAIDefaultConfig, axAIOpenAIFastConfig, axAIOpenAIResponsesBestConfig, axAIOpenAIResponsesCreativeConfig, axAIOpenAIResponsesDefaultConfig, axAIRekaBestConfig, axAIRekaCreativeConfig, axAIRekaDefaultConfig, axAIRekaFastConfig, axAITogetherDefaultConfig, axBaseAIDefaultConfig, axBaseAIDefaultCreativeConfig, axGlobals, axModelInfoAnthropic, axModelInfoCohere, axModelInfoDeepSeek, axModelInfoGoogleGemini, axModelInfoGrok, axModelInfoGroq, axModelInfoHuggingFace, axModelInfoMistral, axModelInfoOpenAI, axModelInfoReka, axModelInfoTogether, axSpanAttributes, axSpanEvents, f, s };
|
package/index.js
CHANGED
|
@@ -3043,8 +3043,9 @@ var AxAIDeepSeek = class extends AxAIOpenAIBase {
|
|
|
3043
3043
|
|
|
3044
3044
|
// ai/google-gemini/types.ts
|
|
3045
3045
|
var AxAIGoogleGeminiModel = /* @__PURE__ */ ((AxAIGoogleGeminiModel2) => {
|
|
3046
|
-
AxAIGoogleGeminiModel2["Gemini25Pro"] = "gemini-2.5-pro
|
|
3047
|
-
AxAIGoogleGeminiModel2["Gemini25Flash"] = "gemini-2.5-flash
|
|
3046
|
+
AxAIGoogleGeminiModel2["Gemini25Pro"] = "gemini-2.5-pro";
|
|
3047
|
+
AxAIGoogleGeminiModel2["Gemini25Flash"] = "gemini-2.5-flash";
|
|
3048
|
+
AxAIGoogleGeminiModel2["Gemini25FlashLite"] = "gemini-2.5-flash-lite-preview-06-17";
|
|
3048
3049
|
AxAIGoogleGeminiModel2["Gemini20Flash"] = "gemini-2.0-flash";
|
|
3049
3050
|
AxAIGoogleGeminiModel2["Gemini20FlashLite"] = "gemini-2.0-flash-lite-preview-02-05";
|
|
3050
3051
|
AxAIGoogleGeminiModel2["Gemini1Pro"] = "gemini-1.0-pro";
|
|
@@ -3055,7 +3056,7 @@ var AxAIGoogleGeminiModel = /* @__PURE__ */ ((AxAIGoogleGeminiModel2) => {
|
|
|
3055
3056
|
return AxAIGoogleGeminiModel2;
|
|
3056
3057
|
})(AxAIGoogleGeminiModel || {});
|
|
3057
3058
|
var AxAIGoogleGeminiEmbedModel = /* @__PURE__ */ ((AxAIGoogleGeminiEmbedModel2) => {
|
|
3058
|
-
AxAIGoogleGeminiEmbedModel2["GeminiEmbedding"] = "gemini-embedding-exp
|
|
3059
|
+
AxAIGoogleGeminiEmbedModel2["GeminiEmbedding"] = "gemini-embedding-exp";
|
|
3059
3060
|
AxAIGoogleGeminiEmbedModel2["TextEmbeddingLarge"] = "text-embedding-large-exp-03-07";
|
|
3060
3061
|
AxAIGoogleGeminiEmbedModel2["TextEmbedding004"] = "text-embedding-004";
|
|
3061
3062
|
AxAIGoogleGeminiEmbedModel2["TextEmbedding005"] = "text-embedding-005";
|
|
@@ -3091,7 +3092,7 @@ var AxAIGoogleGeminiEmbedTypes = /* @__PURE__ */ ((AxAIGoogleGeminiEmbedTypes2)
|
|
|
3091
3092
|
// ai/google-gemini/info.ts
|
|
3092
3093
|
var axModelInfoGoogleGemini = [
|
|
3093
3094
|
{
|
|
3094
|
-
name: "gemini-2.5-pro
|
|
3095
|
+
name: "gemini-2.5-pro" /* Gemini25Pro */,
|
|
3095
3096
|
currency: "usd",
|
|
3096
3097
|
characterIsToken: false,
|
|
3097
3098
|
promptTokenCostPer1M: 2.5,
|
|
@@ -3100,7 +3101,7 @@ var axModelInfoGoogleGemini = [
|
|
|
3100
3101
|
hasShowThoughts: true
|
|
3101
3102
|
},
|
|
3102
3103
|
{
|
|
3103
|
-
name: "gemini-2.5-flash
|
|
3104
|
+
name: "gemini-2.5-flash" /* Gemini25Flash */,
|
|
3104
3105
|
currency: "usd",
|
|
3105
3106
|
characterIsToken: false,
|
|
3106
3107
|
promptTokenCostPer1M: 15,
|
|
@@ -3108,6 +3109,15 @@ var axModelInfoGoogleGemini = [
|
|
|
3108
3109
|
hasThinkingBudget: true,
|
|
3109
3110
|
hasShowThoughts: true
|
|
3110
3111
|
},
|
|
3112
|
+
{
|
|
3113
|
+
name: "gemini-2.5-flash-lite-preview-06-17" /* Gemini25FlashLite */,
|
|
3114
|
+
currency: "usd",
|
|
3115
|
+
characterIsToken: false,
|
|
3116
|
+
promptTokenCostPer1M: 0.1,
|
|
3117
|
+
completionTokenCostPer1M: 0.4,
|
|
3118
|
+
hasThinkingBudget: true,
|
|
3119
|
+
hasShowThoughts: true
|
|
3120
|
+
},
|
|
3111
3121
|
{
|
|
3112
3122
|
name: "gemini-2.0-flash" /* Gemini20Flash */,
|
|
3113
3123
|
currency: "usd",
|
|
@@ -3172,15 +3182,29 @@ var safetySettings = [
|
|
|
3172
3182
|
}
|
|
3173
3183
|
];
|
|
3174
3184
|
var axAIGoogleGeminiDefaultConfig = () => structuredClone({
|
|
3175
|
-
model: "gemini-2.5-flash
|
|
3185
|
+
model: "gemini-2.5-flash" /* Gemini25Flash */,
|
|
3176
3186
|
embedModel: "text-embedding-005" /* TextEmbedding005 */,
|
|
3177
3187
|
safetySettings,
|
|
3188
|
+
thinkingTokenBudgetLevels: {
|
|
3189
|
+
minimal: 200,
|
|
3190
|
+
low: 800,
|
|
3191
|
+
medium: 5e3,
|
|
3192
|
+
high: 1e4,
|
|
3193
|
+
highest: 24500
|
|
3194
|
+
},
|
|
3178
3195
|
...axBaseAIDefaultConfig()
|
|
3179
3196
|
});
|
|
3180
3197
|
var axAIGoogleGeminiDefaultCreativeConfig = () => structuredClone({
|
|
3181
3198
|
model: "gemini-2.0-flash" /* Gemini20Flash */,
|
|
3182
3199
|
embedModel: "text-embedding-005" /* TextEmbedding005 */,
|
|
3183
3200
|
safetySettings,
|
|
3201
|
+
thinkingTokenBudgetLevels: {
|
|
3202
|
+
minimal: 200,
|
|
3203
|
+
low: 800,
|
|
3204
|
+
medium: 5e3,
|
|
3205
|
+
high: 1e4,
|
|
3206
|
+
highest: 24500
|
|
3207
|
+
},
|
|
3184
3208
|
...axBaseAIDefaultCreativeConfig()
|
|
3185
3209
|
});
|
|
3186
3210
|
var AxAIGoogleGeminiImpl = class {
|
|
@@ -3367,25 +3391,26 @@ var AxAIGoogleGeminiImpl = class {
|
|
|
3367
3391
|
thinkingConfig.thinkingBudget = this.config.thinking.thinkingTokenBudget;
|
|
3368
3392
|
}
|
|
3369
3393
|
if (config?.thinkingTokenBudget) {
|
|
3394
|
+
const levels = this.config.thinkingTokenBudgetLevels;
|
|
3370
3395
|
switch (config.thinkingTokenBudget) {
|
|
3371
3396
|
case "none":
|
|
3372
3397
|
thinkingConfig.thinkingBudget = 0;
|
|
3373
3398
|
thinkingConfig.includeThoughts = false;
|
|
3374
3399
|
break;
|
|
3375
3400
|
case "minimal":
|
|
3376
|
-
thinkingConfig.thinkingBudget = 200;
|
|
3401
|
+
thinkingConfig.thinkingBudget = levels?.minimal ?? 200;
|
|
3377
3402
|
break;
|
|
3378
3403
|
case "low":
|
|
3379
|
-
thinkingConfig.thinkingBudget = 800;
|
|
3404
|
+
thinkingConfig.thinkingBudget = levels?.low ?? 800;
|
|
3380
3405
|
break;
|
|
3381
3406
|
case "medium":
|
|
3382
|
-
thinkingConfig.thinkingBudget = 5e3;
|
|
3407
|
+
thinkingConfig.thinkingBudget = levels?.medium ?? 5e3;
|
|
3383
3408
|
break;
|
|
3384
3409
|
case "high":
|
|
3385
|
-
thinkingConfig.thinkingBudget = 1e4;
|
|
3410
|
+
thinkingConfig.thinkingBudget = levels?.high ?? 1e4;
|
|
3386
3411
|
break;
|
|
3387
3412
|
case "highest":
|
|
3388
|
-
thinkingConfig.thinkingBudget = 24500;
|
|
3413
|
+
thinkingConfig.thinkingBudget = levels?.highest ?? 24500;
|
|
3389
3414
|
break;
|
|
3390
3415
|
}
|
|
3391
3416
|
}
|
|
@@ -5491,10 +5516,15 @@ var MemoryImpl = class {
|
|
|
5491
5516
|
name,
|
|
5492
5517
|
functionCalls
|
|
5493
5518
|
}) {
|
|
5494
|
-
|
|
5519
|
+
const isContentEmpty = typeof content === "string" && content.trim() === "";
|
|
5520
|
+
if (isContentEmpty && (!functionCalls || functionCalls.length === 0)) {
|
|
5495
5521
|
return;
|
|
5496
5522
|
}
|
|
5497
|
-
|
|
5523
|
+
if (isContentEmpty) {
|
|
5524
|
+
this.addMemory({ name, role: "assistant", functionCalls });
|
|
5525
|
+
} else {
|
|
5526
|
+
this.addMemory({ content, name, role: "assistant", functionCalls });
|
|
5527
|
+
}
|
|
5498
5528
|
}
|
|
5499
5529
|
addResult({
|
|
5500
5530
|
content,
|
|
@@ -5516,7 +5546,7 @@ var MemoryImpl = class {
|
|
|
5516
5546
|
if (!lastItem || lastItem.chat.role !== "assistant") {
|
|
5517
5547
|
this.addResultMessage({ content, name, functionCalls });
|
|
5518
5548
|
} else {
|
|
5519
|
-
if ("content" in lastItem.chat && content) {
|
|
5549
|
+
if ("content" in lastItem.chat && typeof content === "string" && content.trim() !== "") {
|
|
5520
5550
|
lastItem.chat.content = content;
|
|
5521
5551
|
}
|
|
5522
5552
|
if ("name" in lastItem.chat && name) {
|
|
@@ -7647,7 +7677,7 @@ var SignatureParser = class {
|
|
|
7647
7677
|
'Add class names in quotes. Example: class "positive, negative, neutral"'
|
|
7648
7678
|
);
|
|
7649
7679
|
}
|
|
7650
|
-
const options = classNamesString.split(/[
|
|
7680
|
+
const options = classNamesString.split(/[,|]/).map((s2) => s2.trim()).filter((s2) => s2.length > 0);
|
|
7651
7681
|
if (options.length === 0) {
|
|
7652
7682
|
throw new SignatureValidationError(
|
|
7653
7683
|
`Output field "${name}": Empty class list provided`,
|
|
@@ -7656,24 +7686,6 @@ var SignatureParser = class {
|
|
|
7656
7686
|
'Provide at least one class option. Example: "positive, negative"'
|
|
7657
7687
|
);
|
|
7658
7688
|
}
|
|
7659
|
-
if (options.length === 1) {
|
|
7660
|
-
throw new SignatureValidationError(
|
|
7661
|
-
`Output field "${name}": Class type needs at least 2 options`,
|
|
7662
|
-
this.position,
|
|
7663
|
-
this.getErrorContext(),
|
|
7664
|
-
'Add more class options or use "string" type instead. Example: "positive, negative, neutral"'
|
|
7665
|
-
);
|
|
7666
|
-
}
|
|
7667
|
-
for (const option of options) {
|
|
7668
|
-
if (!/^[a-zA-Z][a-zA-Z0-9_-]*$/.test(option)) {
|
|
7669
|
-
throw new SignatureValidationError(
|
|
7670
|
-
`Output field "${name}": Invalid class option "${option}"`,
|
|
7671
|
-
this.position,
|
|
7672
|
-
this.getErrorContext(),
|
|
7673
|
-
"Class options must start with a letter and contain only letters, numbers, underscores, or hyphens"
|
|
7674
|
-
);
|
|
7675
|
-
}
|
|
7676
|
-
}
|
|
7677
7689
|
type = { name: "class", isArray, options };
|
|
7678
7690
|
} else {
|
|
7679
7691
|
try {
|
|
@@ -7971,6 +7983,8 @@ var AxSignature = class _AxSignature {
|
|
|
7971
7983
|
outputFields;
|
|
7972
7984
|
sigHash;
|
|
7973
7985
|
sigString;
|
|
7986
|
+
// Validation caching - stores hash when validation last passed
|
|
7987
|
+
validatedAtHash;
|
|
7974
7988
|
constructor(signature) {
|
|
7975
7989
|
if (!signature) {
|
|
7976
7990
|
this.inputFields = [];
|
|
@@ -8012,6 +8026,9 @@ var AxSignature = class _AxSignature {
|
|
|
8012
8026
|
);
|
|
8013
8027
|
this.sigHash = signature.hash();
|
|
8014
8028
|
this.sigString = signature.toString();
|
|
8029
|
+
if (signature.validatedAtHash === this.sigHash) {
|
|
8030
|
+
this.validatedAtHash = this.sigHash;
|
|
8031
|
+
}
|
|
8015
8032
|
} else {
|
|
8016
8033
|
throw new AxSignatureValidationError(
|
|
8017
8034
|
"Invalid signature argument type",
|
|
@@ -8058,14 +8075,34 @@ var AxSignature = class _AxSignature {
|
|
|
8058
8075
|
);
|
|
8059
8076
|
}
|
|
8060
8077
|
this.description = desc;
|
|
8078
|
+
this.invalidateValidationCache();
|
|
8061
8079
|
this.updateHash();
|
|
8062
8080
|
};
|
|
8063
8081
|
addInputField = (field) => {
|
|
8064
8082
|
try {
|
|
8065
8083
|
const parsedField = this.parseField(field);
|
|
8066
8084
|
validateField(parsedField, "input");
|
|
8085
|
+
for (const existingField of this.inputFields) {
|
|
8086
|
+
if (existingField.name === parsedField.name) {
|
|
8087
|
+
throw new AxSignatureValidationError(
|
|
8088
|
+
`Duplicate input field name: "${parsedField.name}"`,
|
|
8089
|
+
parsedField.name,
|
|
8090
|
+
"Each field name must be unique within the signature"
|
|
8091
|
+
);
|
|
8092
|
+
}
|
|
8093
|
+
}
|
|
8094
|
+
for (const outputField of this.outputFields) {
|
|
8095
|
+
if (outputField.name === parsedField.name) {
|
|
8096
|
+
throw new AxSignatureValidationError(
|
|
8097
|
+
`Field name "${parsedField.name}" appears in both inputs and outputs`,
|
|
8098
|
+
parsedField.name,
|
|
8099
|
+
"Use different names for input and output fields to avoid confusion"
|
|
8100
|
+
);
|
|
8101
|
+
}
|
|
8102
|
+
}
|
|
8067
8103
|
this.inputFields.push(parsedField);
|
|
8068
|
-
this.
|
|
8104
|
+
this.invalidateValidationCache();
|
|
8105
|
+
this.updateHashLight();
|
|
8069
8106
|
} catch (error) {
|
|
8070
8107
|
if (error instanceof AxSignatureValidationError) {
|
|
8071
8108
|
throw error;
|
|
@@ -8080,8 +8117,27 @@ var AxSignature = class _AxSignature {
|
|
|
8080
8117
|
try {
|
|
8081
8118
|
const parsedField = this.parseField(field);
|
|
8082
8119
|
validateField(parsedField, "output");
|
|
8120
|
+
for (const existingField of this.outputFields) {
|
|
8121
|
+
if (existingField.name === parsedField.name) {
|
|
8122
|
+
throw new AxSignatureValidationError(
|
|
8123
|
+
`Duplicate output field name: "${parsedField.name}"`,
|
|
8124
|
+
parsedField.name,
|
|
8125
|
+
"Each field name must be unique within the signature"
|
|
8126
|
+
);
|
|
8127
|
+
}
|
|
8128
|
+
}
|
|
8129
|
+
for (const inputField of this.inputFields) {
|
|
8130
|
+
if (inputField.name === parsedField.name) {
|
|
8131
|
+
throw new AxSignatureValidationError(
|
|
8132
|
+
`Field name "${parsedField.name}" appears in both inputs and outputs`,
|
|
8133
|
+
parsedField.name,
|
|
8134
|
+
"Use different names for input and output fields to avoid confusion"
|
|
8135
|
+
);
|
|
8136
|
+
}
|
|
8137
|
+
}
|
|
8083
8138
|
this.outputFields.push(parsedField);
|
|
8084
|
-
this.
|
|
8139
|
+
this.invalidateValidationCache();
|
|
8140
|
+
this.updateHashLight();
|
|
8085
8141
|
} catch (error) {
|
|
8086
8142
|
if (error instanceof AxSignatureValidationError) {
|
|
8087
8143
|
throw error;
|
|
@@ -8107,6 +8163,7 @@ var AxSignature = class _AxSignature {
|
|
|
8107
8163
|
return parsed;
|
|
8108
8164
|
});
|
|
8109
8165
|
this.inputFields = parsedFields;
|
|
8166
|
+
this.invalidateValidationCache();
|
|
8110
8167
|
this.updateHash();
|
|
8111
8168
|
} catch (error) {
|
|
8112
8169
|
if (error instanceof AxSignatureValidationError) {
|
|
@@ -8132,6 +8189,7 @@ var AxSignature = class _AxSignature {
|
|
|
8132
8189
|
return parsed;
|
|
8133
8190
|
});
|
|
8134
8191
|
this.outputFields = parsedFields;
|
|
8192
|
+
this.invalidateValidationCache();
|
|
8135
8193
|
this.updateHash();
|
|
8136
8194
|
} catch (error) {
|
|
8137
8195
|
if (error instanceof AxSignatureValidationError) {
|
|
@@ -8145,6 +8203,9 @@ var AxSignature = class _AxSignature {
|
|
|
8145
8203
|
getInputFields = () => this.inputFields;
|
|
8146
8204
|
getOutputFields = () => this.outputFields;
|
|
8147
8205
|
getDescription = () => this.description;
|
|
8206
|
+
invalidateValidationCache = () => {
|
|
8207
|
+
this.validatedAtHash = void 0;
|
|
8208
|
+
};
|
|
8148
8209
|
toTitle = (name) => {
|
|
8149
8210
|
let result = name.replace(/_/g, " ");
|
|
8150
8211
|
result = result.replace(/([A-Z]|[0-9]+)/g, " $1").trim();
|
|
@@ -8181,6 +8242,30 @@ var AxSignature = class _AxSignature {
|
|
|
8181
8242
|
};
|
|
8182
8243
|
return schema;
|
|
8183
8244
|
};
|
|
8245
|
+
updateHashLight = () => {
|
|
8246
|
+
try {
|
|
8247
|
+
this.getInputFields().forEach((field) => {
|
|
8248
|
+
validateField(field, "input");
|
|
8249
|
+
});
|
|
8250
|
+
this.getOutputFields().forEach((field) => {
|
|
8251
|
+
validateField(field, "output");
|
|
8252
|
+
});
|
|
8253
|
+
this.sigHash = createHash("sha256").update(this.description ?? "").update(JSON.stringify(this.inputFields)).update(JSON.stringify(this.outputFields)).digest("hex");
|
|
8254
|
+
this.sigString = renderSignature(
|
|
8255
|
+
this.description,
|
|
8256
|
+
this.inputFields,
|
|
8257
|
+
this.outputFields
|
|
8258
|
+
);
|
|
8259
|
+
return [this.sigHash, this.sigString];
|
|
8260
|
+
} catch (error) {
|
|
8261
|
+
if (error instanceof AxSignatureValidationError) {
|
|
8262
|
+
throw error;
|
|
8263
|
+
}
|
|
8264
|
+
throw new AxSignatureValidationError(
|
|
8265
|
+
`Signature validation failed: ${error instanceof Error ? error.message : "Unknown error"}`
|
|
8266
|
+
);
|
|
8267
|
+
}
|
|
8268
|
+
};
|
|
8184
8269
|
updateHash = () => {
|
|
8185
8270
|
try {
|
|
8186
8271
|
this.getInputFields().forEach((field) => {
|
|
@@ -8253,6 +8338,19 @@ var AxSignature = class _AxSignature {
|
|
|
8253
8338
|
);
|
|
8254
8339
|
}
|
|
8255
8340
|
}
|
|
8341
|
+
validate = () => {
|
|
8342
|
+
if (this.validatedAtHash === this.sigHash) {
|
|
8343
|
+
return true;
|
|
8344
|
+
}
|
|
8345
|
+
try {
|
|
8346
|
+
this.updateHash();
|
|
8347
|
+
this.validatedAtHash = this.sigHash;
|
|
8348
|
+
return true;
|
|
8349
|
+
} catch (error) {
|
|
8350
|
+
this.validatedAtHash = void 0;
|
|
8351
|
+
throw error;
|
|
8352
|
+
}
|
|
8353
|
+
};
|
|
8256
8354
|
hash = () => this.sigHash;
|
|
8257
8355
|
toString = () => this.sigString;
|
|
8258
8356
|
toJSON = () => {
|
|
@@ -8278,7 +8376,7 @@ function renderField(field) {
|
|
|
8278
8376
|
result += "[]";
|
|
8279
8377
|
}
|
|
8280
8378
|
if (field.type.name === "class" && field.type.options) {
|
|
8281
|
-
result += ` "${field.type.options.join("
|
|
8379
|
+
result += ` "${field.type.options.join(" | ")}"`;
|
|
8282
8380
|
}
|
|
8283
8381
|
}
|
|
8284
8382
|
if (field.description && field.type?.name !== "class") {
|
|
@@ -8410,13 +8508,6 @@ function validateFieldType(field, context3) {
|
|
|
8410
8508
|
'Provide class options. Example: class "positive, negative, neutral"'
|
|
8411
8509
|
);
|
|
8412
8510
|
}
|
|
8413
|
-
if (type.options.length === 1) {
|
|
8414
|
-
throw new AxSignatureValidationError(
|
|
8415
|
-
"Class type needs at least 2 options",
|
|
8416
|
-
field.name,
|
|
8417
|
-
'Add more class options or use "string" type instead'
|
|
8418
|
-
);
|
|
8419
|
-
}
|
|
8420
8511
|
for (const option of type.options) {
|
|
8421
8512
|
if (!option || option.trim().length === 0) {
|
|
8422
8513
|
throw new AxSignatureValidationError(
|
|
@@ -8426,11 +8517,11 @@ function validateFieldType(field, context3) {
|
|
|
8426
8517
|
);
|
|
8427
8518
|
}
|
|
8428
8519
|
const trimmedOption = option.trim();
|
|
8429
|
-
if (
|
|
8520
|
+
if (trimmedOption.includes(",") || trimmedOption.includes("|")) {
|
|
8430
8521
|
throw new AxSignatureValidationError(
|
|
8431
8522
|
`Invalid class option "${trimmedOption}"`,
|
|
8432
8523
|
field.name,
|
|
8433
|
-
"Class options
|
|
8524
|
+
"Class options cannot contain commas (,) or pipes (|) as they are used to separate options"
|
|
8434
8525
|
);
|
|
8435
8526
|
}
|
|
8436
8527
|
}
|
|
@@ -8474,12 +8565,13 @@ var AxProgramWithSignature = class {
|
|
|
8474
8565
|
children;
|
|
8475
8566
|
constructor(signature, options) {
|
|
8476
8567
|
this.signature = new AxSignature(signature);
|
|
8477
|
-
this.sigHash = this.signature?.hash();
|
|
8478
|
-
this.children = new AxInstanceRegistry();
|
|
8479
|
-
this.key = { id: this.constructor.name };
|
|
8480
8568
|
if (options?.description) {
|
|
8481
8569
|
this.signature.setDescription(options.description);
|
|
8482
8570
|
}
|
|
8571
|
+
this.signature.validate();
|
|
8572
|
+
this.sigHash = this.signature?.hash();
|
|
8573
|
+
this.children = new AxInstanceRegistry();
|
|
8574
|
+
this.key = { id: this.constructor.name };
|
|
8483
8575
|
}
|
|
8484
8576
|
getSignature() {
|
|
8485
8577
|
return this.signature;
|