This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Use GPT-3 to generate a calendar event based on natural language input. | |
I tried having GPT-3 generate the URL directly, but, amusingly, that didn't work well. | |
""" | |
import os | |
import sys | |
import openai | |
import datetime | |
import pytz |
OlderNewer