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
# Drop this into Automator using Python 3 as the shell | |
from sys import stdin | |
from json import dumps, loads | |
from urllib.parse import urlencode | |
from urllib.request import Request, urlopen | |
AZURE_ENDPOINT="getyourowndeployment.openai.azure.com" | |
OPENAI_API_KEY="getyourownkey" | |
OPENAI_API_VERSION="2023-05-15" |
OlderNewer