- Create a new directory with these three files (requirements.txt, main.py, README.md)
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python main.py
- Update
main()
to run the example prompt chains
This file contains 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
""" | |
Purpose: | |
Interact with the UPDATED OpenAI API Supports 1.2.3+ | |
Provide supporting prompt engineering functions. | |
""" | |
""" | |
Purpose: | |
Interact with the OpenAI API. | |
Provide supporting prompt engineering functions. | |
""" |
This file contains 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
<pre> | |
<code>@keyframes rounded-mask-reveal { | |
from { | |
clip-path: inset(10% 10% 10% 10% round 30px); | |
} | |
to { | |
clip-path: inset(0% 0% 0% 0% round 30px); | |
} | |
} |
OlderNewer