@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.
Files changed (313) hide show
  1. package/LICENSE +661 -0
  2. package/README.md +479 -0
  3. package/app.config.ts +1 -0
  4. package/app.vue +52 -0
  5. package/assets/css/main.css +4 -0
  6. package/assets/images/logo.png +0 -0
  7. package/components/Agent/Avatar.vue +40 -0
  8. package/components/Agent/Card.vue +139 -0
  9. package/components/Agent/Configuration.vue +20 -0
  10. package/components/Agent/CreateModal.vue +287 -0
  11. package/components/Agent/EmptyCard.vue +35 -0
  12. package/components/Agent/List.vue +85 -0
  13. package/components/Agent/TemplateCard.vue +58 -0
  14. package/components/AppLoader.vue +55 -0
  15. package/components/Chat/Message.vue +90 -0
  16. package/components/Chat/SourceNodes.vue +120 -0
  17. package/components/Chat/Thread.vue +134 -0
  18. package/components/Costs/Table.vue +56 -0
  19. package/components/Dashboard/Component/BarChart.vue +46 -0
  20. package/components/Dashboard/Component/LineChart.vue +138 -0
  21. package/components/Dashboard/Component/Number.vue +31 -0
  22. package/components/Dashboard/Grid.vue +214 -0
  23. package/components/Dashboard/Item.vue +75 -0
  24. package/components/Dashboard/Trend.vue +34 -0
  25. package/components/Display/List/DisplayList.vue +93 -0
  26. package/components/Evaluation/Dataset/Card.vue +70 -0
  27. package/components/Evaluation/Dataset/Create.vue +81 -0
  28. package/components/Evaluation/Dataset/Edit.vue +132 -0
  29. package/components/Event/Display/AddMemoryToChatHistoryEvent.vue +60 -0
  30. package/components/Event/Display/AgentInTheLoopRequestEvent.vue +56 -0
  31. package/components/Event/Display/AgentInTheLoopResponseEvent.vue +17 -0
  32. package/components/Event/Display/Base.vue +125 -0
  33. package/components/Event/Display/BaseRetrieveMemoryEvent.vue +101 -0
  34. package/components/Event/Display/BaseStoreMemoryEvent.vue +182 -0
  35. package/components/Event/Display/ChunkEvent.vue +40 -0
  36. package/components/Event/Display/EmbeddingEvent.vue +25 -0
  37. package/components/Event/Display/ExceptionEvent.vue +21 -0
  38. package/components/Event/Display/GuardAcceptEvent.vue +25 -0
  39. package/components/Event/Display/GuardEvent.vue +17 -0
  40. package/components/Event/Display/GuardRejectionEvent.vue +25 -0
  41. package/components/Event/Display/HumanInTheLoopRequestEvent.vue +53 -0
  42. package/components/Event/Display/HumanInTheLoopResponseEvent.vue +40 -0
  43. package/components/Event/Display/LLMCostEvent.vue +25 -0
  44. package/components/Event/Display/LLMEvent.vue +92 -0
  45. package/components/Event/Display/LimitChatHistoryEvent.vue +60 -0
  46. package/components/Event/Display/RAGFailureStopEvent.vue +28 -0
  47. package/components/Event/Display/RAGStartEvent.vue +77 -0
  48. package/components/Event/Display/RAGSuccessStopEvent.vue +16 -0
  49. package/components/Event/Display/RawDataContent.vue +69 -0
  50. package/components/Event/Display/RerankerEvent.vue +39 -0
  51. package/components/Event/Display/RetrieverEvent.vue +22 -0
  52. package/components/Event/Display/RouterEvent.vue +54 -0
  53. package/components/Event/Display/StandaloneQuestionCondenserEvent.vue +38 -0
  54. package/components/Event/Display/StopEvent.vue +16 -0
  55. package/components/Event/Display/ThoughtEvent.vue +20 -0
  56. package/components/Event/Display/ToolEvent.vue +38 -0
  57. package/components/Event/Display/UnknownEvent.vue +17 -0
  58. package/components/Event/Display/UserMessageEvent.vue +35 -0
  59. package/components/Event/List/EventList.vue +249 -0
  60. package/components/Event/Statistics.vue +49 -0
  61. package/components/Event/Timeseries.vue +224 -0
  62. package/components/FormKit/AgentSelector.vue +307 -0
  63. package/components/FormKit/ChipsInput.vue +62 -0
  64. package/components/FormKit/DynamicConfiguration.vue +155 -0
  65. package/components/FormKit/IconSelector.vue +72 -0
  66. package/components/FormKit/KnowledgeDatabaseSelector.vue +92 -0
  67. package/components/FormKit/LocaleInput.vue +150 -0
  68. package/components/FormKit/ModelSelect.vue +110 -0
  69. package/components/FormKit/Repeater.vue +93 -0
  70. package/components/FormKit/VectorStoreInput.vue +247 -0
  71. package/components/Knowledge/Document/List.vue +140 -0
  72. package/components/Knowledge/Document/Overview.vue +28 -0
  73. package/components/Knowledge/Document/UploadModal.vue +298 -0
  74. package/components/Knowledge/Document/WithNodes.vue +105 -0
  75. package/components/Knowledge/Namespace/Card.vue +108 -0
  76. package/components/Knowledge/Namespace/CreateModal.vue +203 -0
  77. package/components/Knowledge/Namespace/EditModal.vue +134 -0
  78. package/components/Knowledge/Namespace/EmptyCard.vue +35 -0
  79. package/components/Knowledge/Node/Content.vue +71 -0
  80. package/components/Markdown/Renderer.vue +87 -0
  81. package/components/Memory/DetailPage.vue +48 -0
  82. package/components/Memory/Edit.vue +241 -0
  83. package/components/Memory/Graph.vue +318 -0
  84. package/components/Memory/List.vue +155 -0
  85. package/components/Memory/MemoryManagementPage.vue +178 -0
  86. package/components/Memory/OpenWebUIContent.vue +96 -0
  87. package/components/Memory/PageLayout.vue +72 -0
  88. package/components/Models/ModelDetailsPanel.vue +250 -0
  89. package/components/Models/NamespaceCard.vue +79 -0
  90. package/components/Navigation/Left.vue +85 -0
  91. package/components/Navigation/Top.vue +31 -0
  92. package/components/Notification/Item.vue +88 -0
  93. package/components/Notification/NotificationsOverlay.vue +164 -0
  94. package/components/Process/Card.vue +119 -0
  95. package/components/Process/Configuration.vue +20 -0
  96. package/components/Process/CreateModal.vue +276 -0
  97. package/components/Process/EmptyCard.vue +35 -0
  98. package/components/Process/Form.vue +153 -0
  99. package/components/Process/Starts.vue +44 -0
  100. package/components/Process/Walkthrough/List.vue +162 -0
  101. package/components/Role/AccessRulesEditor.vue +132 -0
  102. package/components/Role/Card.vue +68 -0
  103. package/components/Role/Create.vue +55 -0
  104. package/components/Role/Edit.vue +82 -0
  105. package/components/Role/UsageLimitsEditor.vue +225 -0
  106. package/components/Service/Selection.vue +148 -0
  107. package/components/Structural/Column.vue +74 -0
  108. package/components/Structural/Screen.vue +10 -0
  109. package/components/Structural/Substructure.vue +5 -0
  110. package/components/Tenant/Switcher.vue +102 -0
  111. package/components/Thread/Details.vue +135 -0
  112. package/components/Thread/Hierarchy.vue +136 -0
  113. package/components/Thread/Info.vue +41 -0
  114. package/components/Thread/List.vue +136 -0
  115. package/components/User/Bar.vue +74 -0
  116. package/components/User/List.vue +86 -0
  117. package/components/User/RoleChips.vue +83 -0
  118. package/components/User/Settings.vue +79 -0
  119. package/components/Workflow/Modal.vue +39 -0
  120. package/components/Workflow/NodeCard.vue +41 -0
  121. package/components/Workflow/StartNode.vue +24 -0
  122. package/components/Workflow/StepNode.vue +27 -0
  123. package/components/Workflow/StopNode.vue +24 -0
  124. package/components/Workflow/Visualization.vue +265 -0
  125. package/components/mdc/MarkdownFigure.vue +9 -0
  126. package/components/mdc/MarkdownTable.vue +9 -0
  127. package/components/mdc/ResolveImageComponent.vue +58 -0
  128. package/composables/agent/useAgentClass.ts +27 -0
  129. package/composables/agent/useAgentClassInstances.ts +27 -0
  130. package/composables/agent/useAgentClasses.ts +27 -0
  131. package/composables/agent/useAgentIconFromThread.ts +8 -0
  132. package/composables/agent/useAgentInstance.ts +28 -0
  133. package/composables/agent/useAgentInstanceThreads.ts +76 -0
  134. package/composables/agent/useAgentInstances.ts +25 -0
  135. package/composables/agent/useAgentNavigation.ts +35 -0
  136. package/composables/agent/useCreateAgentInstance.ts +33 -0
  137. package/composables/agent/useDeleteAgentInstance.ts +31 -0
  138. package/composables/agent/useUpdateAgentInstance.ts +40 -0
  139. package/composables/auth/useAuth.ts +54 -0
  140. package/composables/auth/useAuthProviders.ts +14 -0
  141. package/composables/chat/useChatCompletions.ts +30 -0
  142. package/composables/dashboard/useAgentNameFromDashboardWidget.ts +27 -0
  143. package/composables/dashboard/useDashboardComponent.ts +27 -0
  144. package/composables/dashboard/useSaveDashboard.ts +21 -0
  145. package/composables/document/useCreateNamespace.ts +26 -0
  146. package/composables/document/useDatabases.ts +23 -0
  147. package/composables/document/useDocument.ts +29 -0
  148. package/composables/document/useDocumentUrl.ts +20 -0
  149. package/composables/document/useDocuments.ts +107 -0
  150. package/composables/document/useNodes.ts +29 -0
  151. package/composables/document/useSummaryNodes.ts +32 -0
  152. package/composables/document/useUpdateNamespace.ts +22 -0
  153. package/composables/evaluation/useCreateDataset.ts +19 -0
  154. package/composables/evaluation/useDataset.ts +26 -0
  155. package/composables/evaluation/useDatasets.ts +25 -0
  156. package/composables/evaluation/useUpdateDataset.ts +23 -0
  157. package/composables/event/useBasicEventStatistics.ts +83 -0
  158. package/composables/event/useEventColor.ts +25 -0
  159. package/composables/event/useEventComponent.ts +87 -0
  160. package/composables/event/useEventTimeseries.ts +39 -0
  161. package/composables/event/useEventTimeseriesStats.ts +26 -0
  162. package/composables/file/useFileUpload.ts +91 -0
  163. package/composables/file/useSupportedFileTypes.ts +22 -0
  164. package/composables/form/useCreateInstanceForm.ts +251 -0
  165. package/composables/form/useFormKitTransform.ts +753 -0
  166. package/composables/memory/useMemoryCRUD.ts +88 -0
  167. package/composables/memory/useMemoryFactory.ts +319 -0
  168. package/composables/memory/useMemorySearchFilter.ts +74 -0
  169. package/composables/models/useModelsList.ts +24 -0
  170. package/composables/models/useSingleModel.ts +30 -0
  171. package/composables/notification/useNotificationPoller.ts +58 -0
  172. package/composables/notification/useNotifications.ts +57 -0
  173. package/composables/notification/useUpdateMultipleNotifications.ts +17 -0
  174. package/composables/notification/useUpdateNotification.ts +17 -0
  175. package/composables/process/useCreateProcessInstance.ts +32 -0
  176. package/composables/process/useDeleteProcessInstance.ts +31 -0
  177. package/composables/process/useProcessClasses.ts +27 -0
  178. package/composables/process/useProcessInstance.ts +28 -0
  179. package/composables/process/useProcessInstances.ts +27 -0
  180. package/composables/process/useProcessWalkthroughs.ts +73 -0
  181. package/composables/process/useSendProcessStartForm.ts +43 -0
  182. package/composables/process/useUpdateProcessInstance.ts +40 -0
  183. package/composables/role/useCreateRole.ts +19 -0
  184. package/composables/role/useDeleteRole.ts +21 -0
  185. package/composables/role/useRole.ts +30 -0
  186. package/composables/role/useRoles.ts +25 -0
  187. package/composables/role/useUpdateRole.ts +22 -0
  188. package/composables/suite/useApps.ts +31 -0
  189. package/composables/suite/useSuite.ts +26 -0
  190. package/composables/tenant/useActiveTenant.ts +27 -0
  191. package/composables/tenant/useSysadminNavigation.ts +19 -0
  192. package/composables/tenant/useTenant.ts +38 -0
  193. package/composables/tenant/useTenantMemberships.ts +15 -0
  194. package/composables/tenant/useTenantPath.ts +20 -0
  195. package/composables/tenant/useTenantPolling.ts +30 -0
  196. package/composables/tenant/useTenantReady.ts +12 -0
  197. package/composables/theme/useDarkMode.ts +5 -0
  198. package/composables/thread/useThread.ts +27 -0
  199. package/composables/thread/useThreadEvents.ts +91 -0
  200. package/composables/thread/useThreadUtils.ts +49 -0
  201. package/composables/thread/useThreads.ts +64 -0
  202. package/composables/thread/useThreadsInfinite.ts +56 -0
  203. package/composables/translation/useTranslate.ts +20 -0
  204. package/composables/useRouteReady.ts +21 -0
  205. package/composables/useTimeAgo.ts +40 -0
  206. package/composables/user/useAssignRoleToUser.ts +22 -0
  207. package/composables/user/useMyUser.ts +25 -0
  208. package/composables/user/useRevokeRoleFromUser.ts +21 -0
  209. package/composables/user/useUser.ts +30 -0
  210. package/composables/user/useUsers.ts +63 -0
  211. package/composables/utils/useJsonTree.ts +138 -0
  212. package/formkit.config.ts +44 -0
  213. package/i18n/locales/de.yaml +815 -0
  214. package/i18n/locales/en.yaml +804 -0
  215. package/i18n/locales/fr.yaml +812 -0
  216. package/i18n/locales/it.yaml +808 -0
  217. package/layouts/anonymous.vue +8 -0
  218. package/layouts/default.vue +116 -0
  219. package/middleware/auth.global.ts +62 -0
  220. package/nuxt.config.ts +145 -0
  221. package/package.json +114 -0
  222. package/pages/[tenant]/index.vue +31 -0
  223. package/pages/[tenant]/notifications/index.vue +235 -0
  224. package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/chat.vue +67 -0
  225. package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/configuration.vue +122 -0
  226. package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/memories/[memory_id].vue +3 -0
  227. package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/memories.vue +20 -0
  228. package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/overview.vue +72 -0
  229. package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/threads.vue +52 -0
  230. package/pages/[tenant]/service/agents/[agent_class]-[agent_id]/workflow.vue +19 -0
  231. package/pages/[tenant]/service/agents/[agent_class]-[agent_id].vue +63 -0
  232. package/pages/[tenant]/service/agents/templates.vue +102 -0
  233. package/pages/[tenant]/service/agents.vue +185 -0
  234. package/pages/[tenant]/service/datasets/[dataset_id].vue +81 -0
  235. package/pages/[tenant]/service/datasets.vue +53 -0
  236. package/pages/[tenant]/service/health/index.vue +3 -0
  237. package/pages/[tenant]/service/knowledge/[db]/[namespace]/[document_id]/nodes.vue +20 -0
  238. package/pages/[tenant]/service/knowledge/[db]/[namespace]/[document_id]/overview.vue +40 -0
  239. package/pages/[tenant]/service/knowledge/[db]/[namespace]/[document_id]/summary.vue +88 -0
  240. package/pages/[tenant]/service/knowledge/[db]/[namespace]/[document_id].vue +48 -0
  241. package/pages/[tenant]/service/knowledge/[db]/[namespace].vue +144 -0
  242. package/pages/[tenant]/service/knowledge.vue +126 -0
  243. package/pages/[tenant]/service/models/[model_name].vue +84 -0
  244. package/pages/[tenant]/service/models.vue +61 -0
  245. package/pages/[tenant]/service/my-account.vue +117 -0
  246. package/pages/[tenant]/service/openai/[thread_id]/[display_id]/memories.vue +66 -0
  247. package/pages/[tenant]/service/openai/[thread_id]/[display_id]/sources.vue +100 -0
  248. package/pages/[tenant]/service/openai/[thread_id]/[display_id]/tracing.vue +49 -0
  249. package/pages/[tenant]/service/openai.vue +101 -0
  250. package/pages/[tenant]/service/organization-memories/graph.vue +97 -0
  251. package/pages/[tenant]/service/organization-memories/list/[memory_id].vue +3 -0
  252. package/pages/[tenant]/service/organization-memories/list.vue +150 -0
  253. package/pages/[tenant]/service/organization-memories.vue +3 -0
  254. package/pages/[tenant]/service/processes/[process_class]-[process_id]/[process_walkthrough_id].vue +7 -0
  255. package/pages/[tenant]/service/processes/[process_class]-[process_id]/configuration.vue +106 -0
  256. package/pages/[tenant]/service/processes/[process_class]-[process_id]/overview.vue +67 -0
  257. package/pages/[tenant]/service/processes/[process_class]-[process_id]/start.vue +26 -0
  258. package/pages/[tenant]/service/processes/[process_class]-[process_id]/walkthroughs/[process_walkthrough_id]/overview.vue +14 -0
  259. package/pages/[tenant]/service/processes/[process_class]-[process_id]/walkthroughs.vue +54 -0
  260. package/pages/[tenant]/service/processes/[process_class]-[process_id].vue +60 -0
  261. package/pages/[tenant]/service/processes.vue +129 -0
  262. package/pages/[tenant]/service/roles/[role_id].vue +54 -0
  263. package/pages/[tenant]/service/roles.vue +84 -0
  264. package/pages/[tenant]/service/threads/[thread_id]/chat.vue +51 -0
  265. package/pages/[tenant]/service/threads/[thread_id]/display/[display_id].vue +21 -0
  266. package/pages/[tenant]/service/threads/[thread_id]/display.vue +29 -0
  267. package/pages/[tenant]/service/threads/[thread_id]/hierarchy.vue +14 -0
  268. package/pages/[tenant]/service/threads/[thread_id]/memories/[memory_id].vue +3 -0
  269. package/pages/[tenant]/service/threads/[thread_id]/memories.vue +19 -0
  270. package/pages/[tenant]/service/threads/[thread_id]/overview.vue +100 -0
  271. package/pages/[tenant]/service/threads/[thread_id].vue +54 -0
  272. package/pages/[tenant]/service/threads.vue +52 -0
  273. package/pages/[tenant]/service/user-memories/graph.vue +97 -0
  274. package/pages/[tenant]/service/user-memories/list/[memory_id].vue +3 -0
  275. package/pages/[tenant]/service/user-memories/list.vue +150 -0
  276. package/pages/[tenant]/service/user-memories.vue +3 -0
  277. package/pages/[tenant]/service/users/[user_id].vue +117 -0
  278. package/pages/[tenant]/service/users.vue +88 -0
  279. package/pages/auth/callback.vue +52 -0
  280. package/pages/auth/login.vue +80 -0
  281. package/pages/auth/renew.vue +24 -0
  282. package/pages/index.vue +59 -0
  283. package/pages/select-tenant.vue +76 -0
  284. package/plugins/0.runtime-config.client.ts +55 -0
  285. package/plugins/apexcharts.client.ts +5 -0
  286. package/plugins/api-client.client.ts +38 -0
  287. package/plugins/dark-mode.client.ts +12 -0
  288. package/plugins/keycloak-client.ts +41 -0
  289. package/plugins/oidc-client.ts +78 -0
  290. package/sdk/client/client/client.gen.ts +237 -0
  291. package/sdk/client/client/index.ts +24 -0
  292. package/sdk/client/client/types.gen.ts +213 -0
  293. package/sdk/client/client/utils.gen.ts +407 -0
  294. package/sdk/client/client.gen.ts +25 -0
  295. package/sdk/client/core/auth.gen.ts +42 -0
  296. package/sdk/client/core/bodySerializer.gen.ts +96 -0
  297. package/sdk/client/core/params.gen.ts +181 -0
  298. package/sdk/client/core/pathSerializer.gen.ts +180 -0
  299. package/sdk/client/core/queryKeySerializer.gen.ts +136 -0
  300. package/sdk/client/core/serverSentEvents.gen.ts +265 -0
  301. package/sdk/client/core/types.gen.ts +118 -0
  302. package/sdk/client/core/utils.gen.ts +143 -0
  303. package/sdk/client/index.ts +1013 -0
  304. package/sdk/client/schemas.gen.ts +35395 -0
  305. package/sdk/client/sdk.gen.ts +3438 -0
  306. package/sdk/client/transformers.gen.ts +143 -0
  307. package/sdk/client/types.gen.ts +27567 -0
  308. package/tailwind.config.mjs +27 -0
  309. package/themes/aihub-theme.ts +125 -0
  310. package/types/DashboardWidget.ts +13 -0
  311. package/types/EventChartInput.ts +7 -0
  312. package/types/NavItem.ts +6 -0
  313. package/types/TimeseriesInput.ts +7 -0
@@ -0,0 +1,804 @@
1
+ ---
2
+ test: This is test
3
+ welcome: Welcome to bbv ai-hub
4
+ common:
5
+ actions:
6
+ save: Save
7
+ cancel: Cancel
8
+ create: Create
9
+ delete: Delete
10
+ edit: Edit
11
+ loading: Loading...
12
+ selectModel: Select a model
13
+ selectDatabase: Select a database
14
+ models:
15
+ title: Models
16
+ error: Error loading models
17
+ card:
18
+ tokens: Tokens
19
+ costPer1M: Cost/1M
20
+ modelDetails:
21
+ overview: Model Overview
22
+ name: Name
23
+ mode: Mode
24
+ additionalInfo: Additional Information
25
+ maxInputTokens: Max Input Tokens
26
+ maxOutputTokens: Max Output Tokens
27
+ basicInputCost: Input Cost per 1M Tokens
28
+ basicOutputCost: Output Cost per 1M Tokens
29
+ advancedPricing: Advanced Pricing
30
+ cacheCreationCost: Cache Creation Cost
31
+ cacheReadCost: Cache Read Cost
32
+ inputCostAbove128k: Input Cost (Above 128K)
33
+ inputCostAbove200k: Input Cost (Above 200K)
34
+ inputAudioCost: Input Audio Cost
35
+ inputBatchCost: Input Batch Cost
36
+ outputBatchCost: Output Batch Cost
37
+ outputAudioCost: Output Audio Cost
38
+ reasoningTokenCost: Reasoning Token Cost
39
+ outputCostAbove128k: Output Cost (Above 128K)
40
+ outputCostAbove200k: Output Cost (Above 200K)
41
+ imageCost: Image Cost
42
+ searchContextCost: Search Context Cost
43
+ rateLimits: Rate Limits
44
+ tokensPerMinute: Tokens per Minute
45
+ requestsPerMinute: Requests per Minute
46
+ capabilities: Capabilities
47
+ supportsSystemMessages: System Messages
48
+ supportsResponseSchema: Response Schema
49
+ supportsVision: Vision
50
+ supportsFunctionCalling: Function Calling
51
+ supportsToolChoice: Tool Choice
52
+ supportsAssistantPrefill: Assistant Prefill
53
+ supportsPromptCaching: Prompt Caching
54
+ supportsAudioInput: Audio Input
55
+ supportsAudioOutput: Audio Output
56
+ supportsPdfInput: PDF Input
57
+ supportsNativeStreaming: Native Streaming
58
+ supportsWebSearch: Web Search
59
+ supportsUrlContext: URL Context
60
+ supportsReasoning: Reasoning
61
+ supportsComputerUse: Computer Use
62
+ otherDetails: Other Details
63
+ outputVectorSize: Output Vector Size
64
+ supportsEmbeddingImageInput: Embedding Image Input
65
+ supportedParams: Supported OpenAI Parameters
66
+ notSpecified: Not specified
67
+ languages:
68
+ en: English
69
+ de: German
70
+ it: Italian
71
+ fr: French
72
+ http_error:
73
+ code:
74
+ # 4xx Client Errors
75
+ 400: Invalid request. Please check the address and try again.
76
+ 401: Please sign in to access this page.
77
+ 403: You don't have permission to view this.
78
+ 404: Sorry, we couldn't find that page.
79
+ 405: That action is not allowed here.
80
+ 408: The request timed out. Please try again.
81
+ 429: Too many requests.
82
+
83
+ # 5xx Server Errors
84
+ 500: Something went wrong on our servers.
85
+ 502: A server error occurred. Please try again.
86
+ 503: Our service is temporarily unavailable.
87
+ 504: A server is not responding. Please try again.
88
+ user:
89
+ title: Users
90
+ logout: Logout
91
+ language: Language
92
+ role_chips:
93
+ no_roles: No roles assigned
94
+ assign: Assign role
95
+ revoke: Revoke
96
+ revoke_confirm_header: Revoke role
97
+ revoke_confirm_message: Revoke the role "{role}" from this user?
98
+ assigned_toast: Assigned "{role}" to {user}
99
+ revoked_toast: Revoked "{role}" from {user}
100
+ list:
101
+ name: Name
102
+ email: E-Mail
103
+ avatar: Profile image
104
+ roles: Roles
105
+ sys_admin: System Admin
106
+ sys_admin_tag: Sys Admin
107
+ sys_admin_no: 'No'
108
+ last_accessed: Last accessed
109
+ my_account:
110
+ title: My Account
111
+ services: Services
112
+ agents: Agents
113
+ processes: Processes
114
+ time_ago:
115
+ last_hour: Last hour
116
+ last_day: Last day
117
+ last_week: Last week
118
+ last_month: Last month
119
+ last_year: Last year
120
+ long_time_ago: Long time ago
121
+ thread:
122
+ title: Interactions
123
+ users: Users
124
+ assistants: Assistants
125
+ navigation:
126
+ basic: Basic
127
+ hierarchy: Hierarchy
128
+ chat: Chat
129
+ display: Turns
130
+ memories: Memories
131
+ list:
132
+ name: Name
133
+ agents: Agents
134
+ created: Created
135
+ numTurns: Number of Turns
136
+ numEvents: Number of Events
137
+ status: Status
138
+ pending: Pending
139
+ utils:
140
+ pendingTypes:
141
+ hitl: Human in the Loop
142
+ aitl: Agent in the Loop
143
+ bitl: Bot in the Loop
144
+ unknown: Reason unknown
145
+ display:
146
+ title: Interaction Turns
147
+ list:
148
+ started: Started
149
+ duration: Duration
150
+ events: Events
151
+ status: Status
152
+ pending: Pending
153
+ dateFormat: DD.MM.YYYY HH:mm:ss
154
+ events:
155
+ title: Turn Tracing View
156
+ hierarchy:
157
+ title: Hierarchical View on Turns
158
+ chat:
159
+ title: Chat view
160
+ memories:
161
+ title: Thread Memories
162
+ description: Memories collected during {threadName}
163
+ delete_all:
164
+ confirm_header: Delete All Thread Memories
165
+ confirm_message: Are you sure you want to delete all memories from this thread?
166
+ This action cannot be undone.
167
+ success:
168
+ title: Success
169
+ message: All thread memories deleted successfully
170
+ error:
171
+ title: Delete Failed
172
+ message: Failed to delete thread memories. Please try again.
173
+ chat:
174
+ assistant: Assistant
175
+ document: Document
176
+ event:
177
+ list:
178
+ firstInteraction: 'First Interaction:'
179
+ lastInteraction: 'Last Interaction:'
180
+ costs: 'Costs:'
181
+ duration: 'Duration:'
182
+ pending: 'Pending:'
183
+ no: 'No'
184
+ status: 'Status:'
185
+ error: Error
186
+ successful: Successful
187
+ chat: Chat
188
+ agents: 'Agents:'
189
+ base:
190
+ view_raw_data: View raw event data
191
+ view_formatted: View formatted event
192
+ event_data: Event Data
193
+ rag_start:
194
+ selected_namespaces: 'Selected namespaces:'
195
+ additional_filters: 'Additional metadata filters:'
196
+ no_filters: No additional filters
197
+ rag_stop:
198
+ failure_reason:
199
+ context_insufficient: Retrieved context was insufficient — the answer is a fallback,
200
+ not grounded in your knowledge sources.
201
+ expert_declined: The human expert could not provide an answer — this run did
202
+ not produce a grounded response.
203
+ expert_errored: The expert escalation failed with an error — this run did not
204
+ produce a grounded response.
205
+ few_shot_rejected: The query did not match any known pattern, so the answer
206
+ was produced without retrieval.
207
+ limitChatHistory:
208
+ summary: Chat history limited to {count} messages
209
+ assistant: Assistant
210
+ system: System
211
+ user: User
212
+ description: Chat history was truncated based on token limits to stay within model
213
+ constraints
214
+ addMemoryToChatHistory:
215
+ summary: Added {count} memory message to chat history | Added {count} memory messages
216
+ to chat history
217
+ description: Chat history was extended with relevant memories from previous interactions
218
+ assistant: Assistant
219
+ system: System
220
+ user: User
221
+ reranker:
222
+ topDocuments: 'Top {count} most relevant documents:'
223
+ query: Search Query
224
+ retriever:
225
+ foundDocuments: Found {count} relevant documents
226
+ query: Search Query
227
+ chunksFound: '{count} chunks found'
228
+ retrieveMemory:
229
+ title: Memory Retrieved
230
+ memories: Memories
231
+ relations: Knowledge Graph
232
+ score: Relevance
233
+ noMemories: No memories retrieved
234
+ storeMemory:
235
+ title: Memory Changes
236
+ added: Added
237
+ updated: Updated
238
+ deleted: Deleted
239
+ addedRelations: added relations
240
+ deletedRelations: deleted relations
241
+ relationChanges: Relation Changes
242
+ noChanges: No changes
243
+ documentsSpanning: Spanning {count} documents
244
+ avgScore: 'Avg relevance: {score}%'
245
+ chunksFromDoc: '{count} chunk | {count} chunks'
246
+ chunk: Chunk
247
+ position: 'Pos: {pos}'
248
+ lines: Lines {start}-{end}
249
+ chars: '{count} chars'
250
+ sourceDocument: '{count} source document | {count} source documents'
251
+ contentChunk: '{count} content chunk | {count} content chunks'
252
+ noChunksFound: No chunks found
253
+ noChunksFoundDescription: The retrieval search didn't find any relevant content
254
+ chunks.
255
+ standaloneQuestionCondenser:
256
+ summary: Question refined and condensed
257
+ condensedQuestion: Condensed Question
258
+ user: User
259
+ description: The original question was reformulated to be more specific and context-aware
260
+ for better search results
261
+ statistics:
262
+ charts:
263
+ agentInvocations: Agent Invocations
264
+ agentStart: Agent Start
265
+ endEvents: End Events
266
+ success: Success
267
+ openHumanInTheLoop: Open (Human in the loop)
268
+ openBotInTheLoop: Open (Bot in the Loop)
269
+ error: Error
270
+ delegations: Delegations
271
+ delegatedTaskAgentInTheLoop: Delegated Task (Agent in the Loop)
272
+ allEvents: All Events
273
+ costs:
274
+ table:
275
+ count: Count
276
+ cost: Cost
277
+ input: Input
278
+ output: Output
279
+ embedding: Embedding
280
+ total: Total
281
+ currency: CHF
282
+ service:
283
+ selection:
284
+ title: Services
285
+ description: Here are all the services listed that you have activated
286
+ search: Search
287
+ button: Search
288
+ agent:
289
+ title: Agents
290
+ can_chat: Can Chat
291
+ tabs:
292
+ myAgents: My Agents
293
+ templates: Templates
294
+ templates:
295
+ empty: No templates available
296
+ navigation:
297
+ basic: Overview
298
+ workflow: Workflow
299
+ threads: Threads
300
+ configuration: Configuration
301
+ chat: Chat
302
+ memories: Memories
303
+ overview:
304
+ startEvents: Start Events
305
+ stopEvents: Stop Events
306
+ config: Config
307
+ name: 'Name:'
308
+ class: 'Class:'
309
+ agentId: 'Agent ID:'
310
+ status: 'Status:'
311
+ online: Online
312
+ offline: Offline
313
+ configuration:
314
+ title: Agent Configuration
315
+ description: Configure the runtime behavior and settings for this agent
316
+ runtimeSettings: Runtime Settings
317
+ noConfiguration: No configuration available for this agent
318
+ saveSuccess: Configuration saved successfully
319
+ saveError: Failed to save configuration
320
+ chat:
321
+ title: Start new Chat
322
+ placeholder: Type the message you want to send to the Agent
323
+ createThreadAndSend: Create Thread and Send
324
+ manuallyCreatedThread: Manually created thread
325
+ availableAgents: Available Agents
326
+ list:
327
+ name: Name
328
+ description: Description
329
+ agent: Agent
330
+ is_conversational: Conversational
331
+ true: 'Yes'
332
+ false: 'No'
333
+ status: Status
334
+ online: Online
335
+ offline: Offline
336
+ clone: Clone
337
+ workflow:
338
+ title: Agentic Workflow
339
+ view_tooltip: View workflow
340
+ empty: No workflow graph available for this agent class.
341
+ threads:
342
+ title: Agent Threads
343
+ create:
344
+ button: Create New Agent
345
+ title: Create New Agent
346
+ cancel: Cancel
347
+ selectClass: Agent Type
348
+ selectClassPlaceholder: Select an agent type...
349
+ agentId: Agent ID
350
+ agentIdPlaceholder: my-new-agent
351
+ agentIdHelp: Unique identifier (lowercase letters, numbers, hyphens, underscores)
352
+ agentIdInvalid: Only lowercase letters, numbers, hyphens, and underscores are
353
+ allowed
354
+ agentIdTooLong: Agent ID must be 100 characters or less
355
+ configuration: Configuration
356
+ noAgentClasses: No agent types available. Make sure at least one agent is running.
357
+ submit: Create Agent
358
+ success: Agent created successfully
359
+ error: Failed to create agent
360
+ steps:
361
+ basicInfo: Basic Info
362
+ delete:
363
+ button: Delete
364
+ title: Delete Agent
365
+ confirm: Are you sure you want to delete this agent?
366
+ confirmMessage: This action cannot be undone. The agent configuration will be
367
+ permanently removed.
368
+ success: Agent deleted successfully
369
+ error: Failed to delete agent
370
+ cannotDeleteDefault: Default agent configurations cannot be deleted
371
+ add_instance:
372
+ title: Add Agent
373
+ description: Create a new agent instance
374
+ selector:
375
+ class:
376
+ label: Agent Type
377
+ placeholder: Select an agent type...
378
+ id:
379
+ label: Agent Profile
380
+ placeholder: Select an agent profile...
381
+ help: Choose the specific agent profile to use
382
+ memories:
383
+ title: Agent Memories
384
+ description: Memories collected by {agentName} about you
385
+ delete_all:
386
+ confirm_header: Delete All Agent Memories
387
+ confirm_message: Are you sure you want to delete all memories collected by this
388
+ agent? This action cannot be undone.
389
+ success:
390
+ title: Success
391
+ message: All agent memories deleted successfully
392
+ error:
393
+ title: Delete Failed
394
+ message: Failed to delete agent memories. Please try again.
395
+ document:
396
+ list:
397
+ title: Document Title
398
+ created: Created
399
+ updated_at: Last updated
400
+ language: Language
401
+ document_type: Document Type
402
+ number_of_pages: Number of Pages
403
+ download: Download
404
+ is_processing: Processing
405
+ knowledge:
406
+ title: Knowledge Databases
407
+ created_at: 'Created:'
408
+ updated_at: 'Last updated:'
409
+ navigation:
410
+ document:
411
+ basic: Overview
412
+ original: Original
413
+ content: Content
414
+ nodes: Chunks
415
+ summary: Summaries
416
+ original:
417
+ not_available: Original document view is only available for PDF files.
418
+ load_error: Failed to load the original document.
419
+ view_button: View Original
420
+ open_new_tab: Open in new tab
421
+ title: Original Document
422
+ click_to_view: Click the button below to view the original PDF document.
423
+ documents:
424
+ title: Documents
425
+ search:
426
+ placeholder: Search by document title...
427
+ upload:
428
+ title: Upload Documents
429
+ drag_and_drop: Drag files here or click to select files
430
+ target_location:
431
+ label: Target Location
432
+ help: Folder where the documents should be stored
433
+ errors:
434
+ unsupported_file_type: 'One file has an unsupported type. Supported types
435
+ are: {supportedTypes} | {count} files have an unsupported type. Supported
436
+ types are: {supportedTypes}'
437
+ actions:
438
+ upload: Upload
439
+ cancel: Cancel
440
+ nodes:
441
+ title: Document Chunks
442
+ summary:
443
+ title: Document Summaries
444
+ level: Level
445
+ no_summaries_at_level: No summaries on this Level
446
+ actions:
447
+ save: Save
448
+ create: Create
449
+ cancel: Cancel
450
+ add_folder:
451
+ title: Add Collection
452
+ description: Create a new knowledge collection
453
+ cancel: Cancel
454
+ auto_sync:
455
+ title: Auto-synchronized
456
+ description: Collections are automatically managed
457
+ manual_management:
458
+ description: Collections can be created and managed manually
459
+ edit_namespace: Edit collection
460
+ upload_documents: Upload documents
461
+ form:
462
+ create:
463
+ title: Create Collection
464
+ edit:
465
+ title: Edit Collection
466
+ database:
467
+ label: Knowledge Database
468
+ placeholder: Knowledge Database Name
469
+ folder_name:
470
+ label: Collection Name
471
+ placeholder: my-collection
472
+ help: Only alphanumeric characters, hyphens (-), and underscores (_) are allowed
473
+ edit_help: Technical name of the collection
474
+ validation_error: Collection name can only contain alphanumeric characters,
475
+ hyphens (-), and underscores (_)
476
+ display_name:
477
+ label: Display Name
478
+ placeholder: Display Name
479
+ help: Display name of the collection
480
+ description:
481
+ label: Description
482
+ placeholder: Description
483
+ help: Description of the collection
484
+ auth:
485
+ renew:
486
+ processing: Processing silent token renewal...
487
+ callback:
488
+ processing: Processing authentication callback...
489
+ loggingIn: Logging you in...
490
+ loginError: Login Error
491
+ redirectingToLogin: Redirecting to login page...
492
+ genericError: An error occurred during login. Please try again.
493
+ login:
494
+ title: Login
495
+ description: Please log in to access the application
496
+ tagline: Experience the future of artificial intelligence
497
+ welcome: Welcome to the AI Hub of {companyName}
498
+ pleaseLogin: Please log in
499
+ loginWith: Login with {provider}
500
+ customSolutions: Custom AI solutions for your company
501
+ logoAlt: Logo of company
502
+ timerange:
503
+ 1h: 1 Hour
504
+ 24h: 1 Day
505
+ 30d: 1 Month
506
+ 365d: 1 Year
507
+ chart:
508
+ no_data: No data available for this period.
509
+ trending_up: Trending Up
510
+ trending_down: Trending Down
511
+ dashboard:
512
+ all_agents: All Agents
513
+ users: AI-Hub Users
514
+ unknown_agent: Unknown Agent
515
+ add_widget: Add Widget
516
+ select_data_type: Select Data type
517
+ select_agent: Select an Agent (Optional)
518
+ create: Create
519
+ create_widget: Create new Widget
520
+ events:
521
+ StartEvent:
522
+ label: Started Agent Runs
523
+ StopEvent:
524
+ label: Successful Runs
525
+ UserMessageEvent:
526
+ label: User Chat Messages
527
+ ExceptionEvent:
528
+ label: Errors
529
+ HumanInTheLoopRequestEvent:
530
+ label: Human in the Loop
531
+ BotInTheLoopRequestEvent:
532
+ label: Ask in Slack/Teams
533
+ AgentInTheLoopRequestEvent:
534
+ label: Tasks Delegated
535
+ evaluation:
536
+ langfuse_link: Run Experiments
537
+ dataset:
538
+ title: Datasets
539
+ created_at: 'Created:'
540
+ updated_at: 'Updated at:'
541
+ create_description: Create a new dataset that you can use to evaluate the performance
542
+ of your Assitants!
543
+ name: Name
544
+ description: Description
545
+ cancel: Cancel
546
+ save: Save
547
+ create_new: Create new Dataset
548
+ add_at_least_one: Add at least 1 Datapoint
549
+ question_header: Question
550
+ answer_header: Answer
551
+ status: Status
552
+ new: New
553
+ question_placeholder: Question
554
+ answer_placeholder: Answer
555
+ add_button: Add
556
+ save_button: Save Dataset
557
+ save_confirmation: Save dataset? Once added, you can not remove items again.
558
+ cancel_button: Cancel
559
+ save_action: Save
560
+ saved_summary: Saved
561
+ saved_detail: Dataset saved
562
+ role:
563
+ title: Access Roles
564
+ name: Name
565
+ description: Description
566
+ edit: Edit Role
567
+ create_new: New Role
568
+ add_access_role: Add access role
569
+ add_button: Add
570
+ is_new: New
571
+ save_button: Save
572
+ access_rules: Access Rules
573
+ usage_limits: Usage Limits
574
+ usage_pattern: Pattern
575
+ usage_limit_value: Limit
576
+ usage_period: Period
577
+ calls_per: calls
578
+ unlimited: Unlimited
579
+ no_access_rules: No access rules defined
580
+ access_rules_help_intro: 'Hierarchical rules control access to resources:'
581
+ access_rules_help_all_agents: All agents
582
+ access_rules_help_agent_instances: All instances of MyAgent
583
+ access_rules_help_service: Knowledge service
584
+ access_rules_help_admin: Admin access to everything
585
+ pattern_help_intro: 'Patterns use wildcards to match agents:'
586
+ pattern_help_all: All agents
587
+ pattern_help_wildcard: All instances of MyAgent
588
+ pattern_help_specific: Only a specific instance
589
+ create_dialog:
590
+ description: Create a new role with access rules. To assigne the new role to users,
591
+ please use your AD.
592
+ cancel: Cancel
593
+ save: Save
594
+ remove_dialog:
595
+ confirm: Are you sure?
596
+ explanation: If you remove this role, users might loose access to certain features
597
+ of the ai-hub.
598
+ cancel: Cancel
599
+ proceed: Delete anyways
600
+ role_deleted:
601
+ summary: Role deleted
602
+ detail: Role was deleted. Users with this role might have lost access to certain
603
+ features.
604
+ role_saved:
605
+ summary: Role saved
606
+ detail: Role saved successfully, the new access rules take effect immediately.
607
+ usage:
608
+ title: Usage
609
+ calls_remaining: '{current} / {limit} agent calls'
610
+ unlimited_calls: Unlimited agent calls
611
+ resets_at: Resets {time}
612
+ limit_exceeded: Agent call limit reached
613
+ limit_exceeded_detail: Please wait until {time} or contact your administrator
614
+ period:
615
+ 1h: Per hour
616
+ 1d: Per day
617
+ 7d: Per week
618
+ 1mo: Per month
619
+ notification:
620
+ title: Notifications
621
+ no_unread_notifications: No unread notifications
622
+ no_notifications: No notifications available
623
+ no_pending_notifications: No pending notifications
624
+ mark_all_as_read: Mark all as read
625
+ mark_as_read: Mark as read
626
+ mark_as_done: Mark as done
627
+ view_all: View all notifications
628
+ click_to_view: Click to view notification
629
+ clear_selection: Clear selection
630
+ select_all: Select all notifications
631
+ filter_notifications: Filter notifications
632
+ select_notification: Select notification
633
+ view_button: View
634
+ default_summary: New Notification
635
+ filter:
636
+ all: All
637
+ unread: Unread
638
+ not_done: To Do
639
+ types:
640
+ info: Info
641
+ success: Success
642
+ warn: Warning
643
+ error: Error
644
+ severities:
645
+ low: Low
646
+ medium: Medium
647
+ high: High
648
+ critical: Critical
649
+ bar:
650
+ toggle_dark_mode: Toggle dark mode
651
+ show_notifications: Show notifications
652
+ process:
653
+ title: Processes
654
+ overview:
655
+ name: Name
656
+ class: Class
657
+ processId: Process ID
658
+ status: Status
659
+ online: Online
660
+ offline: Offline
661
+ navigation:
662
+ overview: Overview
663
+ walkthroughs: Runs
664
+ start: Start Run
665
+ configuration: Configuration
666
+ list:
667
+ online: Online
668
+ offline: Offline
669
+ configuration:
670
+ title: Process Configuration
671
+ description: Configure the runtime behavior of this process instance.
672
+ runtimeSettings: Runtime Settings
673
+ saveSuccess: Configuration saved successfully
674
+ saveError: Failed to save configuration
675
+ noConfiguration: No configuration available for this process.
676
+ create:
677
+ title: Create New Process
678
+ selectClass: Process Type
679
+ selectClassPlaceholder: Select a process type...
680
+ noProcessClasses: No process types available.
681
+ steps:
682
+ basicInfo: Basic Info
683
+ submit: Create Process
684
+ cancel: Cancel
685
+ success: Process created successfully
686
+ error: Failed to create process
687
+ delete:
688
+ button: Delete
689
+ title: Delete Process
690
+ confirmMessage: Are you sure you want to delete this process instance? This action
691
+ cannot be undone.
692
+ success: Process deleted successfully
693
+ error: Failed to delete process
694
+ add_instance:
695
+ title: Add Process
696
+ description: Create a new process instance
697
+ walkthrough:
698
+ list:
699
+ created: Created
700
+ updated: Last Interaction
701
+ agents: Agents
702
+ users: Users
703
+ state: State
704
+ in_progress: In Progress
705
+ done: Done
706
+ steps: Progress
707
+ form:
708
+ locale_input:
709
+ translate_tooltip: Translate to all languages
710
+ lib:
711
+ vectorStore:
712
+ label: Vector Store
713
+ help: Select the knowledge database and namespaces to search
714
+ database:
715
+ label: Database
716
+ namespaces:
717
+ label: Namespaces
718
+ placeholder: Select namespaces (empty = all)
719
+ help: Leave empty to search all namespaces
720
+ allowedFilterFields:
721
+ label: Allowed Filter Fields
722
+ placeholder: Add a metadata key and press Enter
723
+ help: Metadata keys publishers may filter on at query time. The reserved `namespace`
724
+ key is never allowed.
725
+ memory:
726
+ title: Memories
727
+ graph:
728
+ title: Knowledge Graph
729
+ list:
730
+ title: Memory List
731
+ detail:
732
+ title: Memory Details
733
+ created_at: Created At
734
+ agent_link_label: Created by Agent
735
+ thread_link_label: Related Thread
736
+ thread_title: Thread Interaction
737
+ update:
738
+ success:
739
+ title: Success
740
+ message: Memory updated successfully
741
+ error:
742
+ title: Update Failed
743
+ message: Failed to update memory. Please try again.
744
+ delete:
745
+ success:
746
+ title: Success
747
+ message: Memory deleted successfully
748
+ error:
749
+ title: Delete Failed
750
+ message: Failed to delete memory. Please try again.
751
+ edit:
752
+ memory_content_label: Memory Content
753
+ edit_button: Edit
754
+ save_button: Save
755
+ cancel_button: Cancel
756
+ delete_button: Delete
757
+ delete_confirm_header: Delete Memory
758
+ delete_confirm_message: Are you sure you want to delete this memory? This action
759
+ cannot be undone.
760
+ validation_error: Validation Error
761
+ validation_empty: Memory content cannot be empty
762
+ table:
763
+ memory: Memory
764
+ agent: Agent
765
+ created: Created
766
+ score: Score
767
+ pagination: Page {currentPage} of {totalPages}
768
+ search:
769
+ button: Search
770
+ placeholder: Search memories...
771
+ clear: Clear
772
+ delete_all:
773
+ button: Delete All
774
+ confirm_header: Delete All Memories
775
+ confirm_message: Are you sure you want to delete all memories? This action cannot
776
+ be undone.
777
+ success:
778
+ title: Success
779
+ message: All memories deleted successfully
780
+ error:
781
+ title: Delete Failed
782
+ message: Failed to delete all memories. Please try again.
783
+ openwebui:
784
+ memories:
785
+ title: Agent Memories
786
+ select_agent: Select Agent
787
+ list: List
788
+ graph: Graph
789
+ user_memories: User Memories
790
+ org_memories: Organization Memories
791
+ tenant:
792
+ select_title: Select a Tenant
793
+ select_description: Choose which organization you want to work in
794
+ no_tenant_title: No Tenant Access
795
+ no_tenant_description: You don't have access to any tenant. Please contact your
796
+ administrator.
797
+ switcher_label: Switch Tenant
798
+ current_tenant: Current Tenant
799
+ mismatch_warning: Tenant Mismatch
800
+ mismatch_description: Your active tenant was changed to {tenant} in another session.
801
+ The chat interface uses the active tenant for all requests.
802
+ mismatch_switch_action: Switch Tenant
803
+ administration_title: Tenant Administration
804
+ administration_description: Manage tenants across the platform