@swiss-ai-hub/web 0.290.11
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/LICENSE +661 -0
- package/README.md +479 -0
- package/app.config.ts +1 -0
- package/app.vue +52 -0
- package/assets/css/main.css +4 -0
- package/assets/images/logo.png +0 -0
- package/components/Agent/Avatar.vue +40 -0
- package/components/Agent/Card.vue +139 -0
- package/components/Agent/Configuration.vue +20 -0
- package/components/Agent/CreateModal.vue +287 -0
- package/components/Agent/EmptyCard.vue +35 -0
- package/components/Agent/List.vue +85 -0
- package/components/Agent/TemplateCard.vue +58 -0
- package/components/AppLoader.vue +55 -0
- package/components/Chat/Message.vue +90 -0
- package/components/Chat/SourceNodes.vue +120 -0
- package/components/Chat/Thread.vue +134 -0
- package/components/Costs/Table.vue +56 -0
- package/components/Dashboard/Component/BarChart.vue +46 -0
- package/components/Dashboard/Component/LineChart.vue +138 -0
- package/components/Dashboard/Component/Number.vue +31 -0
- package/components/Dashboard/Grid.vue +214 -0
- package/components/Dashboard/Item.vue +75 -0
- package/components/Dashboard/Trend.vue +34 -0
- package/components/Display/List/DisplayList.vue +93 -0
- package/components/Evaluation/Dataset/Card.vue +70 -0
- package/components/Evaluation/Dataset/Create.vue +81 -0
- package/components/Evaluation/Dataset/Edit.vue +132 -0
- package/components/Event/Display/AddMemoryToChatHistoryEvent.vue +60 -0
- package/components/Event/Display/AgentInTheLoopRequestEvent.vue +56 -0
- package/components/Event/Display/AgentInTheLoopResponseEvent.vue +17 -0
- package/components/Event/Display/Base.vue +125 -0
- package/components/Event/Display/BaseRetrieveMemoryEvent.vue +101 -0
- package/components/Event/Display/BaseStoreMemoryEvent.vue +182 -0
- package/components/Event/Display/ChunkEvent.vue +40 -0
- package/components/Event/Display/EmbeddingEvent.vue +25 -0
- package/components/Event/Display/ExceptionEvent.vue +21 -0
- package/components/Event/Display/GuardAcceptEvent.vue +25 -0
- package/components/Event/Display/GuardEvent.vue +17 -0
- package/components/Event/Display/GuardRejectionEvent.vue +25 -0
- package/components/Event/Display/HumanInTheLoopRequestEvent.vue +53 -0
- package/components/Event/Display/HumanInTheLoopResponseEvent.vue +40 -0
- package/components/Event/Display/LLMCostEvent.vue +25 -0
- package/components/Event/Display/LLMEvent.vue +92 -0
- package/components/Event/Display/LimitChatHistoryEvent.vue +60 -0
- package/components/Event/Display/RAGFailureStopEvent.vue +28 -0
- package/components/Event/Display/RAGStartEvent.vue +77 -0
- package/components/Event/Display/RAGSuccessStopEvent.vue +16 -0
- package/components/Event/Display/RawDataContent.vue +69 -0
- package/components/Event/Display/RerankerEvent.vue +39 -0
- package/components/Event/Display/RetrieverEvent.vue +22 -0
- package/components/Event/Display/RouterEvent.vue +54 -0
- package/components/Event/Display/StandaloneQuestionCondenserEvent.vue +38 -0
- package/components/Event/Display/StopEvent.vue +16 -0
- package/components/Event/Display/ThoughtEvent.vue +20 -0
- package/components/Event/Display/ToolEvent.vue +38 -0
- package/components/Event/Display/UnknownEvent.vue +17 -0
- package/components/Event/Display/UserMessageEvent.vue +35 -0
- package/components/Event/List/EventList.vue +249 -0
- package/components/Event/Statistics.vue +49 -0
- package/components/Event/Timeseries.vue +224 -0
- package/components/FormKit/AgentSelector.vue +307 -0
- package/components/FormKit/ChipsInput.vue +62 -0
- package/components/FormKit/DynamicConfiguration.vue +155 -0
- package/components/FormKit/IconSelector.vue +72 -0
- package/components/FormKit/KnowledgeDatabaseSelector.vue +92 -0
- package/components/FormKit/LocaleInput.vue +150 -0
- package/components/FormKit/ModelSelect.vue +110 -0
- package/components/FormKit/Repeater.vue +93 -0
- package/components/FormKit/VectorStoreInput.vue +247 -0
- package/components/Knowledge/Document/List.vue +140 -0
- package/components/Knowledge/Document/Overview.vue +28 -0
- package/components/Knowledge/Document/UploadModal.vue +298 -0
- package/components/Knowledge/Document/WithNodes.vue +105 -0
- package/components/Knowledge/Namespace/Card.vue +108 -0
- package/components/Knowledge/Namespace/CreateModal.vue +203 -0
- package/components/Knowledge/Namespace/EditModal.vue +134 -0
- package/components/Knowledge/Namespace/EmptyCard.vue +35 -0
- package/components/Knowledge/Node/Content.vue +71 -0
- package/components/Markdown/Renderer.vue +87 -0
- package/components/Memory/DetailPage.vue +48 -0
- package/components/Memory/Edit.vue +241 -0
- package/components/Memory/Graph.vue +318 -0
- package/components/Memory/List.vue +155 -0
- package/components/Memory/MemoryManagementPage.vue +178 -0
- package/components/Memory/OpenWebUIContent.vue +96 -0
- package/components/Memory/PageLayout.vue +72 -0
- package/components/Models/ModelDetailsPanel.vue +250 -0
- package/components/Models/NamespaceCard.vue +79 -0
- package/components/Navigation/Left.vue +85 -0
- package/components/Navigation/Top.vue +31 -0
- package/components/Notification/Item.vue +88 -0
- package/components/Notification/NotificationsOverlay.vue +164 -0
- package/components/Process/Card.vue +119 -0
- package/components/Process/Configuration.vue +20 -0
- package/components/Process/CreateModal.vue +276 -0
- package/components/Process/EmptyCard.vue +35 -0
- package/components/Process/Form.vue +153 -0
- package/components/Process/Starts.vue +44 -0
- package/components/Process/Walkthrough/List.vue +162 -0
- package/components/Role/AccessRulesEditor.vue +132 -0
- package/components/Role/Card.vue +68 -0
- package/components/Role/Create.vue +55 -0
- package/components/Role/Edit.vue +82 -0
- package/components/Role/UsageLimitsEditor.vue +225 -0
- package/components/Service/Selection.vue +148 -0
- package/components/Structural/Column.vue +74 -0
- package/components/Structural/Screen.vue +10 -0
- package/components/Structural/Substructure.vue +5 -0
- package/components/Tenant/Switcher.vue +102 -0
- package/components/Thread/Details.vue +135 -0
- package/components/Thread/Hierarchy.vue +136 -0
- package/components/Thread/Info.vue +41 -0
- package/components/Thread/List.vue +136 -0
- package/components/User/Bar.vue +74 -0
- package/components/User/List.vue +86 -0
- package/components/User/RoleChips.vue +83 -0
- package/components/User/Settings.vue +79 -0
- package/components/Workflow/Modal.vue +39 -0
- package/components/Workflow/NodeCard.vue +41 -0
- package/components/Workflow/StartNode.vue +24 -0
- package/components/Workflow/StepNode.vue +27 -0
- package/components/Workflow/StopNode.vue +24 -0
- package/components/Workflow/Visualization.vue +265 -0
- package/components/mdc/MarkdownFigure.vue +9 -0
- package/components/mdc/MarkdownTable.vue +9 -0
- package/components/mdc/ResolveImageComponent.vue +58 -0
- package/composables/agent/useAgentClass.ts +27 -0
- package/composables/agent/useAgentClassInstances.ts +27 -0
- package/composables/agent/useAgentClasses.ts +27 -0
- package/composables/agent/useAgentIconFromThread.ts +8 -0
- package/composables/agent/useAgentInstance.ts +28 -0
- package/composables/agent/useAgentInstanceThreads.ts +76 -0
- package/composables/agent/useAgentInstances.ts +25 -0
- package/composables/agent/useAgentNavigation.ts +35 -0
- package/composables/agent/useCreateAgentInstance.ts +33 -0
- package/composables/agent/useDeleteAgentInstance.ts +31 -0
- package/composables/agent/useUpdateAgentInstance.ts +40 -0
- package/composables/auth/useAuth.ts +54 -0
- package/composables/auth/useAuthProviders.ts +14 -0
- package/composables/chat/useChatCompletions.ts +30 -0
- package/composables/dashboard/useAgentNameFromDashboardWidget.ts +27 -0
- package/composables/dashboard/useDashboardComponent.ts +27 -0
- package/composables/dashboard/useSaveDashboard.ts +21 -0
- package/composables/document/useCreateNamespace.ts +26 -0
- package/composables/document/useDatabases.ts +23 -0
- package/composables/document/useDocument.ts +29 -0
- package/composables/document/useDocumentUrl.ts +20 -0
- package/composables/document/useDocuments.ts +107 -0
- package/composables/document/useNodes.ts +29 -0
- package/composables/document/useSummaryNodes.ts +32 -0
- package/composables/document/useUpdateNamespace.ts +22 -0
- package/composables/evaluation/useCreateDataset.ts +19 -0
- package/composables/evaluation/useDataset.ts +26 -0
- package/composables/evaluation/useDatasets.ts +25 -0
- package/composables/evaluation/useUpdateDataset.ts +23 -0
- package/composables/event/useBasicEventStatistics.ts +83 -0
- package/composables/event/useEventColor.ts +25 -0
- package/composables/event/useEventComponent.ts +87 -0
- package/composables/event/useEventTimeseries.ts +39 -0
- package/composables/event/useEventTimeseriesStats.ts +26 -0
- package/composables/file/useFileUpload.ts +91 -0
- package/composables/file/useSupportedFileTypes.ts +22 -0
- package/composables/form/useCreateInstanceForm.ts +251 -0
- package/composables/form/useFormKitTransform.ts +753 -0
- package/composables/memory/useMemoryCRUD.ts +88 -0
- package/composables/memory/useMemoryFactory.ts +319 -0
- package/composables/memory/useMemorySearchFilter.ts +74 -0
- package/composables/models/useModelsList.ts +24 -0
- package/composables/models/useSingleModel.ts +30 -0
- package/composables/notification/useNotificationPoller.ts +58 -0
- package/composables/notification/useNotifications.ts +57 -0
- package/composables/notification/useUpdateMultipleNotifications.ts +17 -0
- package/composables/notification/useUpdateNotification.ts +17 -0
- package/composables/process/useCreateProcessInstance.ts +32 -0
- package/composables/process/useDeleteProcessInstance.ts +31 -0
- package/composables/process/useProcessClasses.ts +27 -0
- package/composables/process/useProcessInstance.ts +28 -0
- package/composables/process/useProcessInstances.ts +27 -0
- package/composables/process/useProcessWalkthroughs.ts +73 -0
- package/composables/process/useSendProcessStartForm.ts +43 -0
- package/composables/process/useUpdateProcessInstance.ts +40 -0
- package/composables/role/useCreateRole.ts +19 -0
- package/composables/role/useDeleteRole.ts +21 -0
- package/composables/role/useRole.ts +30 -0
- package/composables/role/useRoles.ts +25 -0
- package/composables/role/useUpdateRole.ts +22 -0
- package/composables/suite/useApps.ts +31 -0
- package/composables/suite/useSuite.ts +26 -0
- package/composables/tenant/useActiveTenant.ts +27 -0
- package/composables/tenant/useSysadminNavigation.ts +19 -0
- package/composables/tenant/useTenant.ts +38 -0
- package/composables/tenant/useTenantMemberships.ts +15 -0
- package/composables/tenant/useTenantPath.ts +20 -0
- package/composables/tenant/useTenantPolling.ts +30 -0
- package/composables/tenant/useTenantReady.ts +12 -0
- package/composables/theme/useDarkMode.ts +5 -0
- package/composables/thread/useThread.ts +27 -0
- package/composables/thread/useThreadEvents.ts +91 -0
- package/composables/thread/useThreadUtils.ts +49 -0
- package/composables/thread/useThreads.ts +64 -0
- package/composables/thread/useThreadsInfinite.ts +56 -0
- package/composables/translation/useTranslate.ts +20 -0
- package/composables/useRouteReady.ts +21 -0
- package/composables/useTimeAgo.ts +40 -0
- package/composables/user/useAssignRoleToUser.ts +22 -0
- package/composables/user/useMyUser.ts +25 -0
- package/composables/user/useRevokeRoleFromUser.ts +21 -0
- package/composables/user/useUser.ts +30 -0
- package/composables/user/useUsers.ts +63 -0
- package/composables/utils/useJsonTree.ts +138 -0
- package/formkit.config.ts +44 -0
- package/i18n/locales/de.yaml +815 -0
- package/i18n/locales/en.yaml +804 -0
- package/i18n/locales/fr.yaml +812 -0
- package/i18n/locales/it.yaml +808 -0
- package/layouts/anonymous.vue +8 -0
- package/layouts/default.vue +116 -0
- package/middleware/auth.global.ts +62 -0
- package/nuxt.config.ts +145 -0
- package/package.json +114 -0
- package/pages/[tenant]/index.vue +31 -0
- package/pages/[tenant]/notifications/index.vue +235 -0
- package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/chat.vue +67 -0
- package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/configuration.vue +122 -0
- package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/memories/[memory_id].vue +3 -0
- package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/memories.vue +20 -0
- package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/overview.vue +72 -0
- package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/threads.vue +52 -0
- package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/workflow.vue +19 -0
- package/pages/[tenant]/service/agents/[agent_class]-[agent_id].vue +63 -0
- package/pages/[tenant]/service/agents/templates.vue +102 -0
- package/pages/[tenant]/service/agents.vue +185 -0
- package/pages/[tenant]/service/datasets/[dataset_id].vue +81 -0
- package/pages/[tenant]/service/datasets.vue +53 -0
- package/pages/[tenant]/service/health/index.vue +3 -0
- package/pages/[tenant]/service/knowledge/[db]/[namespace]/[document_id]/nodes.vue +20 -0
- package/pages/[tenant]/service/knowledge/[db]/[namespace]/[document_id]/overview.vue +40 -0
- package/pages/[tenant]/service/knowledge/[db]/[namespace]/[document_id]/summary.vue +88 -0
- package/pages/[tenant]/service/knowledge/[db]/[namespace]/[document_id].vue +48 -0
- package/pages/[tenant]/service/knowledge/[db]/[namespace].vue +144 -0
- package/pages/[tenant]/service/knowledge.vue +126 -0
- package/pages/[tenant]/service/models/[model_name].vue +84 -0
- package/pages/[tenant]/service/models.vue +61 -0
- package/pages/[tenant]/service/my-account.vue +117 -0
- package/pages/[tenant]/service/openai/[thread_id]/[display_id]/memories.vue +66 -0
- package/pages/[tenant]/service/openai/[thread_id]/[display_id]/sources.vue +100 -0
- package/pages/[tenant]/service/openai/[thread_id]/[display_id]/tracing.vue +49 -0
- package/pages/[tenant]/service/openai.vue +101 -0
- package/pages/[tenant]/service/organization-memories/graph.vue +97 -0
- package/pages/[tenant]/service/organization-memories/list/[memory_id].vue +3 -0
- package/pages/[tenant]/service/organization-memories/list.vue +150 -0
- package/pages/[tenant]/service/organization-memories.vue +3 -0
- package/pages/[tenant]/service/processes/[process_class]-[process_id]/[process_walkthrough_id].vue +7 -0
- package/pages/[tenant]/service/processes/[process_class]-[process_id]/configuration.vue +106 -0
- package/pages/[tenant]/service/processes/[process_class]-[process_id]/overview.vue +67 -0
- package/pages/[tenant]/service/processes/[process_class]-[process_id]/start.vue +26 -0
- package/pages/[tenant]/service/processes/[process_class]-[process_id]/walkthroughs/[process_walkthrough_id]/overview.vue +14 -0
- package/pages/[tenant]/service/processes/[process_class]-[process_id]/walkthroughs.vue +54 -0
- package/pages/[tenant]/service/processes/[process_class]-[process_id].vue +60 -0
- package/pages/[tenant]/service/processes.vue +129 -0
- package/pages/[tenant]/service/roles/[role_id].vue +54 -0
- package/pages/[tenant]/service/roles.vue +84 -0
- package/pages/[tenant]/service/threads/[thread_id]/chat.vue +51 -0
- package/pages/[tenant]/service/threads/[thread_id]/display/[display_id].vue +21 -0
- package/pages/[tenant]/service/threads/[thread_id]/display.vue +29 -0
- package/pages/[tenant]/service/threads/[thread_id]/hierarchy.vue +14 -0
- package/pages/[tenant]/service/threads/[thread_id]/memories/[memory_id].vue +3 -0
- package/pages/[tenant]/service/threads/[thread_id]/memories.vue +19 -0
- package/pages/[tenant]/service/threads/[thread_id]/overview.vue +100 -0
- package/pages/[tenant]/service/threads/[thread_id].vue +54 -0
- package/pages/[tenant]/service/threads.vue +52 -0
- package/pages/[tenant]/service/user-memories/graph.vue +97 -0
- package/pages/[tenant]/service/user-memories/list/[memory_id].vue +3 -0
- package/pages/[tenant]/service/user-memories/list.vue +150 -0
- package/pages/[tenant]/service/user-memories.vue +3 -0
- package/pages/[tenant]/service/users/[user_id].vue +117 -0
- package/pages/[tenant]/service/users.vue +88 -0
- package/pages/auth/callback.vue +52 -0
- package/pages/auth/login.vue +80 -0
- package/pages/auth/renew.vue +24 -0
- package/pages/index.vue +59 -0
- package/pages/select-tenant.vue +76 -0
- package/plugins/0.runtime-config.client.ts +55 -0
- package/plugins/apexcharts.client.ts +5 -0
- package/plugins/api-client.client.ts +38 -0
- package/plugins/dark-mode.client.ts +12 -0
- package/plugins/keycloak-client.ts +41 -0
- package/plugins/oidc-client.ts +78 -0
- package/sdk/client/client/client.gen.ts +237 -0
- package/sdk/client/client/index.ts +24 -0
- package/sdk/client/client/types.gen.ts +213 -0
- package/sdk/client/client/utils.gen.ts +407 -0
- package/sdk/client/client.gen.ts +25 -0
- package/sdk/client/core/auth.gen.ts +42 -0
- package/sdk/client/core/bodySerializer.gen.ts +96 -0
- package/sdk/client/core/params.gen.ts +181 -0
- package/sdk/client/core/pathSerializer.gen.ts +180 -0
- package/sdk/client/core/queryKeySerializer.gen.ts +136 -0
- package/sdk/client/core/serverSentEvents.gen.ts +265 -0
- package/sdk/client/core/types.gen.ts +118 -0
- package/sdk/client/core/utils.gen.ts +143 -0
- package/sdk/client/index.ts +1013 -0
- package/sdk/client/schemas.gen.ts +35395 -0
- package/sdk/client/sdk.gen.ts +3438 -0
- package/sdk/client/transformers.gen.ts +143 -0
- package/sdk/client/types.gen.ts +27567 -0
- package/tailwind.config.mjs +27 -0
- package/themes/aihub-theme.ts +125 -0
- package/types/DashboardWidget.ts +13 -0
- package/types/EventChartInput.ts +7 -0
- package/types/NavItem.ts +6 -0
- package/types/TimeseriesInput.ts +7 -0
|
@@ -0,0 +1,1013 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
|
|
3
|
+
export {
|
|
4
|
+
addAgentToThread,
|
|
5
|
+
addUserToThread,
|
|
6
|
+
assignRole,
|
|
7
|
+
chatCompletionWithAssistants,
|
|
8
|
+
createAgentInstance,
|
|
9
|
+
createDataset,
|
|
10
|
+
createNamespace,
|
|
11
|
+
createProcessInstance,
|
|
12
|
+
createRole,
|
|
13
|
+
createSpeech,
|
|
14
|
+
createThread,
|
|
15
|
+
createTokenEndpoint,
|
|
16
|
+
createTranscription,
|
|
17
|
+
deleteAgentInstance,
|
|
18
|
+
deleteAllOrganizationMemories,
|
|
19
|
+
deleteAllUserMemories,
|
|
20
|
+
deleteOrganizationMemory,
|
|
21
|
+
deleteProcessInstance,
|
|
22
|
+
deleteRole,
|
|
23
|
+
deleteUserMemory,
|
|
24
|
+
generateImage,
|
|
25
|
+
getAgentClass,
|
|
26
|
+
getAgentClasses,
|
|
27
|
+
getAgentClassInstances,
|
|
28
|
+
getAgentEventsInThread,
|
|
29
|
+
getAgentEventTimeseries,
|
|
30
|
+
getAgentInstance,
|
|
31
|
+
getAgentInstanceThreads,
|
|
32
|
+
getAllAgentInstances,
|
|
33
|
+
getAllProcessInstances,
|
|
34
|
+
getAnonymousFileRedirect,
|
|
35
|
+
getAnonymousFileUrl,
|
|
36
|
+
getAuthProviders,
|
|
37
|
+
getDatabases,
|
|
38
|
+
getDataset,
|
|
39
|
+
getDatasets,
|
|
40
|
+
getDocumentById,
|
|
41
|
+
getDocumentsForNamespace,
|
|
42
|
+
getDocumentUrl,
|
|
43
|
+
getEmbeddings,
|
|
44
|
+
getFileUrl,
|
|
45
|
+
getHealth,
|
|
46
|
+
getLitellmModel,
|
|
47
|
+
getLitellmModels,
|
|
48
|
+
getLitellmModelsByMode,
|
|
49
|
+
getLocale,
|
|
50
|
+
getModels,
|
|
51
|
+
getModelWithAssistants,
|
|
52
|
+
getMyAccount,
|
|
53
|
+
getMyActiveTenant,
|
|
54
|
+
getMyDashboard,
|
|
55
|
+
getMyIdentity,
|
|
56
|
+
getMyTenants,
|
|
57
|
+
getNodesForDocument,
|
|
58
|
+
getNotifications,
|
|
59
|
+
getOpenChatHitl,
|
|
60
|
+
getOrganizationMemories,
|
|
61
|
+
getProcessClass,
|
|
62
|
+
getProcessClasses,
|
|
63
|
+
getProcessClassInstances,
|
|
64
|
+
getProcessInstance,
|
|
65
|
+
getProcessOpenForms,
|
|
66
|
+
getProcessStartForms,
|
|
67
|
+
getProcessWalkthroughs,
|
|
68
|
+
getReady,
|
|
69
|
+
getRole,
|
|
70
|
+
getRoles,
|
|
71
|
+
getSuite,
|
|
72
|
+
getSummaryNodesForDocument,
|
|
73
|
+
getSupportedFileTypes,
|
|
74
|
+
getThread,
|
|
75
|
+
getUser,
|
|
76
|
+
getUserMemories,
|
|
77
|
+
getUsers,
|
|
78
|
+
getUserThreads,
|
|
79
|
+
initiateDocumentUpload,
|
|
80
|
+
initiateFileUpload,
|
|
81
|
+
listTokensEndpoint,
|
|
82
|
+
type Options,
|
|
83
|
+
processDocument,
|
|
84
|
+
receiveOpenwebuiWebhook,
|
|
85
|
+
removeAgentFromThread,
|
|
86
|
+
removeUserFromThread,
|
|
87
|
+
revokeRole,
|
|
88
|
+
revokeTokenEndpoint,
|
|
89
|
+
searchOrganizationMemories,
|
|
90
|
+
searchUserMemories,
|
|
91
|
+
sendProcessOpenForm,
|
|
92
|
+
sendProcessStartForm,
|
|
93
|
+
setMyActiveTenant,
|
|
94
|
+
translateText,
|
|
95
|
+
updateAgentInstance,
|
|
96
|
+
updateDataset,
|
|
97
|
+
updateMyDashboard,
|
|
98
|
+
updateNamespace,
|
|
99
|
+
updateNotification,
|
|
100
|
+
updateNotificationsBulk,
|
|
101
|
+
updateOrganizationMemory,
|
|
102
|
+
updateProcessInstance,
|
|
103
|
+
updateRole,
|
|
104
|
+
updateUserMemory,
|
|
105
|
+
validateDocumentUpload,
|
|
106
|
+
validateFileUpload,
|
|
107
|
+
} from "./sdk.gen";
|
|
108
|
+
export {
|
|
109
|
+
type Access,
|
|
110
|
+
AccessLevel,
|
|
111
|
+
type ActiveTenantDto,
|
|
112
|
+
type AddAgentRequest,
|
|
113
|
+
type AddAgentToThreadData,
|
|
114
|
+
type AddAgentToThreadError,
|
|
115
|
+
type AddAgentToThreadErrors,
|
|
116
|
+
type AddAgentToThreadResponse,
|
|
117
|
+
type AddAgentToThreadResponses,
|
|
118
|
+
type AddMemoryToChatHistoryEvent,
|
|
119
|
+
type AddMemoryToChatHistoryEventWritable,
|
|
120
|
+
type AddOrganizationMemoryToChatHistoryEvent,
|
|
121
|
+
type AddOrganizationMemoryToChatHistoryEventWritable,
|
|
122
|
+
type AddUserMemoryToChatHistoryEvent,
|
|
123
|
+
type AddUserMemoryToChatHistoryEventWritable,
|
|
124
|
+
type AddUserRequest,
|
|
125
|
+
type AddUserToThreadData,
|
|
126
|
+
type AddUserToThreadError,
|
|
127
|
+
type AddUserToThreadErrors,
|
|
128
|
+
type AddUserToThreadResponse,
|
|
129
|
+
type AddUserToThreadResponses,
|
|
130
|
+
type AgentClassDto,
|
|
131
|
+
type AgentClassDtoWritable,
|
|
132
|
+
type AgentConfigDto,
|
|
133
|
+
type AgentConfigDtoWritable,
|
|
134
|
+
type AgentConfigSpecs,
|
|
135
|
+
type AgentEvent,
|
|
136
|
+
type AgentEventWritable,
|
|
137
|
+
type AgentFileUploadRequest,
|
|
138
|
+
type AgentFileUploadResponse,
|
|
139
|
+
type AgentFileValidationRequest,
|
|
140
|
+
type AgentFileValidationResponse,
|
|
141
|
+
type AgentHealthChecks,
|
|
142
|
+
type AgentInSpecs,
|
|
143
|
+
type AgentInstanceTopic,
|
|
144
|
+
type AgentInTheLoopExceptionEvent,
|
|
145
|
+
type AgentInTheLoopExceptionEventWritable,
|
|
146
|
+
type AgentInTheLoopRequestEvent,
|
|
147
|
+
type AgentInTheLoopRequestEventWritable,
|
|
148
|
+
type AgentInTheLoopResponseEvent,
|
|
149
|
+
type AgentInTheLoopResponseEventWritable,
|
|
150
|
+
type AgentProcessStepDto,
|
|
151
|
+
type AgentProcessStepDtoWritable,
|
|
152
|
+
type AgentSelector,
|
|
153
|
+
type AgentSelectorWritable,
|
|
154
|
+
type AgentSuitabilityAcceptEvent,
|
|
155
|
+
type AgentSuitabilityAcceptEventWritable,
|
|
156
|
+
type AgentSuitabilityRejectEvent,
|
|
157
|
+
type AgentSuitabilityRejectEventWritable,
|
|
158
|
+
type AgentWorkRequestDto,
|
|
159
|
+
type AgentWorkRequestDtoWritable,
|
|
160
|
+
type AgentWorkResponseDto,
|
|
161
|
+
type AgentWorkResponseDtoWritable,
|
|
162
|
+
type Annotation,
|
|
163
|
+
type AnnotationUrlCitation,
|
|
164
|
+
type ApiHealthChecks,
|
|
165
|
+
type AssignRoleData,
|
|
166
|
+
type AssignRoleError,
|
|
167
|
+
type AssignRoleErrors,
|
|
168
|
+
type AssignRoleRequest,
|
|
169
|
+
type AssignRoleResponse,
|
|
170
|
+
type AssignRoleResponses,
|
|
171
|
+
type Audio,
|
|
172
|
+
type AudioBlock,
|
|
173
|
+
type AudioContent,
|
|
174
|
+
type AuthProviderResponse,
|
|
175
|
+
type BaseRetrieveMemoryEvent,
|
|
176
|
+
type BaseRetrieveMemoryEventWritable,
|
|
177
|
+
type BaseStoreMemoryEvent,
|
|
178
|
+
type BaseStoreMemoryEventWritable,
|
|
179
|
+
type BodyCreateTranscriptionTenantIdOpenaiAudioTranscriptionsPost,
|
|
180
|
+
type BucketMetadataFilters,
|
|
181
|
+
type BucketNamespacePair,
|
|
182
|
+
type BulkUpdateNotificationRequest,
|
|
183
|
+
type CacheControl,
|
|
184
|
+
type CachePoint,
|
|
185
|
+
type CascadeSelect,
|
|
186
|
+
type CascadeSelectWritable,
|
|
187
|
+
type ChainEvent,
|
|
188
|
+
type ChainEventWritable,
|
|
189
|
+
type ChatCompletion,
|
|
190
|
+
type ChatCompletionAllowedToolChoiceParam,
|
|
191
|
+
type ChatCompletionAllowedToolsParam,
|
|
192
|
+
type ChatCompletionAssistantMessageParam,
|
|
193
|
+
type ChatCompletionAudio,
|
|
194
|
+
type ChatCompletionAudioParam,
|
|
195
|
+
type ChatCompletionContentPartImageParam,
|
|
196
|
+
type ChatCompletionContentPartInputAudioParam,
|
|
197
|
+
type ChatCompletionContentPartRefusalParam,
|
|
198
|
+
type ChatCompletionContentPartTextParam,
|
|
199
|
+
type ChatCompletionDeveloperMessageParam,
|
|
200
|
+
type ChatCompletionFunctionCallOptionParam,
|
|
201
|
+
type ChatCompletionFunctionMessageParam,
|
|
202
|
+
type ChatCompletionFunctionToolParam,
|
|
203
|
+
type ChatCompletionMessage,
|
|
204
|
+
type ChatCompletionMessageCustomToolCall,
|
|
205
|
+
type ChatCompletionMessageCustomToolCallParam,
|
|
206
|
+
type ChatCompletionMessageFunctionToolCall,
|
|
207
|
+
type ChatCompletionMessageFunctionToolCallParam,
|
|
208
|
+
type ChatCompletionNamedToolChoiceCustomParam,
|
|
209
|
+
type ChatCompletionNamedToolChoiceParam,
|
|
210
|
+
type ChatCompletionPredictionContentParam,
|
|
211
|
+
type ChatCompletionRequest,
|
|
212
|
+
type ChatCompletionStreamOptionsParam,
|
|
213
|
+
type ChatCompletionSystemMessageParam,
|
|
214
|
+
type ChatCompletionTokenLogprob,
|
|
215
|
+
type ChatCompletionToolMessageParam,
|
|
216
|
+
type ChatCompletionUserMessageParam,
|
|
217
|
+
type ChatCompletionWithAssistantsData,
|
|
218
|
+
type ChatCompletionWithAssistantsError,
|
|
219
|
+
type ChatCompletionWithAssistantsErrors,
|
|
220
|
+
type ChatCompletionWithAssistantsResponse,
|
|
221
|
+
type ChatCompletionWithAssistantsResponses,
|
|
222
|
+
type ChatMessage,
|
|
223
|
+
type Checkbox,
|
|
224
|
+
type CheckboxWritable,
|
|
225
|
+
type ChipsInput,
|
|
226
|
+
type ChipsInputWritable,
|
|
227
|
+
type Choice,
|
|
228
|
+
type ChoiceLogprobs,
|
|
229
|
+
type ChunkEvent,
|
|
230
|
+
type ChunkEventWritable,
|
|
231
|
+
type CitableBlock,
|
|
232
|
+
type CitationBlock,
|
|
233
|
+
type ClientOptions,
|
|
234
|
+
type ColorPicker,
|
|
235
|
+
type ColorPickerWritable,
|
|
236
|
+
type CompletionTokensDetails,
|
|
237
|
+
type CompletionUsage,
|
|
238
|
+
type ContextInsufficientRejectEvent,
|
|
239
|
+
type ContextInsufficientRejectEventWritable,
|
|
240
|
+
type ContextSufficientAcceptEvent,
|
|
241
|
+
type ContextSufficientAcceptEventWritable,
|
|
242
|
+
type ContextualizedAgentEvent,
|
|
243
|
+
type ContextualizedAgentEventWritable,
|
|
244
|
+
type ControlEvent,
|
|
245
|
+
type ControlEventWritable,
|
|
246
|
+
type CreateAgentInstanceData,
|
|
247
|
+
type CreateAgentInstanceError,
|
|
248
|
+
type CreateAgentInstanceErrors,
|
|
249
|
+
type CreateAgentInstanceRequest,
|
|
250
|
+
type CreateAgentInstanceResponse,
|
|
251
|
+
type CreateAgentInstanceResponses,
|
|
252
|
+
type CreateDatasetData,
|
|
253
|
+
type CreateDatasetError,
|
|
254
|
+
type CreateDatasetErrors,
|
|
255
|
+
type CreateDatasetResponse,
|
|
256
|
+
type CreateDatasetResponses,
|
|
257
|
+
type CreateNamespaceData,
|
|
258
|
+
type CreateNamespaceError,
|
|
259
|
+
type CreateNamespaceErrors,
|
|
260
|
+
type CreateNamespaceRequest,
|
|
261
|
+
type CreateNamespaceResponse,
|
|
262
|
+
type CreateNamespaceResponses,
|
|
263
|
+
type CreateProcessInstanceData,
|
|
264
|
+
type CreateProcessInstanceError,
|
|
265
|
+
type CreateProcessInstanceErrors,
|
|
266
|
+
type CreateProcessInstanceRequest,
|
|
267
|
+
type CreateProcessInstanceResponse,
|
|
268
|
+
type CreateProcessInstanceResponses,
|
|
269
|
+
type CreateRoleData,
|
|
270
|
+
type CreateRoleError,
|
|
271
|
+
type CreateRoleErrors,
|
|
272
|
+
type CreateRoleRequest,
|
|
273
|
+
type CreateRoleResponse,
|
|
274
|
+
type CreateRoleResponses,
|
|
275
|
+
type CreateSpeechData,
|
|
276
|
+
type CreateSpeechError,
|
|
277
|
+
type CreateSpeechErrors,
|
|
278
|
+
type CreateSpeechResponses,
|
|
279
|
+
type CreateThreadData,
|
|
280
|
+
type CreateThreadError,
|
|
281
|
+
type CreateThreadErrors,
|
|
282
|
+
type CreateThreadRequest,
|
|
283
|
+
type CreateThreadResponse,
|
|
284
|
+
type CreateThreadResponses,
|
|
285
|
+
type CreateTokenEndpointData,
|
|
286
|
+
type CreateTokenEndpointError,
|
|
287
|
+
type CreateTokenEndpointErrors,
|
|
288
|
+
type CreateTokenEndpointResponse,
|
|
289
|
+
type CreateTokenEndpointResponses,
|
|
290
|
+
type CreateTokenRequest,
|
|
291
|
+
type CreateTokenResponse,
|
|
292
|
+
type CreateTranscriptionData,
|
|
293
|
+
type CreateTranscriptionError,
|
|
294
|
+
type CreateTranscriptionErrors,
|
|
295
|
+
type CreateTranscriptionResponse,
|
|
296
|
+
type CreateTranscriptionResponses,
|
|
297
|
+
type CustomOutput,
|
|
298
|
+
type DashboardDto,
|
|
299
|
+
type DashboardItemDto,
|
|
300
|
+
type DatabaseDto,
|
|
301
|
+
type Dataset,
|
|
302
|
+
type DatasetCreate,
|
|
303
|
+
type DatasetItem,
|
|
304
|
+
type DatasetItemCreate,
|
|
305
|
+
type DatasetUpdate,
|
|
306
|
+
type DatePicker,
|
|
307
|
+
type DatePickerWritable,
|
|
308
|
+
type DeleteAgentInstanceData,
|
|
309
|
+
type DeleteAgentInstanceError,
|
|
310
|
+
type DeleteAgentInstanceErrors,
|
|
311
|
+
type DeleteAgentInstanceResponse,
|
|
312
|
+
type DeleteAgentInstanceResponses,
|
|
313
|
+
type DeleteAllMemoriesResponse,
|
|
314
|
+
type DeleteAllOrganizationMemoriesData,
|
|
315
|
+
type DeleteAllOrganizationMemoriesResponse,
|
|
316
|
+
type DeleteAllOrganizationMemoriesResponses,
|
|
317
|
+
type DeleteAllUserMemoriesData,
|
|
318
|
+
type DeleteAllUserMemoriesResponse,
|
|
319
|
+
type DeleteAllUserMemoriesResponses,
|
|
320
|
+
type DeleteMemoryResponse,
|
|
321
|
+
type DeleteOrganizationMemoryData,
|
|
322
|
+
type DeleteOrganizationMemoryError,
|
|
323
|
+
type DeleteOrganizationMemoryErrors,
|
|
324
|
+
type DeleteOrganizationMemoryResponse,
|
|
325
|
+
type DeleteOrganizationMemoryResponses,
|
|
326
|
+
type DeleteProcessInstanceData,
|
|
327
|
+
type DeleteProcessInstanceError,
|
|
328
|
+
type DeleteProcessInstanceErrors,
|
|
329
|
+
type DeleteProcessInstanceResponse,
|
|
330
|
+
type DeleteProcessInstanceResponses,
|
|
331
|
+
type DeleteRoleData,
|
|
332
|
+
type DeleteRoleError,
|
|
333
|
+
type DeleteRoleErrors,
|
|
334
|
+
type DeleteRoleResponse,
|
|
335
|
+
type DeleteRoleResponse2,
|
|
336
|
+
type DeleteRoleResponses,
|
|
337
|
+
type DeleteUserMemoryData,
|
|
338
|
+
type DeleteUserMemoryError,
|
|
339
|
+
type DeleteUserMemoryErrors,
|
|
340
|
+
type DeleteUserMemoryResponse,
|
|
341
|
+
type DeleteUserMemoryResponses,
|
|
342
|
+
type DisplayEvent,
|
|
343
|
+
type DisplayEventWritable,
|
|
344
|
+
type DisplayStatistics,
|
|
345
|
+
type DisplayStatisticsWritable,
|
|
346
|
+
type DocumentBlock,
|
|
347
|
+
type DocumentDto,
|
|
348
|
+
type DocumentParsingMetadata,
|
|
349
|
+
type DocumentParsingResponse,
|
|
350
|
+
type DocumentUploadRequest,
|
|
351
|
+
type DocumentUploadResponse,
|
|
352
|
+
type DocumentUploadValidationRequest,
|
|
353
|
+
type DocumentUploadValidationResponse,
|
|
354
|
+
type EdgeData,
|
|
355
|
+
type Embedding,
|
|
356
|
+
type EmbeddingEvent,
|
|
357
|
+
type EmbeddingEventWritable,
|
|
358
|
+
type Embeddings,
|
|
359
|
+
type EmbeddingsRequest,
|
|
360
|
+
type EmbeddingsResponse,
|
|
361
|
+
type EventBucket,
|
|
362
|
+
type EventSpecs,
|
|
363
|
+
type EventTimeseries,
|
|
364
|
+
type ExceptionEvent,
|
|
365
|
+
type ExceptionEventWritable,
|
|
366
|
+
type FewShotAcceptEvent,
|
|
367
|
+
type FewShotAcceptEventWritable,
|
|
368
|
+
type FewShotRejectEvent,
|
|
369
|
+
type FewShotRejectEventWritable,
|
|
370
|
+
type File,
|
|
371
|
+
type FileFile,
|
|
372
|
+
type FullAgentInstanceDto,
|
|
373
|
+
type FullAgentInstanceDtoWritable,
|
|
374
|
+
type FullProcessInstanceDto,
|
|
375
|
+
type FullProcessInstanceDtoWritable,
|
|
376
|
+
type FunctionCall,
|
|
377
|
+
type FunctionDefinition,
|
|
378
|
+
type FunctionOutput,
|
|
379
|
+
type GenerateImageData,
|
|
380
|
+
type GenerateImageError,
|
|
381
|
+
type GenerateImageErrors,
|
|
382
|
+
type GenerateImageResponse,
|
|
383
|
+
type GenerateImageResponses,
|
|
384
|
+
type GetAgentClassData,
|
|
385
|
+
type GetAgentClassError,
|
|
386
|
+
type GetAgentClassErrors,
|
|
387
|
+
type GetAgentClassesData,
|
|
388
|
+
type GetAgentClassesError,
|
|
389
|
+
type GetAgentClassesErrors,
|
|
390
|
+
type GetAgentClassesResponse,
|
|
391
|
+
type GetAgentClassesResponses,
|
|
392
|
+
type GetAgentClassInstancesData,
|
|
393
|
+
type GetAgentClassInstancesError,
|
|
394
|
+
type GetAgentClassInstancesErrors,
|
|
395
|
+
type GetAgentClassInstancesResponse,
|
|
396
|
+
type GetAgentClassInstancesResponses,
|
|
397
|
+
type GetAgentClassResponse,
|
|
398
|
+
type GetAgentClassResponses,
|
|
399
|
+
type GetAgentEventsInThreadData,
|
|
400
|
+
type GetAgentEventsInThreadError,
|
|
401
|
+
type GetAgentEventsInThreadErrors,
|
|
402
|
+
type GetAgentEventsInThreadResponse,
|
|
403
|
+
type GetAgentEventsInThreadResponses,
|
|
404
|
+
type GetAgentEventTimeseriesData,
|
|
405
|
+
type GetAgentEventTimeseriesError,
|
|
406
|
+
type GetAgentEventTimeseriesErrors,
|
|
407
|
+
type GetAgentEventTimeseriesResponse,
|
|
408
|
+
type GetAgentEventTimeseriesResponses,
|
|
409
|
+
type GetAgentInstanceData,
|
|
410
|
+
type GetAgentInstanceError,
|
|
411
|
+
type GetAgentInstanceErrors,
|
|
412
|
+
type GetAgentInstanceResponse,
|
|
413
|
+
type GetAgentInstanceResponses,
|
|
414
|
+
type GetAgentInstanceThreadsData,
|
|
415
|
+
type GetAgentInstanceThreadsError,
|
|
416
|
+
type GetAgentInstanceThreadsErrors,
|
|
417
|
+
type GetAgentInstanceThreadsResponse,
|
|
418
|
+
type GetAgentInstanceThreadsResponses,
|
|
419
|
+
type GetAllAgentInstancesData,
|
|
420
|
+
type GetAllAgentInstancesError,
|
|
421
|
+
type GetAllAgentInstancesErrors,
|
|
422
|
+
type GetAllAgentInstancesResponse,
|
|
423
|
+
type GetAllAgentInstancesResponses,
|
|
424
|
+
type GetAllProcessInstancesData,
|
|
425
|
+
type GetAllProcessInstancesError,
|
|
426
|
+
type GetAllProcessInstancesErrors,
|
|
427
|
+
type GetAllProcessInstancesResponse,
|
|
428
|
+
type GetAllProcessInstancesResponses,
|
|
429
|
+
type GetAnonymousFileRedirectData,
|
|
430
|
+
type GetAnonymousFileRedirectError,
|
|
431
|
+
type GetAnonymousFileRedirectErrors,
|
|
432
|
+
type GetAnonymousFileRedirectResponses,
|
|
433
|
+
type GetAnonymousFileUrlData,
|
|
434
|
+
type GetAnonymousFileUrlError,
|
|
435
|
+
type GetAnonymousFileUrlErrors,
|
|
436
|
+
type GetAnonymousFileUrlResponses,
|
|
437
|
+
type GetAuthProvidersData,
|
|
438
|
+
type GetAuthProvidersResponse,
|
|
439
|
+
type GetAuthProvidersResponses,
|
|
440
|
+
type GetDatabasesData,
|
|
441
|
+
type GetDatabasesResponse,
|
|
442
|
+
type GetDatabasesResponses,
|
|
443
|
+
type GetDatasetData,
|
|
444
|
+
type GetDatasetError,
|
|
445
|
+
type GetDatasetErrors,
|
|
446
|
+
type GetDatasetResponse,
|
|
447
|
+
type GetDatasetResponses,
|
|
448
|
+
type GetDatasetsData,
|
|
449
|
+
type GetDatasetsResponse,
|
|
450
|
+
type GetDatasetsResponses,
|
|
451
|
+
type GetDocumentByIdData,
|
|
452
|
+
type GetDocumentByIdError,
|
|
453
|
+
type GetDocumentByIdErrors,
|
|
454
|
+
type GetDocumentByIdResponse,
|
|
455
|
+
type GetDocumentByIdResponses,
|
|
456
|
+
type GetDocumentsForNamespaceData,
|
|
457
|
+
type GetDocumentsForNamespaceError,
|
|
458
|
+
type GetDocumentsForNamespaceErrors,
|
|
459
|
+
type GetDocumentsForNamespaceResponse,
|
|
460
|
+
type GetDocumentsForNamespaceResponses,
|
|
461
|
+
type GetDocumentUrlData,
|
|
462
|
+
type GetDocumentUrlError,
|
|
463
|
+
type GetDocumentUrlErrors,
|
|
464
|
+
type GetDocumentUrlResponse,
|
|
465
|
+
type GetDocumentUrlResponses,
|
|
466
|
+
type GetEmbeddingsData,
|
|
467
|
+
type GetEmbeddingsError,
|
|
468
|
+
type GetEmbeddingsErrors,
|
|
469
|
+
type GetEmbeddingsResponse,
|
|
470
|
+
type GetEmbeddingsResponses,
|
|
471
|
+
type GetFileUrlData,
|
|
472
|
+
type GetFileUrlError,
|
|
473
|
+
type GetFileUrlErrors,
|
|
474
|
+
type GetFileUrlResponse,
|
|
475
|
+
type GetFileUrlResponses,
|
|
476
|
+
type GetHealthData,
|
|
477
|
+
type GetHealthResponse,
|
|
478
|
+
type GetHealthResponses,
|
|
479
|
+
type GetLitellmModelData,
|
|
480
|
+
type GetLitellmModelError,
|
|
481
|
+
type GetLitellmModelErrors,
|
|
482
|
+
type GetLitellmModelResponse,
|
|
483
|
+
type GetLitellmModelResponses,
|
|
484
|
+
type GetLitellmModelsByModeData,
|
|
485
|
+
type GetLitellmModelsByModeError,
|
|
486
|
+
type GetLitellmModelsByModeErrors,
|
|
487
|
+
type GetLitellmModelsByModeResponse,
|
|
488
|
+
type GetLitellmModelsByModeResponses,
|
|
489
|
+
type GetLitellmModelsData,
|
|
490
|
+
type GetLitellmModelsResponse,
|
|
491
|
+
type GetLitellmModelsResponses,
|
|
492
|
+
type GetLocaleData,
|
|
493
|
+
type GetLocaleResponse,
|
|
494
|
+
type GetLocaleResponses,
|
|
495
|
+
type GetModelsData,
|
|
496
|
+
type GetModelsResponse,
|
|
497
|
+
type GetModelsResponses,
|
|
498
|
+
type GetModelWithAssistantsData,
|
|
499
|
+
type GetModelWithAssistantsError,
|
|
500
|
+
type GetModelWithAssistantsErrors,
|
|
501
|
+
type GetModelWithAssistantsResponse,
|
|
502
|
+
type GetModelWithAssistantsResponses,
|
|
503
|
+
type GetMyAccountData,
|
|
504
|
+
type GetMyAccountResponse,
|
|
505
|
+
type GetMyAccountResponses,
|
|
506
|
+
type GetMyActiveTenantData,
|
|
507
|
+
type GetMyActiveTenantResponse,
|
|
508
|
+
type GetMyActiveTenantResponses,
|
|
509
|
+
type GetMyDashboardData,
|
|
510
|
+
type GetMyDashboardResponse,
|
|
511
|
+
type GetMyDashboardResponses,
|
|
512
|
+
type GetMyIdentityData,
|
|
513
|
+
type GetMyIdentityResponse,
|
|
514
|
+
type GetMyIdentityResponses,
|
|
515
|
+
type GetMyTenantsData,
|
|
516
|
+
type GetMyTenantsResponse,
|
|
517
|
+
type GetMyTenantsResponses,
|
|
518
|
+
type GetNodesForDocumentData,
|
|
519
|
+
type GetNodesForDocumentError,
|
|
520
|
+
type GetNodesForDocumentErrors,
|
|
521
|
+
type GetNodesForDocumentResponse,
|
|
522
|
+
type GetNodesForDocumentResponses,
|
|
523
|
+
type GetNotificationsData,
|
|
524
|
+
type GetNotificationsError,
|
|
525
|
+
type GetNotificationsErrors,
|
|
526
|
+
type GetNotificationsResponse,
|
|
527
|
+
type GetNotificationsResponses,
|
|
528
|
+
type GetOpenChatHitlData,
|
|
529
|
+
type GetOpenChatHitlError,
|
|
530
|
+
type GetOpenChatHitlErrors,
|
|
531
|
+
type GetOpenChatHitlResponse,
|
|
532
|
+
type GetOpenChatHitlResponses,
|
|
533
|
+
type GetOrganizationMemoriesData,
|
|
534
|
+
type GetOrganizationMemoriesError,
|
|
535
|
+
type GetOrganizationMemoriesErrors,
|
|
536
|
+
type GetOrganizationMemoriesResponse,
|
|
537
|
+
type GetOrganizationMemoriesResponses,
|
|
538
|
+
type GetProcessClassData,
|
|
539
|
+
type GetProcessClassError,
|
|
540
|
+
type GetProcessClassErrors,
|
|
541
|
+
type GetProcessClassesData,
|
|
542
|
+
type GetProcessClassesError,
|
|
543
|
+
type GetProcessClassesErrors,
|
|
544
|
+
type GetProcessClassesResponse,
|
|
545
|
+
type GetProcessClassesResponses,
|
|
546
|
+
type GetProcessClassInstancesData,
|
|
547
|
+
type GetProcessClassInstancesError,
|
|
548
|
+
type GetProcessClassInstancesErrors,
|
|
549
|
+
type GetProcessClassInstancesResponse,
|
|
550
|
+
type GetProcessClassInstancesResponses,
|
|
551
|
+
type GetProcessClassResponse,
|
|
552
|
+
type GetProcessClassResponses,
|
|
553
|
+
type GetProcessInstanceData,
|
|
554
|
+
type GetProcessInstanceError,
|
|
555
|
+
type GetProcessInstanceErrors,
|
|
556
|
+
type GetProcessInstanceResponse,
|
|
557
|
+
type GetProcessInstanceResponses,
|
|
558
|
+
type GetProcessOpenFormsData,
|
|
559
|
+
type GetProcessOpenFormsError,
|
|
560
|
+
type GetProcessOpenFormsErrors,
|
|
561
|
+
type GetProcessOpenFormsResponse,
|
|
562
|
+
type GetProcessOpenFormsResponses,
|
|
563
|
+
type GetProcessStartFormsData,
|
|
564
|
+
type GetProcessStartFormsError,
|
|
565
|
+
type GetProcessStartFormsErrors,
|
|
566
|
+
type GetProcessStartFormsResponse,
|
|
567
|
+
type GetProcessStartFormsResponses,
|
|
568
|
+
type GetProcessWalkthroughsData,
|
|
569
|
+
type GetProcessWalkthroughsError,
|
|
570
|
+
type GetProcessWalkthroughsErrors,
|
|
571
|
+
type GetProcessWalkthroughsResponse,
|
|
572
|
+
type GetProcessWalkthroughsResponses,
|
|
573
|
+
type GetReadyData,
|
|
574
|
+
type GetReadyResponse,
|
|
575
|
+
type GetReadyResponses,
|
|
576
|
+
type GetRoleData,
|
|
577
|
+
type GetRoleError,
|
|
578
|
+
type GetRoleErrors,
|
|
579
|
+
type GetRoleResponse,
|
|
580
|
+
type GetRoleResponses,
|
|
581
|
+
type GetRolesData,
|
|
582
|
+
type GetRolesResponse,
|
|
583
|
+
type GetRolesResponses,
|
|
584
|
+
type GetSuiteData,
|
|
585
|
+
type GetSuiteResponse,
|
|
586
|
+
type GetSuiteResponses,
|
|
587
|
+
type GetSummaryNodesForDocumentData,
|
|
588
|
+
type GetSummaryNodesForDocumentError,
|
|
589
|
+
type GetSummaryNodesForDocumentErrors,
|
|
590
|
+
type GetSummaryNodesForDocumentResponse,
|
|
591
|
+
type GetSummaryNodesForDocumentResponses,
|
|
592
|
+
type GetSupportedFileTypesData,
|
|
593
|
+
type GetSupportedFileTypesResponse,
|
|
594
|
+
type GetSupportedFileTypesResponses,
|
|
595
|
+
type GetThreadData,
|
|
596
|
+
type GetThreadError,
|
|
597
|
+
type GetThreadErrors,
|
|
598
|
+
type GetThreadResponse,
|
|
599
|
+
type GetThreadResponses,
|
|
600
|
+
type GetUserData,
|
|
601
|
+
type GetUserError,
|
|
602
|
+
type GetUserErrors,
|
|
603
|
+
type GetUserMemoriesData,
|
|
604
|
+
type GetUserMemoriesError,
|
|
605
|
+
type GetUserMemoriesErrors,
|
|
606
|
+
type GetUserMemoriesResponse,
|
|
607
|
+
type GetUserMemoriesResponses,
|
|
608
|
+
type GetUserResponse,
|
|
609
|
+
type GetUserResponses,
|
|
610
|
+
type GetUsersData,
|
|
611
|
+
type GetUsersError,
|
|
612
|
+
type GetUsersErrors,
|
|
613
|
+
type GetUsersResponse,
|
|
614
|
+
type GetUsersResponses,
|
|
615
|
+
type GetUserThreadsData,
|
|
616
|
+
type GetUserThreadsError,
|
|
617
|
+
type GetUserThreadsErrors,
|
|
618
|
+
type GetUserThreadsResponse,
|
|
619
|
+
type GetUserThreadsResponses,
|
|
620
|
+
type Group,
|
|
621
|
+
type GroupWritable,
|
|
622
|
+
type GuardAcceptEvent,
|
|
623
|
+
type GuardAcceptEventWritable,
|
|
624
|
+
type GuardEvent,
|
|
625
|
+
type GuardEventWritable,
|
|
626
|
+
type GuardRejectionEvent,
|
|
627
|
+
type GuardRejectionEventWritable,
|
|
628
|
+
type HealthResponse,
|
|
629
|
+
type HtmlElement,
|
|
630
|
+
type HttpValidationError,
|
|
631
|
+
type HumanInDto,
|
|
632
|
+
type HumanInDtoWritable,
|
|
633
|
+
type HumanInSpecs,
|
|
634
|
+
type HumanInSpecsWritable,
|
|
635
|
+
type HumanInTheLoopChatRequestEvent,
|
|
636
|
+
type HumanInTheLoopChatRequestEventWritable,
|
|
637
|
+
type HumanInTheLoopChatResponseEvent,
|
|
638
|
+
type HumanInTheLoopChatResponseEventWritable,
|
|
639
|
+
type HumanInTheLoopConfirmationRequestEvent,
|
|
640
|
+
type HumanInTheLoopConfirmationRequestEventWritable,
|
|
641
|
+
type HumanInTheLoopConfirmationResponseEvent,
|
|
642
|
+
type HumanInTheLoopConfirmationResponseEventWritable,
|
|
643
|
+
type HumanInTheLoopInputRequestEvent,
|
|
644
|
+
type HumanInTheLoopInputRequestEventWritable,
|
|
645
|
+
type HumanInTheLoopInputResponseEvent,
|
|
646
|
+
type HumanInTheLoopInputResponseEventWritable,
|
|
647
|
+
type HumanInTheLoopRequestEvent,
|
|
648
|
+
type HumanInTheLoopRequestEventWritable,
|
|
649
|
+
type HumanInTheLoopResponseEvent,
|
|
650
|
+
type HumanInTheLoopResponseEventWritable,
|
|
651
|
+
type HumanProcessStepDto,
|
|
652
|
+
type HumanWorkRequestDto,
|
|
653
|
+
type HumanWorkResponseDto,
|
|
654
|
+
type IconSelector,
|
|
655
|
+
type IconSelectorWritable,
|
|
656
|
+
type Image,
|
|
657
|
+
type ImageBlock,
|
|
658
|
+
type ImageContent,
|
|
659
|
+
type ImageGenerationRequest,
|
|
660
|
+
ImageMode,
|
|
661
|
+
type ImagesResponse,
|
|
662
|
+
type ImageUrl,
|
|
663
|
+
type IngestedNode,
|
|
664
|
+
type InitiateDocumentUploadData,
|
|
665
|
+
type InitiateDocumentUploadError,
|
|
666
|
+
type InitiateDocumentUploadErrors,
|
|
667
|
+
type InitiateDocumentUploadResponse,
|
|
668
|
+
type InitiateDocumentUploadResponses,
|
|
669
|
+
type InitiateFileUploadData,
|
|
670
|
+
type InitiateFileUploadError,
|
|
671
|
+
type InitiateFileUploadErrors,
|
|
672
|
+
type InitiateFileUploadResponse,
|
|
673
|
+
type InitiateFileUploadResponses,
|
|
674
|
+
type InputAudio,
|
|
675
|
+
type InputMask,
|
|
676
|
+
type InputMaskWritable,
|
|
677
|
+
type InputNumber,
|
|
678
|
+
type InputNumberWritable,
|
|
679
|
+
type InputOtp,
|
|
680
|
+
type InputOtpWritable,
|
|
681
|
+
type InputText,
|
|
682
|
+
type InputTextWritable,
|
|
683
|
+
type JsonSchema,
|
|
684
|
+
type Knob,
|
|
685
|
+
type KnobWritable,
|
|
686
|
+
type KnowledgeDatabaseSelector,
|
|
687
|
+
type KnowledgeDatabaseSelectorWritable,
|
|
688
|
+
type LimitChatHistoryEvent,
|
|
689
|
+
type LimitChatHistoryEventWritable,
|
|
690
|
+
type Listbox,
|
|
691
|
+
type ListboxWritable,
|
|
692
|
+
type ListTokensEndpointData,
|
|
693
|
+
type ListTokensEndpointResponse,
|
|
694
|
+
type ListTokensEndpointResponses,
|
|
695
|
+
type LlmCostEvent,
|
|
696
|
+
type LlmCostEventWritable,
|
|
697
|
+
type LlmEvent,
|
|
698
|
+
type LlmEventWritable,
|
|
699
|
+
type LlmStopEvent,
|
|
700
|
+
type LlmStopEventWritable,
|
|
701
|
+
type LocaleInput,
|
|
702
|
+
type LocaleInputWritable,
|
|
703
|
+
type LocaleResponse,
|
|
704
|
+
type LocaleString,
|
|
705
|
+
type Logprob,
|
|
706
|
+
type MemoriesResponse,
|
|
707
|
+
type Memory,
|
|
708
|
+
type MemoryDto,
|
|
709
|
+
type MemoryMetadata,
|
|
710
|
+
type MemoryRelation,
|
|
711
|
+
type MemoryRelationDto,
|
|
712
|
+
type MemorySearchResponse,
|
|
713
|
+
MemoryType,
|
|
714
|
+
type Message,
|
|
715
|
+
MessageRole,
|
|
716
|
+
type MessageWritable,
|
|
717
|
+
type Metadata,
|
|
718
|
+
type MetadataFilterPair,
|
|
719
|
+
type MinimalAgentInstanceDto,
|
|
720
|
+
type MinimalAgentInstanceDtoWritable,
|
|
721
|
+
type MinimalDataset,
|
|
722
|
+
type MinimalUserDto,
|
|
723
|
+
type ModelDetails,
|
|
724
|
+
type ModelDto,
|
|
725
|
+
type ModelDtoWritable,
|
|
726
|
+
type ModelInfoDto,
|
|
727
|
+
type ModelResponse,
|
|
728
|
+
type ModelSelect,
|
|
729
|
+
type ModelSelectWritable,
|
|
730
|
+
type ModelTypeGroupDto,
|
|
731
|
+
type ModelTypeGroupDtoWritable,
|
|
732
|
+
type MultiSelect,
|
|
733
|
+
type MultiSelectWritable,
|
|
734
|
+
type MyTenantsResponse,
|
|
735
|
+
type NamespaceDto,
|
|
736
|
+
type NamespaceResponse,
|
|
737
|
+
type NodeData,
|
|
738
|
+
type NodeSummaryDto,
|
|
739
|
+
type NotificationDto,
|
|
740
|
+
type OpenaiTypesAudioTranscriptionVerboseUsage,
|
|
741
|
+
type OpenaiTypesChatChatCompletionMessageCustomToolCallParamCustom,
|
|
742
|
+
type OpenaiTypesChatChatCompletionMessageFunctionToolCallParamFunction,
|
|
743
|
+
type OpenaiTypesChatChatCompletionNamedToolChoiceCustomParamCustom,
|
|
744
|
+
type OpenaiTypesChatChatCompletionNamedToolChoiceParamFunction,
|
|
745
|
+
type OpenaiTypesChatCompletionCreateParamsFunction,
|
|
746
|
+
type OpenaiTypesImagesResponseUsage,
|
|
747
|
+
type OpenChatHitlResponse,
|
|
748
|
+
type OpenChatHitlResponseWritable,
|
|
749
|
+
type OpenWebuiWebhookPayload,
|
|
750
|
+
type OpenWebuiWebhookUser,
|
|
751
|
+
type OrgMemoryTenantInput,
|
|
752
|
+
type OrgMemoryTenantInputWritable,
|
|
753
|
+
type PaginatedDocumentsResponse,
|
|
754
|
+
type PaginatedNotificationsResponse,
|
|
755
|
+
type PaginatedProcessWalkthroughsResponse,
|
|
756
|
+
type PaginatedProcessWalkthroughsResponseWritable,
|
|
757
|
+
type PaginatedThreadsResponse,
|
|
758
|
+
type PaginatedThreadsResponseWritable,
|
|
759
|
+
type PaginatedUsersResponse,
|
|
760
|
+
type PartialAgentTopic,
|
|
761
|
+
type Password,
|
|
762
|
+
type PasswordWritable,
|
|
763
|
+
type ProcessClassDto,
|
|
764
|
+
type ProcessClassDtoWritable,
|
|
765
|
+
type ProcessConfigDto,
|
|
766
|
+
type ProcessConfigSpecs,
|
|
767
|
+
type ProcessDocumentData,
|
|
768
|
+
type ProcessDocumentError,
|
|
769
|
+
type ProcessDocumentErrors,
|
|
770
|
+
type ProcessDocumentResponse,
|
|
771
|
+
type ProcessDocumentResponses,
|
|
772
|
+
type ProcessHealthChecks,
|
|
773
|
+
type ProcessWalkthroughDto,
|
|
774
|
+
type ProcessWalkthroughDtoWritable,
|
|
775
|
+
type ProgramInSpecs,
|
|
776
|
+
type ProgramProcessStepDto,
|
|
777
|
+
type ProgramWorkRequestDto,
|
|
778
|
+
type ProgramWorkResponseDto,
|
|
779
|
+
type PromptTokensDetails,
|
|
780
|
+
type RadioButton,
|
|
781
|
+
type RadioButtonWritable,
|
|
782
|
+
RagFailureReason,
|
|
783
|
+
type RagFailureStopEvent,
|
|
784
|
+
type RagFailureStopEventWritable,
|
|
785
|
+
type RagStartEvent,
|
|
786
|
+
type RagStartEventWritable,
|
|
787
|
+
type RagSuccessStopEvent,
|
|
788
|
+
type RagSuccessStopEventWritable,
|
|
789
|
+
type Rating,
|
|
790
|
+
type RatingWritable,
|
|
791
|
+
type ReceiveOpenwebuiWebhookData,
|
|
792
|
+
type ReceiveOpenwebuiWebhookError,
|
|
793
|
+
type ReceiveOpenwebuiWebhookErrors,
|
|
794
|
+
type ReceiveOpenwebuiWebhookResponse,
|
|
795
|
+
type ReceiveOpenwebuiWebhookResponses,
|
|
796
|
+
type RemoveAgentFromThreadData,
|
|
797
|
+
type RemoveAgentFromThreadError,
|
|
798
|
+
type RemoveAgentFromThreadErrors,
|
|
799
|
+
type RemoveAgentFromThreadResponse,
|
|
800
|
+
type RemoveAgentFromThreadResponses,
|
|
801
|
+
type RemoveUserFromThreadData,
|
|
802
|
+
type RemoveUserFromThreadError,
|
|
803
|
+
type RemoveUserFromThreadErrors,
|
|
804
|
+
type RemoveUserFromThreadResponse,
|
|
805
|
+
type RemoveUserFromThreadResponses,
|
|
806
|
+
type Repeater,
|
|
807
|
+
type RepeaterWritable,
|
|
808
|
+
type RerankerEvent,
|
|
809
|
+
type RerankerEventWritable,
|
|
810
|
+
Resolution,
|
|
811
|
+
type ResponseFormatJsonObject,
|
|
812
|
+
type ResponseFormatJsonSchema,
|
|
813
|
+
type ResponseFormatText,
|
|
814
|
+
type RetrieveOrganizationMemoryEvent,
|
|
815
|
+
type RetrieveOrganizationMemoryEventWritable,
|
|
816
|
+
type RetrieverEvent,
|
|
817
|
+
type RetrieverEventWritable,
|
|
818
|
+
type RetrieveUserMemoryEvent,
|
|
819
|
+
type RetrieveUserMemoryEventWritable,
|
|
820
|
+
type RevokeRoleData,
|
|
821
|
+
type RevokeRoleError,
|
|
822
|
+
type RevokeRoleErrors,
|
|
823
|
+
type RevokeRoleResponse,
|
|
824
|
+
type RevokeRoleResponses,
|
|
825
|
+
type RevokeTokenEndpointData,
|
|
826
|
+
type RevokeTokenEndpointError,
|
|
827
|
+
type RevokeTokenEndpointErrors,
|
|
828
|
+
type RevokeTokenEndpointResponse,
|
|
829
|
+
type RevokeTokenEndpointResponses,
|
|
830
|
+
type RevokeTokenResponse,
|
|
831
|
+
type RoleResponse,
|
|
832
|
+
type RouteOptions,
|
|
833
|
+
type RouteOptionsWritable,
|
|
834
|
+
type RouterEvent,
|
|
835
|
+
type RouterEventWritable,
|
|
836
|
+
type RunStatistics,
|
|
837
|
+
type RunStatisticsWritable,
|
|
838
|
+
type SearchOrganizationMemoriesData,
|
|
839
|
+
type SearchOrganizationMemoriesError,
|
|
840
|
+
type SearchOrganizationMemoriesErrors,
|
|
841
|
+
type SearchOrganizationMemoriesResponse,
|
|
842
|
+
type SearchOrganizationMemoriesResponses,
|
|
843
|
+
type SearchUserMemoriesData,
|
|
844
|
+
type SearchUserMemoriesError,
|
|
845
|
+
type SearchUserMemoriesErrors,
|
|
846
|
+
type SearchUserMemoriesResponse,
|
|
847
|
+
type SearchUserMemoriesResponses,
|
|
848
|
+
type Select,
|
|
849
|
+
type SelectButton,
|
|
850
|
+
type SelectButtonWritable,
|
|
851
|
+
type SelectWritable,
|
|
852
|
+
type SemanticEvent,
|
|
853
|
+
type SemanticEventWritable,
|
|
854
|
+
type SendProcessOpenFormData,
|
|
855
|
+
type SendProcessOpenFormError,
|
|
856
|
+
type SendProcessOpenFormErrors,
|
|
857
|
+
type SendProcessOpenFormResponse,
|
|
858
|
+
type SendProcessOpenFormResponses,
|
|
859
|
+
type SendProcessStartFormData,
|
|
860
|
+
type SendProcessStartFormError,
|
|
861
|
+
type SendProcessStartFormErrors,
|
|
862
|
+
type SendProcessStartFormResponse,
|
|
863
|
+
type SendProcessStartFormResponses,
|
|
864
|
+
type SensitiveInfoAcceptEvent,
|
|
865
|
+
type SensitiveInfoAcceptEventWritable,
|
|
866
|
+
type SensitiveInfoRejectEvent,
|
|
867
|
+
type SensitiveInfoRejectEventWritable,
|
|
868
|
+
type ServiceDto,
|
|
869
|
+
type SetActiveTenantRequest,
|
|
870
|
+
type SetMyActiveTenantData,
|
|
871
|
+
type SetMyActiveTenantError,
|
|
872
|
+
type SetMyActiveTenantErrors,
|
|
873
|
+
type SetMyActiveTenantResponse,
|
|
874
|
+
type SetMyActiveTenantResponses,
|
|
875
|
+
type SignedUrlDto,
|
|
876
|
+
type Slider,
|
|
877
|
+
type SliderWritable,
|
|
878
|
+
type StandaloneQuestionCondenserEvent,
|
|
879
|
+
type StandaloneQuestionCondenserEventWritable,
|
|
880
|
+
type StartEvent,
|
|
881
|
+
type StartEventWritable,
|
|
882
|
+
type StopEvent,
|
|
883
|
+
type StopEventWritable,
|
|
884
|
+
type StoreOrganizationMemoryEvent,
|
|
885
|
+
type StoreOrganizationMemoryEventWritable,
|
|
886
|
+
type StoreUserMemoryEvent,
|
|
887
|
+
type StoreUserMemoryEventWritable,
|
|
888
|
+
type SubmittedFormDto,
|
|
889
|
+
type SuiteDto,
|
|
890
|
+
type TemplateData,
|
|
891
|
+
type TenantIdentity,
|
|
892
|
+
type TenantMembershipDto,
|
|
893
|
+
type Textarea,
|
|
894
|
+
type TextareaWritable,
|
|
895
|
+
type TextBlock,
|
|
896
|
+
type TextContent,
|
|
897
|
+
type TextToSpeechRequest,
|
|
898
|
+
type ThinkingBlock,
|
|
899
|
+
type ThoughtEvent,
|
|
900
|
+
type ThoughtEventWritable,
|
|
901
|
+
type ThreadAgentDto,
|
|
902
|
+
type ThreadDto,
|
|
903
|
+
type ThreadDtoWritable,
|
|
904
|
+
TimeRange,
|
|
905
|
+
type ToggleButton,
|
|
906
|
+
type ToggleButtonWritable,
|
|
907
|
+
type ToggleSwitch,
|
|
908
|
+
type ToggleSwitchWritable,
|
|
909
|
+
type TokenResponse,
|
|
910
|
+
type ToolCallBlock,
|
|
911
|
+
type ToolEvent,
|
|
912
|
+
type ToolEventWritable,
|
|
913
|
+
type TopLogprob,
|
|
914
|
+
type Transcription,
|
|
915
|
+
type TranscriptionSegment,
|
|
916
|
+
type TranscriptionVerbose,
|
|
917
|
+
type TranscriptionWord,
|
|
918
|
+
type TranslateTextData,
|
|
919
|
+
type TranslateTextError,
|
|
920
|
+
type TranslateTextErrors,
|
|
921
|
+
type TranslateTextResponse,
|
|
922
|
+
type TranslateTextResponses,
|
|
923
|
+
type TranslationRequest,
|
|
924
|
+
type TranslationResponse,
|
|
925
|
+
type UpdateAgentInstanceData,
|
|
926
|
+
type UpdateAgentInstanceDto,
|
|
927
|
+
type UpdateAgentInstanceError,
|
|
928
|
+
type UpdateAgentInstanceErrors,
|
|
929
|
+
type UpdateAgentInstanceResponse,
|
|
930
|
+
type UpdateAgentInstanceResponses,
|
|
931
|
+
type UpdateDatasetData,
|
|
932
|
+
type UpdateDatasetError,
|
|
933
|
+
type UpdateDatasetErrors,
|
|
934
|
+
type UpdateDatasetResponse,
|
|
935
|
+
type UpdateDatasetResponses,
|
|
936
|
+
type UpdateMemoryRequest,
|
|
937
|
+
type UpdateMemoryResponse,
|
|
938
|
+
type UpdateMyDashboardData,
|
|
939
|
+
type UpdateMyDashboardError,
|
|
940
|
+
type UpdateMyDashboardErrors,
|
|
941
|
+
type UpdateMyDashboardResponse,
|
|
942
|
+
type UpdateMyDashboardResponses,
|
|
943
|
+
type UpdateNamespaceData,
|
|
944
|
+
type UpdateNamespaceError,
|
|
945
|
+
type UpdateNamespaceErrors,
|
|
946
|
+
type UpdateNamespaceRequest,
|
|
947
|
+
type UpdateNamespaceResponse,
|
|
948
|
+
type UpdateNamespaceResponses,
|
|
949
|
+
type UpdateNotificationData,
|
|
950
|
+
type UpdateNotificationError,
|
|
951
|
+
type UpdateNotificationErrors,
|
|
952
|
+
type UpdateNotificationRequest,
|
|
953
|
+
type UpdateNotificationResponse,
|
|
954
|
+
type UpdateNotificationResponses,
|
|
955
|
+
type UpdateNotificationsBulkData,
|
|
956
|
+
type UpdateNotificationsBulkError,
|
|
957
|
+
type UpdateNotificationsBulkErrors,
|
|
958
|
+
type UpdateNotificationsBulkResponse,
|
|
959
|
+
type UpdateNotificationsBulkResponses,
|
|
960
|
+
type UpdateOrganizationMemoryData,
|
|
961
|
+
type UpdateOrganizationMemoryError,
|
|
962
|
+
type UpdateOrganizationMemoryErrors,
|
|
963
|
+
type UpdateOrganizationMemoryResponse,
|
|
964
|
+
type UpdateOrganizationMemoryResponses,
|
|
965
|
+
type UpdateProcessInstanceData,
|
|
966
|
+
type UpdateProcessInstanceDto,
|
|
967
|
+
type UpdateProcessInstanceError,
|
|
968
|
+
type UpdateProcessInstanceErrors,
|
|
969
|
+
type UpdateProcessInstanceResponse,
|
|
970
|
+
type UpdateProcessInstanceResponses,
|
|
971
|
+
type UpdateRoleData,
|
|
972
|
+
type UpdateRoleError,
|
|
973
|
+
type UpdateRoleErrors,
|
|
974
|
+
type UpdateRoleRequest,
|
|
975
|
+
type UpdateRoleResponse,
|
|
976
|
+
type UpdateRoleResponses,
|
|
977
|
+
type UpdateUserMemoryData,
|
|
978
|
+
type UpdateUserMemoryError,
|
|
979
|
+
type UpdateUserMemoryErrors,
|
|
980
|
+
type UpdateUserMemoryResponse,
|
|
981
|
+
type UpdateUserMemoryResponses,
|
|
982
|
+
type UsageDuration,
|
|
983
|
+
type UsageInputTokensDetails,
|
|
984
|
+
type UsageLimitDto,
|
|
985
|
+
UsageLimitPeriod,
|
|
986
|
+
type UsageOutputTokensDetails,
|
|
987
|
+
type UsageTokens,
|
|
988
|
+
type UsageTokensInputTokenDetails,
|
|
989
|
+
type UserAccess,
|
|
990
|
+
type UserDto,
|
|
991
|
+
type UserIdentity,
|
|
992
|
+
type UserMessageEvent,
|
|
993
|
+
type UserMessageEventWritable,
|
|
994
|
+
type UserUploadedFile,
|
|
995
|
+
type UserWithAccessDto,
|
|
996
|
+
type ValidateDocumentUploadData,
|
|
997
|
+
type ValidateDocumentUploadError,
|
|
998
|
+
type ValidateDocumentUploadErrors,
|
|
999
|
+
type ValidateDocumentUploadResponse,
|
|
1000
|
+
type ValidateDocumentUploadResponses,
|
|
1001
|
+
type ValidateFileUploadData,
|
|
1002
|
+
type ValidateFileUploadError,
|
|
1003
|
+
type ValidateFileUploadErrors,
|
|
1004
|
+
type ValidateFileUploadResponse,
|
|
1005
|
+
type ValidateFileUploadResponses,
|
|
1006
|
+
type ValidationError,
|
|
1007
|
+
type VectorStoreInput,
|
|
1008
|
+
type VectorStoreInputWritable,
|
|
1009
|
+
type VideoBlock,
|
|
1010
|
+
type VoiceId,
|
|
1011
|
+
type WebhookResponse,
|
|
1012
|
+
type WorkflowGraph,
|
|
1013
|
+
} from "./types.gen";
|