Josh Kuhn 62193135c7
Cleanups before publishing (#2)
Several cleanups:
- Flesh out the README
- Make the interface a little easier to use
- Add some examples
- Add some (sparse) documentation for public components
- Mark the `FinishReason` and `Engine` enums as non-exhaustive so new members can be added in the future without breaking backwards compatibility
2020-12-05 16:43:15 -08:00

44 lines
1.4 KiB
Rust

use openai_api::{
api::{CompletionArgs, Engine},
OpenAIClient,
};
const START_PROMPT: &str = "
The following is a conversation with an AI assistant.
The assistant is helpful, creative, clever, and very friendly.
Human: Hello, who are you?
AI: I am an AI. How can I help you today?";
#[tokio::main]
async fn main() {
let api_token = std::env::var("OPENAI_SK").unwrap();
let client = OpenAIClient::new(&api_token);
let mut context = String::from(START_PROMPT);
let mut args = CompletionArgs::builder();
args.engine(Engine::Davinci)
.max_tokens(45)
.stop(vec!["\n".into()])
.top_p(0.5)
.temperature(0.9)
.frequency_penalty(0.5);
println!("\x1b[1;36m{}\x1b[1;0m", context.split('\n').last().unwrap());
loop {
context.push_str("\nHuman: ");
if let Err(e) = std::io::stdin().read_line(&mut context) {
eprintln!("Error: {}", e);
break;
}
context.push_str("\nAI:");
match args.prompt(context.as_str()).complete(&client).await {
Ok(completion) => {
println!("\x1b[1;36m{}\x1b[1;0m", completion);
context.push_str(&completion.choices[0].text);
}
Err(e) => {
eprintln!("Error: {}", e);
break;
}
}
}
println!("Full conversation:\n{}", context);
}