x1ongzhu 1 년 전
부모
커밋
a8d49956e2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/paper/paper-gen/index.ts

+ 1 - 1
src/paper/paper-gen/index.ts

@@ -9,7 +9,7 @@ import { createAbstract } from './abstract'
 import { createUseCase } from './useCase'
 
 export async function genPaper(title: string, desc: string) {
-    const tools = createLLM()
+    const tools = createLLM({ model: 'gpt-3.5-turbo-16k' })
     const { llm, usage, conversation } = tools
     const pRetry = (await eval("import('p-retry')")).default