potato-head 0.26.0

Potato brands
Documentation
pub mod prelude {
    pub use potato_agent::*;

    pub use potato_type::{
        anthropic as anthropic_types, error::TypeError, google as google_types,
        openai as openai_types, prompt as prompt_types, spec as spec_types, Provider, SaveName,
        StructuredOutput,
    };
    pub use potato_util::{
        calculate_weighted_score, create_uuid7, depythonize_object_to_value, error::UtilError,
        utils::ResponseLogProbs, utils::TokenLogProbs, version, PyHelperFuncs,
    };

    pub use potato_provider::{
        providers::embed::{EmbeddingInput, PyEmbedder},
        ChatResponse, Embedder, EmbeddingConfig, EmbeddingResponse, GenAiClient, GoogleAuth,
        OpenAIAuth,
    };

    pub use potato_workflow::*;

    pub use potato_spec::{LoadedSpec, PotatoSpec, SpecError, SpecLoader};

    #[cfg(feature = "mock")]
    pub use baked_potato::mock;
}

pub use prelude::*;