@zodic/shared 0.0.323 → 0.0.325

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.323",
3
+ "version": "0.0.325",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -229,7 +229,7 @@ export type DominantSign = {
229
229
  export type ChatMessages = ChatMessage[];
230
230
  export type ChatMessage = {
231
231
  role: 'user' | 'assistant' | 'system';
232
- content: string;
232
+ content: any;
233
233
  };
234
234
 
235
235
  export interface Crown {
@@ -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;