M3: OpenAI chat and responses codecs, provider, registry wiring

Adds both OpenAI codecs — chat completions and the newer responses API — plus the OpenAiProvider and registry wiring, so the same session can run against OpenAI in addition to Anthropic.
This commit is contained in:
2026-07-10 16:19:59 +02:00
parent d4a846f827
commit 607bd88ae3
6 changed files with 1097 additions and 1 deletions
+2
View File
@@ -1,6 +1,8 @@
pub mod anthropic;
pub mod codec;
pub mod openai;
pub mod registry;
pub use anthropic::AnthropicProvider;
pub use openai::OpenAiProvider;
pub use registry::ProviderRegistry;