From f27f30f015216f74dafad29bbf88c7e93ce3ee76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20H=C3=B6nicke?= Date: Thu, 11 May 2023 09:21:31 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=96=20docs:=20readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9940f9e..35e2dbe 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ dev-gpt generate ``` ### Requirements -- OpenAI key with access to GPT-3.5 or GPT-4 +- OpenAI key with access to gpt-3.5-turbo or gpt-4 ```bash dev-gpt configure --key ``` @@ -79,12 +79,12 @@ We are working on a way to use gpt-3.5-turbo as well. ```bash dev-gpt generate \ --description "" \ ---model \ +--model \ --path ``` To generate your personal microservice two things are required: - A `description` of the task you want to accomplish. (optional) -- The `model` you want to use - either `gpt-3.5` or `gpt-4`. `gpt-3.5` is ~10x cheaper, +- The `model` you want to use - either `gpt-3.5-turbo` or `gpt-4`. `gpt-3.5-turbo` is ~10x cheaper, but will not be able to generate as complex microservices. (default: largest you have access to) - A `path` on the local drive where the microservice will be generated. (default: ./microservice)