ttc-ai-chat-sdk 1.7.8-dev → 1.8.0-dev
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.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -111,7 +111,7 @@ export interface ModelInfo {
|
|
|
111
111
|
export interface OriginInfo {
|
|
112
112
|
name: string;
|
|
113
113
|
description: string;
|
|
114
|
-
|
|
114
|
+
modulesRequiringAuth: string[];
|
|
115
115
|
directory: string;
|
|
116
116
|
}
|
|
117
117
|
export interface ConversationStats {
|
|
@@ -219,7 +219,7 @@ export interface Assistant {
|
|
|
219
219
|
setOrigins(origins: {
|
|
220
220
|
name: string;
|
|
221
221
|
url?: string;
|
|
222
|
-
|
|
222
|
+
apikeys: Record<string, string> | string;
|
|
223
223
|
}[]): Promise<void>;
|
|
224
224
|
/**
|
|
225
225
|
* This function allows you to fetch information about a specific origin by its URL.
|
package/package.json
CHANGED