move embedded provider to a better crate

This commit is contained in:
Dhanji Prasanna
2025-10-01 15:19:37 +10:00
parent b9679e14dc
commit 046b54c49b
11 changed files with 23 additions and 22 deletions

View File

@@ -41,6 +41,7 @@
//! max_tokens: Some(1000),
//! temperature: Some(0.7),
//! stream: false,
//! tools: None,
//! };
//!
//! // Get a completion
@@ -74,6 +75,7 @@
//! max_tokens: Some(1000),
//! temperature: Some(0.7),
//! stream: true,
//! tools: None,
//! };
//!
//! let mut stream = provider.stream(request).await?;