@just-every/ensemble 0.1.7 → 0.1.9

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.
@@ -1612,9 +1612,6 @@ export declare const RequestOptionsSchema: z.ZodObject<{
1612
1612
  timestamp?: number;
1613
1613
  output?: string;
1614
1614
  })[];
1615
- top_p?: number;
1616
- max_tokens?: number;
1617
- stream?: boolean;
1618
1615
  tools?: {
1619
1616
  function?: {
1620
1617
  parameters?: {
@@ -1627,6 +1624,9 @@ export declare const RequestOptionsSchema: z.ZodObject<{
1627
1624
  };
1628
1625
  type?: "function";
1629
1626
  }[];
1627
+ top_p?: number;
1628
+ max_tokens?: number;
1629
+ stream?: boolean;
1630
1630
  }, {
1631
1631
  model?: string;
1632
1632
  temperature?: number;
@@ -1732,9 +1732,6 @@ export declare const RequestOptionsSchema: z.ZodObject<{
1732
1732
  timestamp?: number;
1733
1733
  output?: string;
1734
1734
  })[];
1735
- top_p?: number;
1736
- max_tokens?: number;
1737
- stream?: boolean;
1738
1735
  tools?: {
1739
1736
  function?: {
1740
1737
  parameters?: {
@@ -1747,6 +1744,9 @@ export declare const RequestOptionsSchema: z.ZodObject<{
1747
1744
  };
1748
1745
  type?: "function";
1749
1746
  }[];
1747
+ top_p?: number;
1748
+ max_tokens?: number;
1749
+ stream?: boolean;
1750
1750
  }>;
1751
1751
  export declare const validateAPIResponse: <T>(schema: z.ZodSchema<T>, data: unknown, context: string) => T;
1752
1752
  export declare const StreamEventTypeSchema: z.ZodEnum<["connected", "command_start", "command_done", "project_create", "project_update", "process_start", "process_running", "process_updated", "process_done", "process_failed", "process_waiting", "process_terminated", "agent_start", "agent_updated", "agent_done", "agent_status", "message_start", "message_delta", "message_complete", "talk_start", "talk_delta", "talk_complete", "audio_stream", "tool_start", "tool_delta", "tool_done", "file_start", "file_delta", "file_complete", "cost_update", "system_status", "system_update", "quota_update", "screenshot", "design_grid", "console", "error", "tool_wait_start", "tool_waiting", "tool_wait_complete", "task_wait_start", "task_waiting", "task_wait_complete", "git_pull_request", "stream_end"]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@just-every/ensemble",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "LLM provider abstraction layer with unified streaming interface",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",