|
@@ -9,7 +9,7 @@ import { createAbstract } from './abstract'
|
|
|
import { createUseCase } from './useCase'
|
|
import { createUseCase } from './useCase'
|
|
|
|
|
|
|
|
export async function genPaper(title: string, desc: string) {
|
|
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 { llm, usage, conversation } = tools
|
|
|
const pRetry = (await eval("import('p-retry')")).default
|
|
const pRetry = (await eval("import('p-retry')")).default
|
|
|
|
|
|