- Go to https://openai.com/api/ and register an account
- Get the API key and replace the
<openai-key>
in theevent.json
with your key - Run this to test:
python-lambda-local function.py event.json -t 900
- Log in to your workspace:
priceloop login-web
- Register the function:
priceloop create-external-function --function gpt3 --runtime python --parameter-types "string,string" --return-type "string"
- Update the function:
# from root directory of this repository
priceloop update-external-function --function gpt3 --directory gpt3
- Go to https://alpha.priceloop.ai/ and try out the function in a formula with
\gpt3(gpt3_input, openai_api_key)