From ee616fee6ed7dcad536f6946872b90bc0ebbb1dd Mon Sep 17 00:00:00 2001 From: David Fisher Date: Fri, 19 Apr 2024 17:10:23 -0400 Subject: [PATCH] Fix README.md errors because: Some links in the README.md file were not working properly. this commit: fixes those errors. Also quotes a command for YouTube that otherwise doesn't work well unescaped in all shells/terminals. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ef7d3c5..0fb1809 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ https://github.com/danielmiessler/fabric/blob/main/patterns/extract_wisdom/syste ## Quickstart -The most feature-rich way to use Fabric is to use the `fabric` client, which can be found under `/client` directory in this repository. +The most feature-rich way to use Fabric is to use the `fabric` client, which can be found under `/client` directory in this repository. ### Setting up the fabric commands @@ -264,7 +264,7 @@ pbpaste | fabric --stream --pattern analyze_claims 3. Run the `extract_wisdom` Pattern with the `--stream` option to get immediate and streaming results from any Youtube video (much like in the original introduction video). ```bash -yt --transcript https://youtube.com/watch?v=uXs-zPc63kM | fabric --stream --pattern extract_wisdom +yt --transcript "https://youtube.com/watch?v=uXs-zPc63kM" | fabric --stream --pattern extract_wisdom ``` 4. **new** All of the patterns have been added as aliases to your bash (or zsh) config file @@ -341,7 +341,7 @@ Even better, you can also have your [Mill](https://github.com/danielmiessler/fab Here's what that looks like in code: ```bash -https://github.com/danielmiessler/fabric/blob/main/server/fabric_api_server.py +https://github.com/danielmiessler/fabric/blob/main/installer/server/api/fabric_api_server.py ``` ```python @@ -360,7 +360,7 @@ def extwis(): # 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" + user_url = "https://github.com/danielmiessler/fabric/blob/main/patterns/extract_wisdom/README.md" # Fetch the prompt content system_content = fetch_content_from_url(system_url)