To me this felt like it wouldn't scale very well, with custom prompts needed for every function. So I implemented a decorator that you can use to ask `gpt-5-mini` to implement your functions during runtime based on function name, docstring[Optional] and type annotations [Optional]. In practice it looks like this:
from cursed_vibing_on_the_fly import ai_implement
@ai_implement
def check_if_number_is_prime(n):
pass
To me this makes the code feel so much more dynamic and, dare I say, vibrant!
matriisitulo•1h ago
/s