Skip to content

Commit

Permalink
fixup! feat(chat): Add API to summarize chat messages
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvergessen committed Nov 8, 2024
1 parent 165b210 commit 489a747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appinfo/routes/routesChatController.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/** @see \OCA\Talk\Controller\ChatController::receiveMessages() */
['name' => 'Chat#receiveMessages', 'url' => '/api/{apiVersion}/chat/{token}', 'verb' => 'GET', 'requirements' => $requirements],
/** @see \OCA\Talk\Controller\ChatController::summarizeChat() */
['name' => 'Chat#summarizeChat', 'url' => '/api/{apiVersion}/chat/{token}/summarize', 'verb' => 'GET', 'requirements' => $requirements],
['name' => 'Chat#summarizeChat', 'url' => '/api/{apiVersion}/chat/{token}/summarize', 'verb' => 'POST', 'requirements' => $requirements],
/** @see \OCA\Talk\Controller\ChatController::sendMessage() */
['name' => 'Chat#sendMessage', 'url' => '/api/{apiVersion}/chat/{token}', 'verb' => 'POST', 'requirements' => $requirements],
/** @see \OCA\Talk\Controller\ChatController::clearHistory() */
Expand Down

0 comments on commit 489a747

Please sign in to comment.