https://github.com/hardbyte/yolo
A silly Python decorator to allow a function's output to be guessed by GPT
https://github.com/hardbyte/yolo
Last synced: 12 months ago
JSON representation
A silly Python decorator to allow a function's output to be guessed by GPT
- Host: GitHub
- URL: https://github.com/hardbyte/yolo
- Owner: hardbyte
- Created: 2023-04-13T01:27:30.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-25T21:31:32.000Z (over 2 years ago)
- Last Synced: 2025-03-27T03:35:39.191Z (about 1 year ago)
- Language: Python
- Size: 88.9 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# YOLO
Don't write code, just ask GPT what a function might return.
```python
from yolo import yolo
@yolo
def get_nth_prime(n):
...
print(get_nth_prime(5000))
48611
```