gpt3-sandbox
gpt3-sandbox copied to clipboard
implement autoreloading of GPT configuration
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).
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
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