deepagents
Version:
Deep Agents - a library for building controllable AI agents with LangGraph
18 lines (17 loc) • 590 B
TypeScript
/**
* Model configuration for Deep Agents
*
* Default model configuration matching the Python implementation exactly.
* Returns a ChatAnthropic instance configured with claude-sonnet-4-20250514 and maxTokens: 4096.
*/
import { LanguageModelLike } from "./types.js";
/**
* Get the default model for Deep Agents
*
* Returns a ChatAnthropic instance configured exactly like the Python version:
* - model: "claude-sonnet-4-20250514"
* - maxTokens: 4096
*
* @returns ChatAnthropic instance with default configuration
*/
export declare function getDefaultModel(): LanguageModelLike;