eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
39 lines (38 loc) • 1.45 kB
TypeScript
import type { AgentReasoningDefinition } from "#shared/agent-definition.js";
import type { AgentModelSetting, AgentModelSettingsPatch } from "#source-change/apply-agent-model-settings.js";
export type ApplyModelSettingsOutcome = {
kind: "changed";
changed: readonly AgentModelSetting[];
model?: string;
reasoning?: AgentReasoningDefinition | null;
fastMode?: boolean;
} | {
kind: "unchanged";
} | {
kind: "rejected";
message: string;
};
export declare function formatApplyModelSettingsOutcome(outcome: ApplyModelSettingsOutcome): string;
/** The outcome of applying a model slug to the agent's authored source. */
export type ApplyModelOutcome = {
kind: "changed";
to: string;
} | {
kind: "unchanged";
model: string;
} | {
kind: "rejected";
message: string;
};
/** The one-line transcript form of an apply outcome (`/model <slug>`'s reply). */
export declare function formatApplyModelOutcome(outcome: ApplyModelOutcome): string;
/** Applies one completed `/model` draft through a single atomic source write. */
export declare function changeAgentModelSettings(input: {
readonly appRoot: string;
readonly patch: AgentModelSettingsPatch;
}): Promise<ApplyModelSettingsOutcome>;
/** Applies a validated `/model <slug>` change to authored source. */
export declare function changeAgentModel(input: {
readonly appRoot: string;
readonly slug: string;
}): Promise<ApplyModelOutcome>;