A Rust library for interacting with OpenAI's ChatGPT API. This library simplifies the process of making requests to the ChatGPT API and parsing responses.
Add the following line to your 'Cargo.toml' file under the '[dependencies]' section:
toml
chat-gpt-lib-rs = "0.1.0"
Then, run cargo build to download and compile the dependencies.
First, import the necessary components:
rust
use chat_gpt_lib_rs::{ChatGPTClient, ChatInput, Message, Model, Role};
Next, create a new client with your API key:
rust
let api_key = "your_api_key_here";
let base_url = "https://api.openai.com";
let client = ChatGPTClient::new(api_key, base_url);
To send a chat message, create a ChatInput structure and call the chat method:
```rust
let chatinput = ChatInput {
model: Model::Gpt35Turbo,
messages: vec![
Message {
role: Role::System,
content: "You are a helpful assistant.".tostring(),
},
Message {
role: Role::User,
content: "Who won the world series in 2020?".tostring(),
},
],
..Default::default()
};
let response = client.chat(chat_input).await.unwrap(); ``` The response will be a 'ChatResponse' structure containing the API response data.
For more details about the request parameters and response structure, refer to the OpenAI API documentation.
This project is licensed under the Apache License 2.0. See the LICENSE file for details.