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
This is an excellent tutorial. Thank you for it.
For whatever reason, I had to make a few small adjustments to get the code to compile and run.
add JsonSchema trait: use schemars::JsonSchema;
add JsonSchema to each of the derive traits: #[derive(Debug, Deserialize, Serialize, JsonSchema)]
I had to remove the ? from the from_env() call: let openai_client = openai::Client::from_env();
?
I am using rustc 1.82.0 (f6e511eec 2024-10-15)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is an excellent tutorial. Thank you for it.
For whatever reason, I had to make a few small adjustments to get the code to compile and run.
add JsonSchema trait: use schemars::JsonSchema;
add JsonSchema to each of the derive traits: #[derive(Debug, Deserialize, Serialize, JsonSchema)]
I had to remove the
?
from the from_env() call: let openai_client = openai::Client::from_env();I am using rustc 1.82.0 (f6e511eec 2024-10-15)
The text was updated successfully, but these errors were encountered: