glrs
    Preparing search index...

    Type Alias CodingAgentDependencies

    Services required to compose a coding-agent host.

    type CodingAgentDependencies = {
        extensions?: readonly Extension[];
        model?: ModelProvider;
        providers: ProviderRegistry;
        runtime: AgentCore;
        sessionRepository: SessionRepository;
    }
    Index
    extensions?: readonly Extension[]

    Extensions initialized by the embedding host.

    Optional selected model provider.

    providers: ProviderRegistry

    Model-provider lookup and registration.

    runtime: AgentCore

    Turn and session runtime.

    sessionRepository: SessionRepository

    Durable session storage.