@gammatech/aijsx 0.15.0-dev.2024-07-30 → 0.15.2-dev.2024-10-01
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -252,7 +252,7 @@ declare module '@gammatech/aijsx' {
|
|
|
252
252
|
openai: OpenAIChatCompletionRequest;
|
|
253
253
|
}
|
|
254
254
|
}
|
|
255
|
-
type ValidOpenAIVisionModel = 'gpt-4o' | 'gpt-4o-2024-05-13' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-turbo' | 'gpt-4-vision-preview';
|
|
255
|
+
type ValidOpenAIVisionModel = 'gpt-4o' | 'gpt-4o-2024-05-13' | 'gpt-4o-2024-08-06' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-turbo' | 'gpt-4-vision-preview';
|
|
256
256
|
type ValidOpenAIChatModel = ValidOpenAIVisionModel | 'gpt-4' | 'gpt-4-0314' | 'gpt-4-0613' | 'gpt-4-32k' | 'gpt-4-32k-0314' | 'gpt-4-32k-0613' | 'gpt-4-1106-preview' | 'gpt-4-0125-preview' | 'gpt-3.5-turbo' | 'gpt-3.5-turbo-0301' | 'gpt-3.5-turbo-0613' | 'gpt-3.5-turbo-16k' | 'gpt-3.5-turbo-16k-0613' | 'gpt-3.5-turbo-1106' | 'gpt-3.5-turbo-0125';
|
|
257
257
|
declare const OpenAIClientContext: Context<GetChatCompletionClientAndProvider<ValidOpenAIChatModel, OpenAI>>;
|
|
258
258
|
type OpenAIChatCompletionProps = {
|
|
@@ -308,7 +308,7 @@ declare module '@gammatech/aijsx' {
|
|
|
308
308
|
};
|
|
309
309
|
}
|
|
310
310
|
}
|
|
311
|
-
type ValidGoogleChatModel = 'gemini-1.5-pro' | 'gemini-1.5-flash';
|
|
311
|
+
type ValidGoogleChatModel = 'gemini-1.5-pro' | 'gemini-1.5-flash' | 'gemini-1.5-flash-002' | 'gemini-1.5-pro-002';
|
|
312
312
|
declare const GoogleClientContext: Context<GetChatCompletionClientAndProvider<ValidGoogleChatModel, VertexAI>>;
|
|
313
313
|
type GoogleChatCompletionProps = {
|
|
314
314
|
model: ValidGoogleChatModel;
|
package/dist/index.d.ts
CHANGED
|
@@ -252,7 +252,7 @@ declare module '@gammatech/aijsx' {
|
|
|
252
252
|
openai: OpenAIChatCompletionRequest;
|
|
253
253
|
}
|
|
254
254
|
}
|
|
255
|
-
type ValidOpenAIVisionModel = 'gpt-4o' | 'gpt-4o-2024-05-13' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-turbo' | 'gpt-4-vision-preview';
|
|
255
|
+
type ValidOpenAIVisionModel = 'gpt-4o' | 'gpt-4o-2024-05-13' | 'gpt-4o-2024-08-06' | 'gpt-4-turbo-2024-04-09' | 'gpt-4-turbo' | 'gpt-4-vision-preview';
|
|
256
256
|
type ValidOpenAIChatModel = ValidOpenAIVisionModel | 'gpt-4' | 'gpt-4-0314' | 'gpt-4-0613' | 'gpt-4-32k' | 'gpt-4-32k-0314' | 'gpt-4-32k-0613' | 'gpt-4-1106-preview' | 'gpt-4-0125-preview' | 'gpt-3.5-turbo' | 'gpt-3.5-turbo-0301' | 'gpt-3.5-turbo-0613' | 'gpt-3.5-turbo-16k' | 'gpt-3.5-turbo-16k-0613' | 'gpt-3.5-turbo-1106' | 'gpt-3.5-turbo-0125';
|
|
257
257
|
declare const OpenAIClientContext: Context<GetChatCompletionClientAndProvider<ValidOpenAIChatModel, OpenAI>>;
|
|
258
258
|
type OpenAIChatCompletionProps = {
|
|
@@ -308,7 +308,7 @@ declare module '@gammatech/aijsx' {
|
|
|
308
308
|
};
|
|
309
309
|
}
|
|
310
310
|
}
|
|
311
|
-
type ValidGoogleChatModel = 'gemini-1.5-pro' | 'gemini-1.5-flash';
|
|
311
|
+
type ValidGoogleChatModel = 'gemini-1.5-pro' | 'gemini-1.5-flash' | 'gemini-1.5-flash-002' | 'gemini-1.5-pro-002';
|
|
312
312
|
declare const GoogleClientContext: Context<GetChatCompletionClientAndProvider<ValidGoogleChatModel, VertexAI>>;
|
|
313
313
|
type GoogleChatCompletionProps = {
|
|
314
314
|
model: ValidGoogleChatModel;
|