|
|
|
@ -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) |
|
|
|
|