• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

inclusion-numerique / coop-mediation-numerique / 4c3f2b63-ebf1-404a-997e-d0d9c5d67600

01 Apr 2026 04:09PM UTC coverage: 7.472% (-3.2%) from 10.684%
4c3f2b63-ebf1-404a-997e-d0d9c5d67600

Pull #464

circleci

web-flow
chore(deps): bump next from 15.5.9 to 15.5.14

Bumps [next](https://github.com/vercel/next.js) from 15.5.9 to 15.5.14.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/compare/v15.5.9...v15.5.14)

---
updated-dependencies:
- dependency-name: next
  dependency-version: 15.5.14
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #464: chore(deps): bump next from 15.5.9 to 15.5.14

500 of 10542 branches covered (4.74%)

Branch coverage included in aggregate %.

1500 of 16224 relevant lines covered (9.25%)

36.99 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/apps/web/src/assistant/rag/getRagChunksForQuery.ts
1
import { createEmbedding } from '@app/web/assistant/createEmbedding'
2
import { executeRagSearch } from '@app/web/assistant/rag/executeRagSearch'
3

4
export type GetRagChunksForQueryOptions = {
5
  limit?: number
6
  sources: string[]
7
}
8

9
export const getRagChunksForQuery = async (
×
10
  query: string,
11
  { limit = 5, sources }: GetRagChunksForQueryOptions,
×
12
) => {
13
  const embeddedQuery = await createEmbedding(query)
×
14

15
  const chunkResults = await executeRagSearch({
×
16
    embedding: embeddedQuery.embedding,
17
    model: embeddedQuery.model,
18
    limit,
19
    sources,
20
  })
21

22
  return {
×
23
    chunkResults,
24
  }
25
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc