Fix readme

This commit is contained in:
Dongri Jin
2022-12-12 13:20:53 +09:00
parent c2ce8b4133
commit 4cecdee574
2 changed files with 47 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = Client::new(env::var("OPENAI_API_KEY").unwrap().to_string());
let req = CompletionRequest {
model: completion::GPT3_TEXT_DAVINCI_003.to_string(),
prompt: Some(String::from("NFTとは何か")),
prompt: Some(String::from("NFTとは")),
suffix: None,
max_tokens: Some(3000),
temperature: Some(0.9),