10 lines
321 B
Plaintext
10 lines
321 B
Plaintext
# Add a new model
|
|
# This .dspy file uses functions provided by load_hermes_web_cli()
|
|
|
|
try:
|
|
# For add model, we typically redirect to a form page
|
|
# So this might not be needed, but let's create it for completeness
|
|
return {"redirect": "add_model.ui"}
|
|
|
|
except Exception as e:
|
|
return {"error": str(e)} |