()
| 25 | await ensureAuthenticated(); |
| 26 | |
| 27 | async function createClient() { |
| 28 | const jwtToken = await getJWTToken(); |
| 29 | return new Mixedbread({ |
| 30 | baseURL: BASE_URL, |
| 31 | apiKey: jwtToken, |
| 32 | }); |
| 33 | } |
| 34 | |
| 35 | const client = await createClient(); |
| 36 | return new MixedbreadStore(client, createClient); |
no test coverage detected