ttc-ai-chat-sdk 1.10.2-dev → 1.10.3-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 +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -374,6 +374,13 @@ export interface AssistantAPI {
|
|
|
374
374
|
* @returns {Promise<rpcResponseType<any>>}
|
|
375
375
|
*/
|
|
376
376
|
getModels(cuid: string): Promise<rpcResponseType<any>>;
|
|
377
|
+
/**
|
|
378
|
+
* Gets all app level models
|
|
379
|
+
*
|
|
380
|
+
* @param {}
|
|
381
|
+
* @returns {Promise<rpcResponseType<any>>}
|
|
382
|
+
*/
|
|
383
|
+
getAppModels(): Promise<rpcResponseType<any>>;
|
|
377
384
|
/**
|
|
378
385
|
* Deletes an assistant
|
|
379
386
|
*
|
package/package.json
CHANGED