1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
//! OpenAI Responses API client implementation.
//!
//! Provides a complete client for the OpenAI Responses API with support for:
//! - Streaming responses via Server-Sent Events
//! - Tool calling with parallel execution
//! - Reasoning for o-series models (o3-mini, o3)
//! - Structured outputs via JSON schema
//! - Prompt caching with cache keys
//! - Service tier selection for latency/cost control
//! - Conversation continuity and state management
//!
//! # Examples
//!
//! Basic usage:
//!
//! ```rust,no_run
//! use appam::llm::openai::{OpenAIClient, OpenAIConfig};
//! use appam::llm::unified::UnifiedMessage;
//! use appam::llm::LlmClient;
//!
//! #[tokio::main]
//! async fn main() -> anyhow::Result<()> {
//! let config = OpenAIConfig::default();
//! let client = OpenAIClient::new(config)?;
//!
//! let messages = vec![UnifiedMessage::user("What is 2+2?")];
//!
//! client.chat_with_tools_streaming(
//! &messages,
//! &[],
//! |chunk| { print!("{}", chunk); Ok(()) },
//! |_| Ok(()),
//! |_| Ok(()),
//! |_| Ok(()),
//! |_| Ok(()),
//! |_| Ok(()),
//! ).await?;
//!
//! Ok(())
//! }
//! ```
//!
//! With reasoning (GPT-5.4 and other reasoning-capable models):
//!
//! ```rust,no_run
//! use appam::llm::openai::{OpenAIClient, OpenAIConfig, ReasoningConfig, ReasoningEffort, ReasoningSummary};
//!
//! let config = OpenAIConfig {
//! model: "gpt-5.4".to_string(),
//! reasoning: Some(ReasoningConfig {
//! effort: Some(ReasoningEffort::High),
//! summary: Some(ReasoningSummary::Detailed),
//! }),
//! ..Default::default()
//! };
//! ```
//!
//! Using convenience methods:
//!
//! ```rust,no_run
//! use appam::llm::openai::{OpenAIConfig, ReasoningConfig};
//!
//! let config = OpenAIConfig {
//! model: "gpt-5.4".to_string(),
//! reasoning: Some(ReasoningConfig::high_effort()),
//! ..Default::default()
//! };
//! ```
// Re-exports for convenience
pub use OpenAIClient;
pub use ;
pub use ;