created by Austin Poor
The code for an OpenAI plugin for getting more information about me, via ChatGPT.
I created this as a fun way to interface with my website, via ChatGPT. It can tell you about me, about my blog posts, about some of my recent projects, and general information that's on my resume.
I'm in the process of attempting to get it verified but if you'd like to try it out yourself, you can run it locally.
To run the API locally, you'll need to have Deno installed and then you can run the following command:
deno run --allow-env=ENV --allow-read=. --allow-net=0.0.0.0:8000 --unstable main.tsFor more information on connecting a local plugin to ChatGPT, see the OpenAI documentation.
--allow-env=ENV: TheENVenvironment variable is used to check if the app is running in production.--allow-read=.: Reads theopenapi.yamlandstatic/logo.pngfiles from the working directory.--allow-net=0.0.0.0:8000: When running locally, serves the API onhttp://localhost:8000--unstable: Uses the unstable Deno KV API for storing say hi requests
