Compiling takes some time so I wouldn't want my users repeat the same process every time they run the product.
Having said that, how can I save the model and reuse it next time without re-compiling?
Specifically, in this tutorial,
https://drchrislevy.github.io/posts/dspy/dspy.html
optimized_cot_qa = teleprompter.compile(cot_qa, trainset=trainset, valset=valset)
How would I be able to save optimized_cot_qa so that I can reuse?
Thanks!