@pipe0/client 0.0.22 → 0.0.23

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @pipe0/client
2
2
 
3
+ ## 0.0.23
4
+
5
+ ### Patch Changes
6
+
7
+ - dcad351: Change pipe0 ai options
8
+
3
9
  ## 0.0.22
4
10
 
5
11
  ### Patch Changes
@@ -1099,8 +1099,11 @@ export interface components {
1099
1099
  };
1100
1100
  };
1101
1101
  };
1102
- /** @enum {string|null} */
1103
- model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
1102
+ /**
1103
+ * @default gemini-flash-latest
1104
+ * @enum {string}
1105
+ */
1106
+ model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
1104
1107
  };
1105
1108
  } | {
1106
1109
  /** @enum {string} */
@@ -2380,8 +2383,11 @@ export interface components {
2380
2383
  } | null;
2381
2384
  config: {
2382
2385
  template: string;
2383
- /** @enum {string|null} */
2384
- model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
2386
+ /**
2387
+ * @default gemini-flash-latest
2388
+ * @enum {string}
2389
+ */
2390
+ model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
2385
2391
  signature: string;
2386
2392
  /** @enum {string|null} */
2387
2393
  persona?: "sales" | "human_resources" | "customer_success" | "" | null;
@@ -3545,8 +3551,11 @@ export interface components {
3545
3551
  } | null;
3546
3552
  config: {
3547
3553
  template: string;
3548
- /** @enum {string|null} */
3549
- model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest" | "" | null;
3554
+ /**
3555
+ * @default gemini-flash-latest
3556
+ * @enum {string}
3557
+ */
3558
+ model?: "gemini-flash-latest" | "openai-gpt-latest" | "openai-gpt-mini-latest";
3550
3559
  output_fields?: {
3551
3560
  /**
3552
3561
  * @default {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipe0/client",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "type": "module",