Skip to content

Commit

Permalink
Merge pull request #101 from technologiestiftung/feat/new-embeddings
Browse files Browse the repository at this point in the history
feat: change match_threshold
  • Loading branch information
Jaszkowic authored Feb 29, 2024
2 parents 2713f9f + dffbde4 commit e295792
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ export enum Algorithms {

export const availableAlgorithms = [
{
match_threshold: 0.85,
match_threshold: 0.5,
num_probes_summaries: 3,
num_probes_chunks: 9,
chunk_limit: 64,
document_limit: 3,
search_algorithm: Algorithms.ChunksOnly,
} as DocumentSearchBody,
{
match_threshold: 0.85,
match_threshold: 0.5,
num_probes_summaries: 3,
num_probes_chunks: 9,
chunk_limit: 128,
Expand All @@ -92,7 +92,7 @@ export const availableAlgorithms = [
search_algorithm: Algorithms.ChunksAndSummaries,
} as DocumentSearchBody,
{
match_threshold: 0.85,
match_threshold: 0.5,
num_probes_summaries: 3,
num_probes_chunks: 9,
summary_limit: 64,
Expand Down

0 comments on commit e295792

Please sign in to comment.