@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zodic/shared",
3
- "version": "0.0.376",
3
+ "version": "0.0.377",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -347,7 +347,12 @@ export const ConceptPhases: Record<string, ConceptPhase> = {
347
347
  IMAGES: 'images',
348
348
  };
349
349
 
350
- export type DeepSeekOptions = { model?: string; options?: Record<string, any>, temperature?: number};
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 = "Completed",
648
- Failed = "Failed",
649
- Pending = "Pending",
650
- Processing = "Processing",
651
- Staged = "Staged",
652
- }
652
+ Completed = 'Completed',
653
+ Failed = 'Failed',
654
+ Pending = 'Pending',
655
+ Processing = 'Processing',
656
+ Staged = 'Staged',
657
+ }