Skip to main content

ProviderReference

Type Alias ProviderReference 

Source
pub type ProviderReference = HashMap<String, String>;
Expand description

Mapping of provider names to provider-specific file / skill identifiers.

Mirrors SharedV4ProviderReference. Lets the same logical file or skill be referenced across multiple providers without re-uploading.

§Examples

use llmsdk_provider::shared::ProviderReference;

let mut r = ProviderReference::new();
r.insert("anthropic".into(), "file-abc123".into());
assert_eq!(r.get("anthropic"), Some(&"file-abc123".to_owned()));

Aliased Type§

pub struct ProviderReference { /* private fields */ }