@docyrus/ui-pro-ai-assistant 0.5.1 → 0.5.2
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/docy-assistant.d.ts +1 -1
- package/dist/index.js +19 -3
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -308,4 +308,11 @@ export interface DocyAssistantProps {
|
|
|
308
308
|
initialFeatures?: InitialFeatureFlags;
|
|
309
309
|
/** Initial files to attach when auto-sending the initial prompt */
|
|
310
310
|
initialFiles?: File[];
|
|
311
|
+
/**
|
|
312
|
+
* Host environment identifier sent to the chat endpoint as `environment`.
|
|
313
|
+
* The backend uses this to filter the tool list bound to the agent so that
|
|
314
|
+
* only tools available in the current environment are exposed.
|
|
315
|
+
* Common values: 'web' | 'desktop' | 'chrome' | 'word' | 'excel' | 'powerpoint' | 'outlook'.
|
|
316
|
+
*/
|
|
317
|
+
environment?: string;
|
|
311
318
|
}
|
package/package.json
CHANGED