@zodic/shared 0.0.376 → 0.0.377
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.
|
@@ -791,7 +791,7 @@ export class ArchetypeService {
|
|
|
791
791
|
);
|
|
792
792
|
const contentResponse = await this.context
|
|
793
793
|
.api()
|
|
794
|
-
.callTogether.single(contentMessages, {});
|
|
794
|
+
.callTogether.single(contentMessages, { max_tokens: 10000 });
|
|
795
795
|
if (!contentResponse) {
|
|
796
796
|
await this.log(
|
|
797
797
|
'error',
|
package/package.json
CHANGED
package/types/scopes/generic.ts
CHANGED
|
@@ -347,7 +347,12 @@ export const ConceptPhases: Record<string, ConceptPhase> = {
|
|
|
347
347
|
IMAGES: 'images',
|
|
348
348
|
};
|
|
349
349
|
|
|
350
|
-
export type DeepSeekOptions = {
|
|
350
|
+
export type DeepSeekOptions = {
|
|
351
|
+
model?: string;
|
|
352
|
+
options?: Record<string, any>;
|
|
353
|
+
temperature?: number;
|
|
354
|
+
max_tokens?: number;
|
|
355
|
+
};
|
|
351
356
|
export type DeepSeekBatchInputItem = {
|
|
352
357
|
messages: ChatMessages;
|
|
353
358
|
options?: DeepSeekOptions;
|
|
@@ -644,9 +649,9 @@ export interface Usage {
|
|
|
644
649
|
}
|
|
645
650
|
|
|
646
651
|
export enum Status {
|
|
647
|
-
Completed =
|
|
648
|
-
Failed =
|
|
649
|
-
Pending =
|
|
650
|
-
Processing =
|
|
651
|
-
Staged =
|
|
652
|
-
}
|
|
652
|
+
Completed = 'Completed',
|
|
653
|
+
Failed = 'Failed',
|
|
654
|
+
Pending = 'Pending',
|
|
655
|
+
Processing = 'Processing',
|
|
656
|
+
Staged = 'Staged',
|
|
657
|
+
}
|