Create `Fireworks AI` configuration
(api_key: impl Into<String>, model: impl Into<String>)
| 362 | |
| 363 | /// Create `Fireworks AI` configuration |
| 364 | pub fn fireworks(api_key: impl Into<String>, model: impl Into<String>) -> Self { |
| 365 | Self::Fireworks { |
| 366 | api_key: api_key.into(), |
| 367 | model: model.into(), |
| 368 | base_url: None, |
| 369 | } |
| 370 | } |
| 371 | |
| 372 | /// Create `Replicate` configuration |
| 373 | pub fn replicate(api_key: impl Into<String>, model: impl Into<String>) -> Self { |
no outgoing calls