Create an autonomous AI agent for financial analysis
Usage
create_autonomous_agent(
agent_type = "explorer",
learning_rate = 0.1,
memory_size = 1000
)
Arguments
- agent_type
Character string specifying agent type: "explorer", "optimizer", "predictor"
- learning_rate
Numeric learning rate for adaptation (default: 0.1)
- memory_size
Integer size of agent memory (default: 1000)
Value
R6 autonomous agent object
Examples
if (FALSE) { # \dontrun{
agent <- create_autonomous_agent("explorer")
results <- agent$analyze_autonomously(data)
} # }