Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3274c7f
feat(audiochat): implement generic audio chat provider that schedules…
julien-nc Jul 3, 2025
b98e717
feat(audio-chat): record audio, store file, submit new fake message
julien-nc Jul 3, 2025
285b40d
feat(audio-chat): adjust UI to really submit, handle audio attachment…
julien-nc Jul 4, 2025
0c0ed92
feat(audio-chat): auto play new assistant audio messages
julien-nc Jul 4, 2025
2d53275
feat(audio-chat): generate openAPI specs
julien-nc Jul 7, 2025
3a706b8
feat(audio-chat): remove fallback task type, register provider only i…
julien-nc Jul 7, 2025
ffe2bcf
feat(audio-chat): filter out the audio chat task type in the assistan…
julien-nc Jul 7, 2025
7594d46
feat(audio-chat): implement ContextAgentAudioInteraction provider and…
julien-nc Jul 7, 2025
9a72e81
feat(audio-chat): add personal setting to toggle autoplay, fix person…
julien-nc Jul 8, 2025
bb6124e
feat(audio-chat): make sure attachments are always set in the entity
julien-nc Jul 8, 2025
e609d1d
feat(audio-chat): perform TTS for response after agency confirmation
julien-nc Jul 8, 2025
ba4ea60
feat(audio-chat): add support for optional remote_audio_id which we c…
julien-nc Jul 9, 2025
4cecfca
fix(chat): delete related tasks when deleting a session or a message,…
julien-nc Jul 10, 2025
cb6529a
feat(audio-chat): store and use potential remote_audio_expires_at
julien-nc Jul 10, 2025
6d85f2d
fix(audio-chat): prevent crash when trying to delete non existing task
julien-nc Jul 10, 2025
330296c
check if audio chat is available to show the record button, filter ou…
julien-nc Jul 11, 2025
4eb342f
clarify message mapper, use sessionId in deleteMessageById and getMes…
julien-nc Jul 11, 2025
891bb75
in regenerateForSession, delete task related with the deleted message
julien-nc Jul 11, 2025
003cdb3
rename initial state, mention integration_openai in comments, add mis…
julien-nc Jul 11, 2025
5cc7c59
fix typos
julien-nc Jul 11, 2025
7afb3e1
fix(audio-chat): update session title if the first message was audio,…
julien-nc Jul 11, 2025
77c2647
enh(audio-chat): add warning log if TTS of agency post-confirmation m…
julien-nc Jul 15, 2025
cf6648a
enh(audio-chat): add comments and adjust frontend error messages
julien-nc Jul 15, 2025
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
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Known providers:

More details on how to set this up in the [admin docs](https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html)
]]> </description>
<version>2.5.0</version>
<version>2.6.0</version>
<licence>agpl</licence>
<author>Julien Veyssier</author>
<namespace>Assistant</namespace>
Expand Down
1 change: 1 addition & 0 deletions appinfo/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
['name' => 'chattyLLM#newMessage', 'url' => '/chat/new_message', 'verb' => 'PUT'],
['name' => 'chattyLLM#deleteMessage', 'url' => '/chat/delete_message', 'verb' => 'DELETE'],
['name' => 'chattyLLM#getMessages', 'url' => '/chat/messages', 'verb' => 'GET'],
['name' => 'chattyLLM#getMessage', 'url' => '/chat/sessions/{sessionId}/messages/{messageId}', 'verb' => 'GET'],
['name' => 'chattyLLM#generateForSession', 'url' => '/chat/generate', 'verb' => 'GET'],
['name' => 'chattyLLM#regenerateForSession', 'url' => '/chat/regenerate', 'verb' => 'GET'],
['name' => 'chattyLLM#checkSession', 'url' => '/chat/check_session', 'verb' => 'GET'],
Expand Down
10 changes: 5 additions & 5 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions lib/AppInfo/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
use OCA\Assistant\Reference\SpeechToTextReferenceProvider;
use OCA\Assistant\Reference\TaskOutputFileReferenceProvider;
use OCA\Assistant\Reference\Text2ImageReferenceProvider;
use OCA\Assistant\TaskProcessing\AudioToAudioChatProvider;
use OCA\Assistant\TaskProcessing\ContextAgentAudioInteractionProvider;
use OCP\AppFramework\App;
use OCP\AppFramework\Bootstrap\IBootContext;

Expand Down Expand Up @@ -70,6 +72,13 @@ public function register(IRegistrationContext $context): void {
$context->registerNotifierService(Notifier::class);

$context->registerEventListener(AddContentSecurityPolicyEvent::class, CSPListener::class);

if (class_exists('OCP\\TaskProcessing\\TaskTypes\\AudioToAudioChat')) {
$context->registerTaskProcessingProvider(AudioToAudioChatProvider::class);
}
if (class_exists('OCP\\TaskProcessing\\TaskTypes\\ContextAgentAudioInteraction')) {
$context->registerTaskProcessingProvider(ContextAgentAudioInteractionProvider::class);
}
}

public function boot(IBootContext $context): void {
Expand Down
Loading
Loading