Browse Source

feature: make path- pattern mapping dynamic and scalable

pull/52/head
Dheerapat Tookkane 1 year ago
parent
commit
12fca665bd
No known key found for this signature in database
GPG Key ID: 50F9DC080176C6D0
  1. 14
      server/fabric_api_server.py

14
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("/<pattern>", 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)

Loading…
Cancel
Save