61 lines
1.4 KiB
YAML
61 lines
1.4 KiB
YAML
providers:
|
|
llm-public:
|
|
baseUrl: https://example.com/v1
|
|
api: openai-completions
|
|
apiKey: LLM_PUBLIC_KEY
|
|
models:
|
|
- id: gpt-5.3-codex-spark
|
|
name: GPT-5.3 Codex Spark
|
|
reasoning: true
|
|
input:
|
|
- text
|
|
- image
|
|
contextWindow: 400000
|
|
maxTokens: 128000
|
|
cost:
|
|
input: 0
|
|
output: 0
|
|
cacheRead: 0
|
|
cacheWrite: 0
|
|
- id: gpt-5.4
|
|
name: GPT-5.4
|
|
reasoning: true
|
|
input:
|
|
- text
|
|
- image
|
|
# prompts with >272K input tokens are priced at 2x input and 1.5x output for the full session for standard, batch, and flex.
|
|
contextWindow: 272000
|
|
maxTokens: 128000
|
|
cost:
|
|
input: 2.5
|
|
output: 15
|
|
cacheRead: 0.25
|
|
cacheWrite: 0
|
|
- id: gpt-5.4-mini
|
|
name: GPT-5.4 mini
|
|
reasoning: true
|
|
input:
|
|
- text
|
|
- image
|
|
contextWindow: 400000
|
|
maxTokens: 128000
|
|
cost:
|
|
input: 0.75
|
|
output: 4.5
|
|
cacheRead: 0.075
|
|
cacheWrite: 0
|
|
- id: gpt-5.3-codex
|
|
name: GPT-5.3 Codex
|
|
reasoning: true
|
|
input:
|
|
- text
|
|
- image
|
|
contextWindow: 400000
|
|
maxTokens: 128000
|
|
cost:
|
|
input: 0
|
|
output: 0
|
|
cacheRead: 0
|
|
cacheWrite: 0
|
|
|