AgentCLIConfig constructor

const AgentCLIConfig({
  1. AgentAIConnector connector = const AgentAIConnector(model: "gpt-4.1", type: AgentAIConnectorType.openai, baseUrl: "https://api.openai.com/v1", apiKey: "API_KEY_HERE"),
  2. int recursiveLimit = 10,
})

Implementation

const AgentCLIConfig({
  this.connector = const AgentAIConnector(
    model: "gpt-4.1",
    type: AgentAIConnectorType.openai,
    baseUrl: "https://api.openai.com/v1",
    apiKey: "API_KEY_HERE",
  ),
  this.recursiveLimit = 10,
});