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
Error: openai.UnprocessableEntityError: Error code: 422 - {'detail': [{'loc': ['body', 'user'], 'msg': 'field required', 'type': 'value_error.missing'}
need to take this user from env and then send it to azure for bridgeIT:
response = client.chat.completions.create( model="gpt-35-turbo", # model = "deployment_name". messages=message_with_history, user=f'{{"appkey": "{app_key}"}}' )
Need User parameter in the API. There's no way to pass the parameter.
@[email protected]
The text was updated successfully, but these errors were encountered:
Hey! GPT-3.5 isn't supported inside Skyvern right now. ARe you able to try it with 4o or 4o mini instead?
Sorry, something went wrong.
No branches or pull requests
Error:
openai.UnprocessableEntityError: Error code: 422 - {'detail': [{'loc': ['body', 'user'], 'msg': 'field required', 'type': 'value_error.missing'}
need to take this user from env and then send it to azure for bridgeIT:
response = client.chat.completions.create(
model="gpt-35-turbo", # model = "deployment_name".
messages=message_with_history,
user=f'{{"appkey": "{app_key}"}}'
)
Need User parameter in the API.
There's no way to pass the parameter.
@[email protected]
The text was updated successfully, but these errors were encountered: