Added support for Document Analysis Assistant in components and events

This commit is contained in:
Thorsten Sommer 2025-10-20 15:59:46 +02:00
parent 2f92ced700
commit 76384e6eab
No known key found for this signature in database
GPG Key ID: B0B7E2FC074BF1F5
2 changed files with 3 additions and 0 deletions

View File

@ -42,6 +42,7 @@ public static class ComponentsExtensions
Components.JOB_POSTING_ASSISTANT => TB("Job Posting Assistant"),
Components.ERI_ASSISTANT => TB("ERI Server"),
Components.I18N_ASSISTANT => TB("Localization Assistant"),
Components.DOCUMENT_ANALYSIS_ASSISTANT => TB("Document Analysis Assistant"),
Components.CHAT => TB("New Chat"),
@ -62,6 +63,7 @@ public static class ComponentsExtensions
Components.SYNONYMS_ASSISTANT => new(Event.SEND_TO_SYNONYMS_ASSISTANT, Routes.ASSISTANT_SYNONYMS),
Components.MY_TASKS_ASSISTANT => new(Event.SEND_TO_MY_TASKS_ASSISTANT, Routes.ASSISTANT_MY_TASKS),
Components.JOB_POSTING_ASSISTANT => new(Event.SEND_TO_JOB_POSTING_ASSISTANT, Routes.ASSISTANT_JOB_POSTING),
Components.DOCUMENT_ANALYSIS_ASSISTANT => new(Event.SEND_TO_DOCUMENT_ANALYSIS_ASSISTANT, Routes.ASSISTANT_DOCUMENT_ANALYSIS),
Components.CHAT => new(Event.SEND_TO_CHAT, Routes.CHAT),

View File

@ -47,4 +47,5 @@ public enum Event
SEND_TO_SYNONYMS_ASSISTANT,
SEND_TO_MY_TASKS_ASSISTANT,
SEND_TO_JOB_POSTING_ASSISTANT,
SEND_TO_DOCUMENT_ANALYSIS_ASSISTANT,
}