From 12fca665bd160cece7132a8f23906a70018385ac Mon Sep 17 00:00:00 2001 From: Dheerapat Tookkane Date: Wed, 7 Feb 2024 21:15:57 +0700 Subject: [PATCH] feature: make path- pattern mapping dynamic and scalable --- server/fabric_api_server.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/server/fabric_api_server.py b/server/fabric_api_server.py index b4a95b4..28d0bab 100644 --- a/server/fabric_api_server.py +++ b/server/fabric_api_server.py @@ -93,12 +93,16 @@ def fetch_content_from_url(url): ## APIs - +# Make path mapping flexible and scalable +pattern_path_mappings = { + "extwis": {"system_url": "https://raw.githubusercontent.com/danielmiessler/fabric/main/patterns/extract_wisdom/system.md", + "user_url": "https://raw.githubusercontent.com/danielmiessler/fabric/main/patterns/extract_wisdom/user.md"} +} # /extwis -@app.route("/extwis", methods=["POST"]) +@app.route("/", methods=["POST"]) @auth_required # Require authentication -def extwis(): +def mill(pattern): data = request.get_json() # Warn if there's no input @@ -109,8 +113,8 @@ def extwis(): input_data = data["input"] # Set the system and user URLs - system_url = "https://raw.githubusercontent.com/danielmiessler/fabric/main/patterns/extract_wisdom/system.md" - user_url = "https://raw.githubusercontent.com/danielmiessler/fabric/main/patterns/extract_wisdom/user.md" + urls = pattern_path_mappings[pattern] + system_url, user_url = urls["system_url"], urls["user_url"] # Fetch the prompt content system_content = fetch_content_from_url(system_url)