@akumi/sdk 0.1.0 → 0.1.1

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/dist/index.d.cts CHANGED
@@ -109,8 +109,8 @@ interface AuditLogApiResource {
109
109
  }
110
110
 
111
111
  interface ChatCompletionsRequest {
112
- model: string;
113
112
  messages: unknown[];
113
+ model?: string;
114
114
  temperature?: number | null;
115
115
  max_tokens?: number | null;
116
116
  stream?: boolean | null;
@@ -129,6 +129,9 @@ interface ChatCompletionsRequest {
129
129
  tool_choice?: string | null;
130
130
  parallel_tool_calls?: boolean | null;
131
131
  cache?: boolean | null;
132
+ models?: string[];
133
+ provider?: unknown;
134
+ stream_options?: unknown;
132
135
  stop?: string[] | null;
133
136
  logit_bias?: number[] | null;
134
137
  response_format?: unknown;
package/dist/index.d.ts CHANGED
@@ -109,8 +109,8 @@ interface AuditLogApiResource {
109
109
  }
110
110
 
111
111
  interface ChatCompletionsRequest {
112
- model: string;
113
112
  messages: unknown[];
113
+ model?: string;
114
114
  temperature?: number | null;
115
115
  max_tokens?: number | null;
116
116
  stream?: boolean | null;
@@ -129,6 +129,9 @@ interface ChatCompletionsRequest {
129
129
  tool_choice?: string | null;
130
130
  parallel_tool_calls?: boolean | null;
131
131
  cache?: boolean | null;
132
+ models?: string[];
133
+ provider?: unknown;
134
+ stream_options?: unknown;
132
135
  stop?: string[] | null;
133
136
  logit_bias?: number[] | null;
134
137
  response_format?: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akumi/sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Official TypeScript SDK for the Akumi EU-sovereign inference API.",
5
5
  "license": "MIT",
6
6
  "type": "module",