Open
Description
I want it to be possible to start with the simplest, most flexible thing, then layer in things on top.
You should be able to start with this:
def predict(name):
return f"hello {name}"
Then, you can augment it. If you want to get some fancy output, add an output type. If you want a better form field and some validation, add an input type. If you need some setup processing, add a Predictor
and a setup()
function.