Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions lib/Service/AssistantService.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,23 +91,25 @@ public function __construct(
) {
$this->informationSources = [
'ask_context_chat' => $this->l10n->t('Context Chat'),
'transcribe_file' => $this->l10n->t('Assistant File Transcription'),
'generate_document' => $this->l10n->t('Assistant Document Generation'),
'transcribe_file' => $this->l10n->t('Assistant audio transcription'),
'generate_document' => $this->l10n->t('Assistant document generation'),
'list_calendars' => $this->l10n->t('Nextcloud Calendar'),
'schedule_event' => $this->l10n->t('Nextcloud Calendar'),
'find_free_time_slot_in_calendar' => $this->l10n->t('Nextcloud Calendar'),
'add_task' => $this->l10n->t('Nextcloud Tasks'),
'find_details_of_current_user' => $this->l10n->t('Nextcloud User Profile'),
'find_person_in_contacts' => $this->l10n->t('Nextcloud Contacts'),
'find_details_of_current_user' => $this->l10n->t('Nextcloud user profile'),
'list_decks' => $this->l10n->t('Nextcloud Deck'),
'add_card' => $this->l10n->t('Nextcloud Deck'),
'get_coordinates_for_address' => $this->l10n->t('OpenStreetMap'),
'get_current_weather_for_coordinates' => $this->l10n->t('Norwegian Meteorological Institute Weather Forecast'),
'get_public_transport_route_for_coordinates,' => $this->l10n->t('HERE Public Transport API'),
'get_current_weather_for_coordinates' => $this->l10n->t('Norwegian Meteorological Institute weather forecast'),
'get_public_transport_route_for_coordinates,' => $this->l10n->t('HERE Public transport API'),
'get_osm_route,' => $this->l10n->t('OpenStreetMap'),
'get_osm_link,' => $this->l10n->t('OpenStreetMap'),
'get_file_content' => $this->l10n->t('Nextcloud Files'),
'get_folder_tree' => $this->l10n->t('Nextcloud Files'),
'create_public_sharing_link' => $this->l10n->t('Nextcloud Files'),
'generate_image' => $this->l10n->t('Assistant image generation'),
'send_email' => $this->l10n->t('Nextcloud Mail'),
'get_mail_account_list' => $this->l10n->t('Nextcloud Mail'),
'list_projects,' => $this->l10n->t('OpenProject'),
Expand All @@ -117,7 +119,7 @@ public function __construct(
'create_public_conversation' => $this->l10n->t('Nextcloud Talk'),
'send_message_to_conversation' => $this->l10n->t('Nextcloud Talk'),
'list_messages_in_conversation' => $this->l10n->t('Nextcloud Talk'),
'duckduckgo_results_json' => $this->l10n->t('DuckDuckGo Web Search'),
'duckduckgo_results_json' => $this->l10n->t('DuckDuckGo web search'),
];
}

Expand Down