We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Client timeout is not passed in prompt_completion
prompt_completion
From client.py
client.py
if include_sources is not OMIT: _request["include_sources"] = include_sources _response = self._client_wrapper.httpx_client.request( "POST", urllib.parse.urljoin(f"{self._client_wrapper.get_base_url()}/", "v1/completions"), json=jsonable_encoder(_request), headers=self._client_wrapper.get_headers(), timeout=60, )
The text was updated successfully, but these errors were encountered:
A fixed timeout of 60s is not only set for prompt_completion, but unfortunately also for multiple other functions.
Sorry, something went wrong.
No branches or pull requests
Client timeout is not passed in
prompt_completion
From
client.py
The text was updated successfully, but these errors were encountered: