Plugins
Available Plugins
Web Search Plugin
use orpheus::prelude::*;
fn main() -> anyhow::Result<()> {
let client = Orpheus::from_env()?;
let response = client
.chat("What are the latest developments in renewable energy?")
.model("google/gemini-2.0-flash-001")
.plugins(Plugin::web())
.send()?;
println!("{}", response.content()?);
Ok(())
}Configuration Options
Parameter
Type
Description
Default
File Parser Plugin
Parsing Engines
Engine
String Value
Description
Multiple Plugins
Last updated
Was this helpful?