An open API service indexing awesome lists of open source software.

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

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
```