@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 +1 -1
- package/types/scopes/generic.ts +2 -2
package/package.json
CHANGED
package/types/scopes/generic.ts
CHANGED
|
@@ -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:
|
|
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;
|