@squidcloud/client 1.0.144 → 1.0.145-beta

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.
@@ -1,5 +1,6 @@
1
1
  /** The supported AI model names. */
2
- export type AiModelName = 'gpt-3.5-turbo' | 'gpt-4' | 'claude-2' | 'gpt-4-1106-preview';
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.144",
3
+ "version": "1.0.145-beta",
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.144",
35
+ "@squidcloud/common": "1.0.145-beta",
36
36
  "@supercharge/promise-pool": "^2.3.2",
37
37
  "cross-fetch": "^3.1.5",
38
38
  "axios": "^1.6.2",