mirror of
https://github.com/vercel/eve.git
synced 2026-09-20 05:35:39 +08:00
5bbb085e58
Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com> Co-authored-by: Casey Gowrie <6045519+ctgowrie@users.noreply.github.com>
14 lines
251 B
TypeScript
14 lines
251 B
TypeScript
import { defineAgent } from "eve";
|
|
|
|
export default defineAgent({
|
|
model: "openai/gpt-5.6-luna-fast",
|
|
modelOptions: {
|
|
providerOptions: {
|
|
openai: {
|
|
reasoningEffort: "high",
|
|
reasoningSummary: "auto",
|
|
},
|
|
},
|
|
},
|
|
});
|