opencode-aicodewith-auth 0.1.21 → 0.1.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +7 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1607,30 +1607,37 @@ var provider_config_default = {
|
|
|
1607
1607
|
models: {
|
|
1608
1608
|
"gpt-5.2-codex": {
|
|
1609
1609
|
name: "GPT-5.2 Codex",
|
|
1610
|
+
limit: { context: 400000, output: 128000 },
|
|
1610
1611
|
modalities: { input: ["text", "image"], output: ["text"] }
|
|
1611
1612
|
},
|
|
1612
1613
|
"gpt-5.2": {
|
|
1613
1614
|
name: "GPT-5.2",
|
|
1615
|
+
limit: { context: 400000, output: 128000 },
|
|
1614
1616
|
modalities: { input: ["text", "image"], output: ["text"] }
|
|
1615
1617
|
},
|
|
1616
1618
|
"claude-sonnet-4-5-20250929": {
|
|
1617
1619
|
name: "Claude Sonnet 4.5",
|
|
1620
|
+
limit: { context: 200000, output: 64000 },
|
|
1618
1621
|
modalities: { input: ["text", "image"], output: ["text"] }
|
|
1619
1622
|
},
|
|
1620
1623
|
"claude-opus-4-5-20251101": {
|
|
1621
1624
|
name: "Claude Opus 4.5",
|
|
1625
|
+
limit: { context: 200000, output: 64000 },
|
|
1622
1626
|
modalities: { input: ["text", "image"], output: ["text"] }
|
|
1623
1627
|
},
|
|
1624
1628
|
"claude-sonnet-4-5-20250929-third-party": {
|
|
1625
1629
|
name: "Claude Sonnet 4.5 (third party)",
|
|
1630
|
+
limit: { context: 200000, output: 64000 },
|
|
1626
1631
|
modalities: { input: ["text", "image"], output: ["text"] }
|
|
1627
1632
|
},
|
|
1628
1633
|
"claude-opus-4-5-20251101-third-party": {
|
|
1629
1634
|
name: "Claude Opus 4.5 (third party)",
|
|
1635
|
+
limit: { context: 200000, output: 64000 },
|
|
1630
1636
|
modalities: { input: ["text", "image"], output: ["text"] }
|
|
1631
1637
|
},
|
|
1632
1638
|
"gemini-3-pro": {
|
|
1633
1639
|
name: "Gemini 3 Pro",
|
|
1640
|
+
limit: { context: 1048576, output: 65536 },
|
|
1634
1641
|
modalities: { input: ["text", "image"], output: ["text"] }
|
|
1635
1642
|
}
|
|
1636
1643
|
}
|
package/package.json
CHANGED