Skip to content

Commit

Permalink
[feat] change model to gpt-3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
james5418 committed Sep 16, 2023
1 parent 1f30c63 commit cbbe89e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/summary_segmentation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { config } from '../config';

export const summarySegmentationRouter = Router();

const MODEL: string = "gpt-4";
const MAX_SEGMENT: number = 7500;
const MODEL: string = "gpt-3.5-turbo-16k";
const MAX_SEGMENT: number = 15000;

const configuration = new Configuration({
apiKey: config.openaiApiKey,
Expand Down

0 comments on commit cbbe89e

Please sign in to comment.