phi-core 0.7.0

Simple, effective agent loop with tool execution and event streaming
Documentation
pub mod anthropic;
pub mod azure_openai;
pub mod bedrock;
pub mod context_translation;
pub mod google;
pub mod google_vertex;
pub mod mock;
pub mod model;
pub mod openai_compat;
pub mod openai_responses;
pub mod registry;
pub mod retry;
pub mod sse;
pub mod traits;

pub use anthropic::AnthropicProvider;
pub use azure_openai::AzureOpenAiProvider;
pub use bedrock::BedrockProvider;
pub use context_translation::{ContextTranslationStrategy, DefaultContextTranslation};
pub use google::GoogleProvider;
pub use google_vertex::GoogleVertexProvider;
pub use mock::MockProvider;
pub use model::{
    ApiProtocol, CostConfig, CredentialProvider, ModelConfig, OpenAiCompat,
    StaticCredentialProvider,
};
pub use openai_compat::OpenAiCompatProvider;
pub use openai_responses::OpenAiResponsesProvider;
pub use registry::ProviderRegistry;
pub use retry::RetryConfig;
pub use traits::*;