Templates

Weather

A small representative eve app with agent config, instructions, a typed weather tool, and a markdown skill.

View GitHub
  • HTTP API
Model
anthropic/claude-sonnet-5
Authored files
4

Filesystem

Browse the authored files at revision 71d5718.

agent/agent.tstypescript
import { defineAgent } from "eve";

export default defineAgent({
  model: "anthropic/claude-sonnet-5",
  modelOptions: {
    providerOptions: {
      openai: {
        reasoningEffort: "high",
        reasoningSummary: "auto",
      },
    },
  },
});