Skip to content
Snippets Groups Projects
Commit 0576fcdc authored by Logan's avatar Logan Committed by GitHub
Browse files

Merge pull request #275 from run-llama/ms/set-max-tokens-512

parents 10a0a692 15aaabdc
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ export async function POST(request: NextRequest) { ...@@ -44,7 +44,7 @@ export async function POST(request: NextRequest) {
const llm = new OpenAI({ const llm = new OpenAI({
model: MODEL, model: MODEL,
maxTokens: 2048, maxTokens: 512,
}); });
const chatEngine = await createChatEngine(llm); const chatEngine = await createChatEngine(llm);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment