@llumiverse/common
Version:
Public types, enums and options used by Llumiverse API.
16 lines • 598 B
TypeScript
import { type ModelOptions, type ModelOptionsInfo } from "../types.js";
export interface AnthropicClaudeOptions {
_option_id: "anthropic-claude";
max_tokens?: number;
temperature?: number;
top_p?: number;
top_k?: number;
stop_sequence?: string[];
effort?: 'low' | 'medium' | 'high' | 'xhigh' | 'max';
thinking_budget_tokens?: number;
include_thoughts?: boolean;
cache_enabled?: boolean;
cache_ttl?: '5m' | '1h';
}
export declare function getAnthropicOptions(model: string, option?: ModelOptions): ModelOptionsInfo;
//# sourceMappingURL=anthropic.d.ts.map