@zodic/shared 0.0.324 → 0.0.326

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.324",
3
+ "version": "0.0.326",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -347,7 +347,7 @@ export const ConceptPhases: Record<string, ConceptPhase> = {
347
347
  IMAGES: 'images',
348
348
  };
349
349
 
350
- export type DeepSeekOptions = { model?: string; options?: Record<string, any> };
350
+ export type DeepSeekOptions = { model?: string; options?: Record<string, any>, temperature?: number};
351
351
  export type DeepSeekBatchInputItem = {
352
352
  messages: ChatMessages;
353
353
  options?: DeepSeekOptions;