190proof 1.0.24 → 1.0.25
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -74,4 +74,4 @@ interface GenericPayload {
|
|
|
74
74
|
|
|
75
75
|
declare function callWithRetries(identifier: string, aiPayload: GenericPayload, aiConfig?: OpenAIConfig | AnthropicAIConfig, retries?: number, chunkTimeoutMs?: number): Promise<ParsedResponseMessage>;
|
|
76
76
|
|
|
77
|
-
export { ClaudeModel, type FunctionDefinition, GPTModel, type GenericMessage, type GenericPayload, GroqModel, type OpenAIConfig, callWithRetries };
|
|
77
|
+
export { ClaudeModel, type FunctionDefinition, GPTModel, GeminiModel, type GenericMessage, type GenericPayload, GroqModel, type OpenAIConfig, callWithRetries };
|
package/dist/index.d.ts
CHANGED
|
@@ -74,4 +74,4 @@ interface GenericPayload {
|
|
|
74
74
|
|
|
75
75
|
declare function callWithRetries(identifier: string, aiPayload: GenericPayload, aiConfig?: OpenAIConfig | AnthropicAIConfig, retries?: number, chunkTimeoutMs?: number): Promise<ParsedResponseMessage>;
|
|
76
76
|
|
|
77
|
-
export { ClaudeModel, type FunctionDefinition, GPTModel, type GenericMessage, type GenericPayload, GroqModel, type OpenAIConfig, callWithRetries };
|
|
77
|
+
export { ClaudeModel, type FunctionDefinition, GPTModel, GeminiModel, type GenericMessage, type GenericPayload, GroqModel, type OpenAIConfig, callWithRetries };
|
package/dist/index.js
CHANGED
|
@@ -27015,6 +27015,7 @@ var proof_exports = {};
|
|
|
27015
27015
|
__export(proof_exports, {
|
|
27016
27016
|
ClaudeModel: () => ClaudeModel,
|
|
27017
27017
|
GPTModel: () => GPTModel,
|
|
27018
|
+
GeminiModel: () => GeminiModel,
|
|
27018
27019
|
GroqModel: () => GroqModel,
|
|
27019
27020
|
callWithRetries: () => callWithRetries
|
|
27020
27021
|
});
|
|
@@ -32241,6 +32242,7 @@ async function getNormalizedBase64PNG(url2, mime) {
|
|
|
32241
32242
|
0 && (module.exports = {
|
|
32242
32243
|
ClaudeModel,
|
|
32243
32244
|
GPTModel,
|
|
32245
|
+
GeminiModel,
|
|
32244
32246
|
GroqModel,
|
|
32245
32247
|
callWithRetries
|
|
32246
32248
|
});
|