(config: Partial<Parameters<typeof Eval.create>[0]>)
| 54 | END`; |
| 55 | |
| 56 | async function createEvalWithPrompts(config: Partial<Parameters<typeof Eval.create>[0]>) { |
| 57 | return Eval.create(config as Parameters<typeof Eval.create>[0], renderedPrompts, { |
| 58 | completedPrompts: [completedPrompt], |
| 59 | }); |
| 60 | } |
| 61 | |
| 62 | async function resetEvalTables() { |
| 63 | const db = await getDb(); |
no test coverage detected
searching dependent graphs…