@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias AgentInstanceDefinition

    The definition of an agent instance, as submitted at creation. The systemPrompt is a plain string here for backwards compatibility with existing create requests; the read side (AgentInstanceDefinitionResult) exposes it as content blocks instead. This write-side string is deprecated and will be removed as part of #58795.

    type AgentInstanceDefinition = {
        model: string;
        provider: string;
        systemPrompt: string;
    }
    Index
    model: string

    The LLM model identifier (for example, gpt-4o).

    provider: string

    The LLM provider (for example, openai or anthropic).

    systemPrompt: string

    The system prompt configured for this agent instance.