Add api_host and timeout to XaiProvider#5742
Open
colesmcintosh wants to merge 4 commits into
Open
Conversation
Forward the xAI SDK client's `api_host` (gateway/regional/proxy setups) and `timeout` (client-level default) options through `XaiProvider`, so users don't have to drop down to a prebuilt `xai_client` for common deployment ergonomics. Unset options are omitted so the SDK's own defaults apply.
d69ebe8 to
2b30ddd
Compare
api_host to XaiProviderapi_host and timeout to XaiProvider
This was referenced Jun 1, 2026
Contributor
Author
|
The failing This branch is already up to date with |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Forwards the xAI SDK client's
api_host(gateway / regional / proxy setups) andtimeout(client-level default) options throughXaiProvider, so users don't have to drop down to a prebuiltxai_clientfor common deployment ergonomics. Both map to real SDK constructor parameters (api_host: str,timeout: float | None), and unset options are omitted so the SDK's own defaults apply.This combines what were originally two separate PRs (#5742 for
api_hostand #5743 fortimeout); since both rewrote the same__init__overloads and as written were mutually exclusive, shipping them together avoids a merge conflict. #5743 is closed in favor of this one.Checklist