@squidcloud/client 1.0.132 → 1.0.133
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/cjs/index.js
CHANGED
|
@@ -26802,7 +26802,7 @@ const AiAssistantMutateRequestSchema = {
|
|
|
26802
26802
|
properties: {
|
|
26803
26803
|
modelName: {
|
|
26804
26804
|
type: 'string',
|
|
26805
|
-
enum: ['gpt-3.5-turbo', 'gpt-4', 'claude-2'],
|
|
26805
|
+
enum: ['gpt-3.5-turbo', 'gpt-4', 'claude-2', 'gpt-4-1106-preview'],
|
|
26806
26806
|
},
|
|
26807
26807
|
strictContext: {
|
|
26808
26808
|
type: 'boolean',
|
|
@@ -26856,7 +26856,7 @@ const AiAssistantMutateRequestSchema = {
|
|
|
26856
26856
|
properties: {
|
|
26857
26857
|
modelName: {
|
|
26858
26858
|
type: 'string',
|
|
26859
|
-
enum: ['gpt-3.5-turbo', 'gpt-4', 'claude-2'],
|
|
26859
|
+
enum: ['gpt-3.5-turbo', 'gpt-4', 'claude-2', 'gpt-4-1106-preview'],
|
|
26860
26860
|
},
|
|
26861
26861
|
strictContext: {
|
|
26862
26862
|
type: 'boolean',
|
|
@@ -26955,6 +26955,9 @@ const AiModelData = {
|
|
|
26955
26955
|
'claude-2': {
|
|
26956
26956
|
tokens: 100000,
|
|
26957
26957
|
},
|
|
26958
|
+
'gpt-4-1106-preview': {
|
|
26959
|
+
tokens: 8192,
|
|
26960
|
+
},
|
|
26958
26961
|
};
|
|
26959
26962
|
|
|
26960
26963
|
;// CONCATENATED MODULE: ../common/src/integrations/observability.types.ts
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/** The supported AI model names. */
|
|
2
|
-
export type AiModelName = 'gpt-3.5-turbo' | 'gpt-4' | 'claude-2';
|
|
2
|
+
export type AiModelName = 'gpt-3.5-turbo' | 'gpt-4' | 'claude-2' | 'gpt-4-1106-preview';
|
|
3
3
|
export type AiAssistantContextType = 'text' | 'url' | 'file';
|
|
4
4
|
export interface AiAssistantTextContext {
|
|
5
5
|
type: 'text';
|