@squidcloud/client 1.0.427 → 1.0.428

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.
@@ -59,6 +59,11 @@ export declare const VOYAGE_EMBEDDING_MODEL_NAMES: readonly ["voyage-3-large"];
59
59
  * @category AI
60
60
  */
61
61
  export declare const AI_EMBEDDINGS_MODEL_NAMES: readonly ["text-embedding-3-small", "voyage-3-large"];
62
+ /**
63
+ * Checks if the given model name is a valid AI embeddings model name.
64
+ * @category AI
65
+ */
66
+ export declare function isAiEmbeddingsModelName(modelName: unknown): modelName is AiEmbeddingsModelName;
62
67
  /**
63
68
  * The supported AI image generation model names.
64
69
  * @category AI
@@ -2,4 +2,4 @@
2
2
  * The current version of the SquidCloud client package.
3
3
  * @category Platform
4
4
  */
5
- export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.427";
5
+ export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.428";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/client",
3
- "version": "1.0.427",
3
+ "version": "1.0.428",
4
4
  "description": "A typescript implementation of the Squid client",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",