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.
ImageAgentBuilder
Defined in the agents module.
Rust AI Agent SDK
Builder for ImageAgent
Fields
| Name | Type | Description |
|---|
name | Option<String> | - |
model | Option<String> | - |
config | ImageConfig | - |
verbose | bool | - |
Methods
name
fn name(mut self, name: impl Into<String>) -> Self
Set the agent name
Parameters:
| Name | Type |
|---|
name | impl Into<String> |
model
fn model(mut self, model: impl Into<String>) -> Self
Set the model
Parameters:
| Name | Type |
|---|
model | impl Into<String> |
config
fn config(mut self, config: ImageConfig) -> Self
Set the config
Parameters:
| Name | Type |
|---|
config | ImageConfig |
verbose
fn verbose(mut self, verbose: bool) -> Self
Set verbose mode
Parameters:
build
fn build(self) -> Result<ImageAgent>
Build the ImageAgent
Source
View on GitHub
praisonai/src/agents/mod.rs at line 344