@squidcloud/client 1.0.283 → 1.0.285
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 +1 -1
- package/dist/internal-common/src/public-types/ai-chatbot.public-types.d.ts +7 -1
- package/dist/internal-common/src/public-types/integration.public-types.d.ts +2 -0
- package/dist/typescript-client/src/ai-image-client.d.ts +1 -0
- package/dist/typescript-client/src/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -37,7 +37,8 @@ export type FluxModelName = (typeof FLUX_MODEL_NAMES)[number];
|
|
|
37
37
|
export type AiGenerateImageOptions = DallEOptions | StableDiffusionCoreOptions | FluxOptions;
|
|
38
38
|
export type AiAudioTranscribeOptions = WhisperOptions;
|
|
39
39
|
export type AiAudioCreateSpeechOptions = OpenAiCreateSpeechOptions;
|
|
40
|
-
export
|
|
40
|
+
export declare const VECTOR_DB_TYPES: readonly ["pinecone", "postgres"];
|
|
41
|
+
export type VectorDbType = (typeof VECTOR_DB_TYPES)[number];
|
|
41
42
|
export interface AiAudioCreateSpeechResponse {
|
|
42
43
|
mimeType: string;
|
|
43
44
|
extension: string;
|
|
@@ -76,10 +77,15 @@ export interface OpenAiCreateSpeechOptions extends BaseAiAudioCreateSpeechOption
|
|
|
76
77
|
}
|
|
77
78
|
export interface FluxOptions extends BaseAiGenerateImageOptions {
|
|
78
79
|
modelName: 'flux-pro-1.1';
|
|
80
|
+
/** Must be a multiple of 32. Min 256, max 1440 - default to 1024 */
|
|
79
81
|
width?: number;
|
|
82
|
+
/** Must be a multiple of 32. Min 256, max 1440 - default to 768 */
|
|
80
83
|
height?: number;
|
|
84
|
+
/** Whether to modify the prompt for more creative generation - default to false */
|
|
81
85
|
prompt_upsampling?: boolean;
|
|
86
|
+
/** Random seed. Set for reproducible generation */
|
|
82
87
|
seed?: number;
|
|
88
|
+
/** 1 is most strict and 5 is most permissive */
|
|
83
89
|
safety_tolerance?: number;
|
|
84
90
|
}
|
|
85
91
|
export interface StableDiffusionCoreOptions extends BaseAiGenerateImageOptions {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IntegrationId } from './communication.public-types';
|
|
1
2
|
export declare enum IntegrationType {
|
|
2
3
|
'built_in_db' = "built_in_db",
|
|
3
4
|
'mongo' = "mongo",
|
|
@@ -69,3 +70,4 @@ export declare enum IntegrationSchemaType {
|
|
|
69
70
|
'api' = "api",
|
|
70
71
|
'graphql' = "graphql"
|
|
71
72
|
}
|
|
73
|
+
export declare const AI_AGENTS_INTEGRATION_ID: IntegrationId;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.
|
|
1
|
+
export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.285";
|