Documentation Index
Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
Use this file to discover all available pages before exploring further.
ExecutionConfig
Defined in the config module.
Rust AI Agent SDK
Execution configuration
Fields
| Name | Type | Description |
|---|
max_iterations | usize | Maximum number of iterations |
timeout_secs | u64 | Timeout in seconds |
stream | bool | Enable streaming output |
Methods
new
Create a new execution config
max_iterations
fn max_iterations(mut self, max: usize) -> Self
Set max iterations
Parameters:
timeout
fn timeout(mut self, secs: u64) -> Self
Set timeout
Parameters:
no_stream
fn no_stream(mut self) -> Self
Disable streaming
Source
View on GitHub
praisonai/src/config.rs at line 170