Commit Graph

1062 Commits

Author SHA1 Message Date
Juan
b6216de202 vercel deployment 2025-01-16 14:55:00 -05:00
Milton Lenis
f416e251e2 Base page 2025-01-16 14:50:17 -05:00
14752da5a1 Merge pull request #439 from Monadical-SAS/fix-diarizer
Fix model download
2024-12-27 15:01:07 +01:00
7ff201f3ff Fix model download 2024-12-27 14:23:03 +01:00
f2193c7175 Merge pull request #438 from Monadical-SAS/fix-room-join
Create new meeting after previous has ended
2024-12-24 15:24:19 +01:00
b193345fde Fix linting 2024-12-24 14:19:43 +01:00
159bd82e1c Create new meeting after previous has ended 2024-12-24 14:18:35 +01:00
2053f34759 Merge pull request #437 from Monadical-SAS/room-loading-spinner
Room loading spinner
2024-12-17 14:26:41 +01:00
21f27c0c0a Room loading spinner 2024-12-17 14:06:05 +01:00
dfdebdb1fc Merge pull request #435 from Monadical-SAS/fix-optout-message
Fix optout message
2024-10-15 16:41:35 +02:00
315814db53 Fix optout message 2024-10-15 16:40:50 +02:00
f3521e4705 Merge pull request #434 from Monadical-SAS/fix-locked-rooms
Remove viewer room url
2024-10-11 14:23:48 +02:00
2cbcfefb3f Remove viewer room url 2024-10-11 13:50:22 +02:00
145747087d Merge pull request #425 from Monadical-SAS/fix-recording-processing
Fix recording processing
2024-10-08 14:03:23 +02:00
c99add09e8 Fix recording processing 2024-10-08 13:59:11 +02:00
7306d2e7ff Merge pull request #424 from Monadical-SAS/fix-filters
Fix filters
2024-10-04 19:35:08 +02:00
d3bb8dae2a Fix filters 2024-10-04 19:34:39 +02:00
8ea6316409 Merge pull request #423 from Monadical-SAS/fix-paging
Fix paging
2024-10-04 19:24:41 +02:00
4899a3854c Fix paging 2024-10-04 19:20:41 +02:00
fae7d0d386 Merge pull request #422 from Monadical-SAS/transcriptions-page-redesign
Transcriptions page redesign
2024-10-04 18:30:18 +02:00
f1031f93d8 Fix processing 2024-10-04 18:27:47 +02:00
bc33c6fb88 Fix validation 2024-10-04 18:24:45 +02:00
ecb91bedc3 Add shared rooms 2024-10-04 17:20:35 +02:00
39d02ab265 Add transcript source kind 2024-10-04 16:38:29 +02:00
ebb32ee613 Transcriptions filtering and search 2024-10-04 13:28:17 +02:00
895ba36cb9 fix: modal upgrade (#421) 2024-10-01 16:39:24 +02:00
10250b1d1a Merge pull request #420 from Monadical-SAS/filter-rooms-by-user
Filter rooms by user
2024-09-26 18:32:52 +02:00
08b046095f Filter rooms by user 2024-09-26 16:54:36 +02:00
8702aaf492 Merge pull request #419 from Monadical-SAS/unique-room-names
Make sure room names are unique
2024-09-25 13:38:40 +02:00
3ba3192800 Fix api error handling 2024-09-25 13:30:58 +02:00
83857507ea Make sure room names are unique 2024-09-25 13:13:18 +02:00
9dec492b2f Merge pull request #417 from Monadical-SAS/load-all-rooms
Load all the rooms
2024-09-24 17:51:13 +02:00
857cf2550a Load all the rooms 2024-09-24 16:37:20 +02:00
3a4986e07b Merge pull request #416 from Monadical-SAS/replace-streams-json
Replace streams json
2024-09-24 15:46:29 +02:00
b8d4be1fac Remove update streams aws lambda 2024-09-24 15:28:23 +02:00
de8544a126 Update room config zulip streams 2024-09-24 15:22:43 +02:00
901de8c009 Replace streams json 2024-09-24 14:54:44 +02:00
5267ab2d37 feat: retake summary using NousResearch/Hermes-3-Llama-3.1-8B model (#415)
This feature a new modal endpoint, and a complete new way to build the
summary.

## SummaryBuilder

The summary builder is based on conversational model, where an exchange
between the model and the user is made. This allow more context
inclusion and a better respect of the rules.

It requires an endpoint with OpenAI-like completions endpoint
(/v1/chat/completions)

## vLLM Hermes3

Unlike previous deployment, this one use vLLM, which gives OpenAI-like
completions endpoint out of the box. It could also handle guided JSON
generation, so jsonformer is not needed. But, the model is quite good to
follow JSON schema if asked in the prompt.

## Conversion of long/short into summary builder

The builder is identifying participants, find key subjects, get a
summary for each, then get a quick recap.

The quick recap is used as a short_summary, while the markdown including
the quick recap + key subjects + summaries are used for the
long_summary.

This is why the nextjs component has to be updated, to correctly style
h1 and keep the new line of the markdown.
2024-09-14 02:28:38 +02:00
6c4eac04c1 fix: prevent unattended reloading on transcript page (#410) 2024-09-11 02:35:33 +02:00
50ad721afa fixes: missing include_topics in the get_zulip_message() (#409) 2024-09-06 23:36:08 +02:00
75411820b5 Merge pull request #408 from Monadical-SAS/update-zulip-message
Update zulip message
2024-09-06 18:30:14 +02:00
a85a1ea3d1 Send message if the original is missing 2024-09-06 18:10:38 +02:00
d04e617607 Remove nextjs zulip api 2024-09-06 17:31:09 +02:00
6d976044d0 Update zulip message 2024-09-06 16:09:44 +02:00
db714f6390 fix: unattended component reload due to session changes (#407)
* fix: unattended component reload due to session changes

When the session is updated, status goes back to loading then
authenticated or unauthenticated. session.accessTokenExpires may also be
updated.

This triggered various component refresh at unattented times, and brake
the user experience.

By splitting to only what's needed with memoization, it will prevent
unattented refresh.

* review

* review: change syntax
2024-09-05 18:46:47 +02:00
c5f7fcc06b Merge pull request #406 from Monadical-SAS/opt-out-of-recording
Opt out of recording
2024-09-05 15:08:33 +02:00
7587499844 Opt out of recording 2024-09-05 15:04:49 +02:00
15c95d6bfa Remove new meeting button 2024-09-05 14:01:03 +02:00
833a5d1191 fix: sso refresh token race condition (#405)
With NextAuth, there is a race condition of the current implementation
of refreshToken using multiple tab. Because getSession() is broadcasted
(or triggered by another component, window focus or such), we may ask
for the jwt() to be refreshed at the same time.

The problem is the first time will go correctly, while all others calls
will be rejected as they are using a revoked token.

This redis lock is per-user, and will use redis lock as a source of
truth.
2024-09-05 00:47:02 +02:00
6aab6ac3fa fix: fix global layout overscroll + link colors (#404) 2024-09-04 17:26:23 +02:00