From c13b019ee92ea64d24d3895eadb5b4dbfd8f5d30 Mon Sep 17 00:00:00 2001 From: Josh Kuhn Date: Mon, 4 Jan 2021 22:01:26 -0800 Subject: [PATCH] Fix README example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f599e7c..2a939cd 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ To configure the prompt more explicitly, you can use the `CompletionArgs` builde ```rust let args = openai_api::api::CompletionArgs::builder() .prompt("Once upon a time,") - .engine(Engine::Davinci) + .engine("davinci") .max_tokens(20) .temperature(0.7) .top_p(0.9)