|
|
|
|
|
by sebzim4500
1201 days ago
|
|
That's not how you use foundation models. You have to give a prompt where the most likely completion is the one you are looking. You can find longer prompts online, but this one might work. Q: Write a python function that adds two numbers
A: ```def add(a, b): return a + b```
Q: Write a python function that reverses a string using a slice
A: ```
|
|