Interface ICompletionArgs

Interface representing the arguments required to request a completion. Encapsulates context and inputs for generating a model response.

interface ICompletionArgs {
    agentName: string;
    clientId: string;
    messages: IModelMessage<object>[];
    mode: ExecutionMode;
    tools?: ITool[];
}

Properties

agentName: string

The unique name of the agent associated with the completion request.

clientId: string

The unique ID of the client requesting the completion.

messages: IModelMessage<object>[]

An array of model messages providing the conversation history or context for the completion.

mode: ExecutionMode

The source of the last message, indicating whether it originated from a tool or user.

tools?: ITool[]

Optional array of tools available for the completion process (e.g., for tool calls).