diff --git a/llm_server/routes/v1/__init__.py b/llm_server/routes/v1/__init__.py index 18aaeee..c492726 100644 --- a/llm_server/routes/v1/__init__.py +++ b/llm_server/routes/v1/__init__.py @@ -14,5 +14,5 @@ def fallback(path): response_msg = format_sillytavern_err(error_msg, error_type='API') return jsonify({ 'results': [{'text': response_msg}], - 'result': f'Wrong API path, visit {base_client_api}' + 'result': f'Wrong API path, visit {base_client_api} for more info' }), 200 # return 200 so we don't trigger an error message in the client's ST