gpt3-sandbox icon indicating copy to clipboard operation
gpt3-sandbox copied to clipboard

implement autoreloading of GPT configuration

Open bora-uyumazturk opened this issue 4 years ago • 2 comments

currently, if you want to see how GPT does with more examples, you need to add examples in the main script and then relaunch the flask back end. Ideally, they would be able to make changes to the GPT configuration and see the model improve as they include more priming examples.

One way of doing this would be to add a UI component that sends a post to update the underlying GPT model but this would result in potentially a cluttered UI (not ideal for demos).

bora-uyumazturk avatar Jul 19 '20 19:07 bora-uyumazturk

A better approach would probably to put all the api interactions inside the GPT object so that it's easy to test in a python interpreter

bora-uyumazturk avatar Jul 19 '20 19:07 bora-uyumazturk

A better approach would probably to put all the api interactions inside the GPT object so that it's easy to test in a python interpreter

addressed in #16

bora-uyumazturk avatar Jul 21 '20 02:07 bora-uyumazturk