From 453e507b892819433dd23e879abd25b74d9c3c79 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 24 Nov 2023 15:17:48 +0000 Subject: [PATCH] Update routes.py --- application/api/user/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/api/user/routes.py b/application/api/user/routes.py index 97e589edc..867425721 100644 --- a/application/api/user/routes.py +++ b/application/api/user/routes.py @@ -266,7 +266,7 @@ def get_prompts(): list_prompts = [] list_prompts.append({"id": "default", "name": "default", "type": "public"}) list_prompts.append({"id": "creative", "name": "creative", "type": "public"}) - list_prompts.append({"id": "precise", "name": "precise", "type": "public"}) + list_prompts.append({"id": "strict", "name": "strict", "type": "public"}) for prompt in prompts: list_prompts.append({"id": str(prompt["_id"]), "name": prompt["name"], "type": "private"})