17 lines
592 B
Plaintext
17 lines
592 B
Plaintext
# Update model by ID
|
|
# This .dspy file uses functions provided by load_hermes_web_cli()
|
|
|
|
try:
|
|
model_id = request.form.get('model_id')
|
|
model_name = request.form.get('model_name')
|
|
model_provider = request.form.get('model_provider')
|
|
|
|
if not model_id or not model_name:
|
|
return {"error": "Model ID and name are required"}
|
|
|
|
# Call the function provided by the hermes-web-cli module
|
|
# This would update the model in the database
|
|
return {"success": True, "message": "Model updated successfully"}
|
|
|
|
except Exception as e:
|
|
return {"error": str(e)} |