@akumi/sdk 0.3.0 → 0.4.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
@@ -125,6 +125,7 @@ interface ChatCompletionsRequest {
125
125
  stream?: boolean | null;
126
126
  stream_options?: unknown;
127
127
  firewall?: boolean | null;
128
+ firewall_language?: unknown;
128
129
  collection?: string[] | null;
129
130
  user?: string | null;
130
131
  thread?: string | null;
@@ -162,6 +163,9 @@ interface IngestDocumentRequest {
162
163
  source?: string | null;
163
164
  }
164
165
 
166
+ interface PiiLanguage {
167
+ }
168
+
165
169
  interface RememberFactRequest {
166
170
  content: string;
167
171
  user_ref: string;
@@ -206,4 +210,4 @@ interface ThreadMessageViewModel {
206
210
  interface ThreadViewModel {
207
211
  }
208
212
 
209
- export { Akumi, AkumiError, ApiError, type AuditLogApiResource, AuditLogsResource, AuthenticationError, type ChatCompletionsRequest, ChatResource, type ClientConfig, type EmbeddingsRequest, EmbeddingsResource, type IngestDocumentRequest, InvalidRequestError, ModelsResource, RateLimitError, RecallResource, type RememberFactRequest, ScoresResource, type SearchDocumentsRequest, type SearchFactsRequest, type SearchRequest, type StoreCollectionRequest, type StoreScoreRequest, type ThreadMessageViewModel, type ThreadViewModel };
213
+ export { Akumi, AkumiError, ApiError, type AuditLogApiResource, AuditLogsResource, AuthenticationError, type ChatCompletionsRequest, ChatResource, type ClientConfig, type EmbeddingsRequest, EmbeddingsResource, type IngestDocumentRequest, InvalidRequestError, ModelsResource, type PiiLanguage, RateLimitError, RecallResource, type RememberFactRequest, ScoresResource, type SearchDocumentsRequest, type SearchFactsRequest, type SearchRequest, type StoreCollectionRequest, type StoreScoreRequest, type ThreadMessageViewModel, type ThreadViewModel };
package/dist/index.d.ts CHANGED
@@ -125,6 +125,7 @@ interface ChatCompletionsRequest {
125
125
  stream?: boolean | null;
126
126
  stream_options?: unknown;
127
127
  firewall?: boolean | null;
128
+ firewall_language?: unknown;
128
129
  collection?: string[] | null;
129
130
  user?: string | null;
130
131
  thread?: string | null;
@@ -162,6 +163,9 @@ interface IngestDocumentRequest {
162
163
  source?: string | null;
163
164
  }
164
165
 
166
+ interface PiiLanguage {
167
+ }
168
+
165
169
  interface RememberFactRequest {
166
170
  content: string;
167
171
  user_ref: string;
@@ -206,4 +210,4 @@ interface ThreadMessageViewModel {
206
210
  interface ThreadViewModel {
207
211
  }
208
212
 
209
- export { Akumi, AkumiError, ApiError, type AuditLogApiResource, AuditLogsResource, AuthenticationError, type ChatCompletionsRequest, ChatResource, type ClientConfig, type EmbeddingsRequest, EmbeddingsResource, type IngestDocumentRequest, InvalidRequestError, ModelsResource, RateLimitError, RecallResource, type RememberFactRequest, ScoresResource, type SearchDocumentsRequest, type SearchFactsRequest, type SearchRequest, type StoreCollectionRequest, type StoreScoreRequest, type ThreadMessageViewModel, type ThreadViewModel };
213
+ export { Akumi, AkumiError, ApiError, type AuditLogApiResource, AuditLogsResource, AuthenticationError, type ChatCompletionsRequest, ChatResource, type ClientConfig, type EmbeddingsRequest, EmbeddingsResource, type IngestDocumentRequest, InvalidRequestError, ModelsResource, type PiiLanguage, RateLimitError, RecallResource, type RememberFactRequest, ScoresResource, type SearchDocumentsRequest, type SearchFactsRequest, type SearchRequest, type StoreCollectionRequest, type StoreScoreRequest, type ThreadMessageViewModel, type ThreadViewModel };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akumi/sdk",
3
- "version": "0.3.0",
3
+ "version": "0.4.1",
4
4
  "description": "Official TypeScript SDK for the Akumi EU-sovereign inference API.",
5
5
  "license": "MIT",
6
6
  "type": "module",