Skip to content

Commit

Permalink
Reduce find relevant passage concurrent requests to 2 (#120)
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Sundberg <[email protected]>
  • Loading branch information
seansund authored Oct 26, 2023
1 parent 12f0cf7 commit 665be3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/data-extraction/data-extraction.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {first, GenAiModel, GenerativeResponse} from "../../utils";
import pQueue from '../../utils/p-queue'
import PQueue from "../../utils/p-queue";

const queue = new PQueue({concurrency: 4});
const queue = new PQueue({concurrency: 2});

export interface DataExtractionBackendConfig {
identityUrl: string;
Expand Down

0 comments on commit 665be3d

Please sign in to comment.