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