You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-5Lines changed: 16 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,10 +32,10 @@ committed output.
32
32
33
33
We originally built this internally at [GPU CLI](https://gpu-cli.sh) to generate typed Rust clients for OpenAI, Anthropic, Cloudflare, and other large APIs. After battle-testing it against real-world specs with complex union types, discriminated enums, streaming endpoints, and the occasional spec/API drift, we decided to open source it.
34
34
35
-
The repository contains **55 real-world specs**. The supported OpenAPI corpus is
36
-
54 specs (one Gitea document is Swagger 2.0 and intentionally skipped). Pull
35
+
The repository contains **56 real-world specs**. The supported OpenAPI corpus is
36
+
55 specs (one Gitea document is Swagger 2.0 and intentionally skipped). Pull
37
37
requests compile-check the OpenAI and Anthropic production specs; a scheduled
38
-
and manually runnable CI tier checks all 54 OpenAPI specs.
38
+
and manually runnable CI tier checks all 55 OpenAPI specs.
39
39
40
40
Release history and breaking changes live in the [changelog](CHANGELOG.md).
41
41
@@ -110,6 +110,7 @@ enable_async_client = true
110
110
[http_client]
111
111
base_url = "https://api.example.com"
112
112
timeout_seconds = 30
113
+
max_response_body_bytes = 8388608
113
114
114
115
[http_client.retry]
115
116
max_retries = 3
@@ -261,6 +262,7 @@ use crate::generated::types::*;
0 commit comments