@squidcloud/client 1.0.144 → 1.0.145
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
|
@@ -27324,6 +27324,8 @@ const AiChatbotChatRequestSchema = {
|
|
|
27324
27324
|
};
|
|
27325
27325
|
|
|
27326
27326
|
;// CONCATENATED MODULE: ../common/src/ai-chatbot.types.ts
|
|
27327
|
+
/** The supported AI model names. */
|
|
27328
|
+
const AI_MODEL_NAMES = (/* unused pure expression or super */ null && (['gpt-3.5-turbo', 'gpt-4', 'claude-2', 'gpt-4-1106-preview']));
|
|
27327
27329
|
/** @internal */
|
|
27328
27330
|
const AiModelData = {
|
|
27329
27331
|
'gpt-4': {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/** The supported AI model names. */
|
|
2
|
-
export
|
|
2
|
+
export declare const AI_MODEL_NAMES: readonly ["gpt-3.5-turbo", "gpt-4", "claude-2", "gpt-4-1106-preview"];
|
|
3
|
+
export type AiModelName = (typeof AI_MODEL_NAMES)[number];
|
|
3
4
|
/** The possible sources for the LLM provider API key. */
|
|
4
5
|
export type ApiKeySource = 'user' | 'system';
|
|
5
6
|
export type AiChatbotContextType = 'text' | 'url' | 'file';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squidcloud/client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.145",
|
|
4
4
|
"description": "A typescript implementation of the Squid client",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"types": "dist/typescript-client/src/index.d.ts",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"license": "ISC",
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@apollo/client": "^3.7.4",
|
|
35
|
-
"@squidcloud/common": "1.0.
|
|
35
|
+
"@squidcloud/common": "1.0.145",
|
|
36
36
|
"@supercharge/promise-pool": "^2.3.2",
|
|
37
37
|
"cross-fetch": "^3.1.5",
|
|
38
38
|
"axios": "^1.6.2",
|