MCPcopy Create free account
hub / github.com/InfinitiBit/graphbit / fireworks

Method fireworks

core/src/llm/providers.rs:364–370  ·  view source on GitHub ↗

Create `Fireworks AI` configuration

(api_key: impl Into<String>, model: impl Into<String>)

Source from the content-addressed store, hash-verified

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 {

Callers 2

test_fireworks.pyFile · 0.45
fireworks_configMethod · 0.45

Calls

no outgoing calls

Tested by 1

fireworks_configMethod · 0.36