diff options
Diffstat (limited to 'src/config_file.zig')
| -rw-r--r-- | src/config_file.zig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/config_file.zig b/src/config_file.zig index 1277661..cac003a 100644 --- a/src/config_file.zig +++ b/src/config_file.zig @@ -196,6 +196,14 @@ pub fn buildProviderConfig( .prompt_cache = prov.prompt_cache, .extra_headers = prov.extra_headers, } }, + .openai_responses => return .{ .openai_responses = .{ + .api_key = api_key, + .base_url = prov.base_url, + .model = wire_model, + .reasoning = reasoning, + .max_tokens = max_tokens, + .extra_headers = prov.extra_headers, + } }, } } |
