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
We should add a Role enum to the clients::openai module to be used instead of String. It should also include the new developer variant.
Role
clients::openai
String
developer
openai
#[serde(rename_all = "lowercase")]
role: String
role: Role
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
We should add a
Role
enum to theclients::openai
module to be used instead ofString
. It should also include the newdeveloper
variant.Acceptance Criteria
Role
enum is added toopenai
module with variants for user, assistant, developer, system, tool and#[serde(rename_all = "lowercase")]
attributerole: String
fields have been updated torole: Role
The text was updated successfully, but these errors were encountered: