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.
PromptExpanderAgentBuilder
Defined in the Specialized Agents module.
Rust AI Agent SDK
Builder for PromptExpanderAgent
Fields
| Name | Type | Description |
|---|
config | PromptExpanderConfig | - |
Methods
new
Create a new builder
name
fn name(mut self, name: impl Into<String>) -> Self
Set agent name
Parameters:
| Name | Type |
|---|
name | impl Into<String> |
model
fn model(mut self, model: impl Into<String>) -> Self
Set LLM model
Parameters:
| Name | Type |
|---|
model | impl Into<String> |
instructions
fn instructions(mut self, instructions: impl Into<String>) -> Self
Set custom instructions
Parameters:
| Name | Type |
|---|
instructions | impl Into<String> |
verbose
fn verbose(mut self) -> Self
Enable verbose output
temperature
fn temperature(mut self, temp: f32) -> Self
Set temperature
Parameters:
max_tokens
fn max_tokens(mut self, tokens: usize) -> Self
Set max tokens
Parameters:
build
fn build(self) -> PromptExpanderAgent
Build the agent
Source
View on GitHub
praisonai/src/specialized_agents.rs at line 224