From 0be94ee1b5f76eb035cd4f2e0b863d651cfe17a9 Mon Sep 17 00:00:00 2001 From: Wayne Date: Sun, 4 Feb 2024 16:12:41 +0000 Subject: [PATCH 01/26] Update .gitignore and server configurations --- .gitignore | 1 + client/p.py | 2 +- server/fabric_api_server.py | 2 +- server/fabric_web_interface/fabric_web_server.py | 5 +++-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index a6d9d19..79f8d5a 100644 --- a/.gitignore +++ b/.gitignore @@ -123,6 +123,7 @@ celerybeat.pid # Environments .env env/ +.venv/ venv/ ENV/ env.bak/ diff --git a/client/p.py b/client/p.py index 539a816..27daf10 100755 --- a/client/p.py +++ b/client/p.py @@ -1,4 +1,4 @@ -#!/Users/jonathandunn/myAugmented/.venv/bin/python +#!/usr/bin/env python3 import pyperclip diff --git a/server/fabric_api_server.py b/server/fabric_api_server.py index 9bf34ac..b4a95b4 100644 --- a/server/fabric_api_server.py +++ b/server/fabric_api_server.py @@ -136,4 +136,4 @@ def extwis(): # Run the application if __name__ == "__main__": - app.run(host="1.1.1.1", port=13337, debug=True) + app.run(host="127.0.0.1", port=13337, debug=True) diff --git a/server/fabric_web_interface/fabric_web_server.py b/server/fabric_web_interface/fabric_web_server.py index ef74287..dad4a96 100644 --- a/server/fabric_web_interface/fabric_web_server.py +++ b/server/fabric_web_interface/fabric_web_server.py @@ -2,6 +2,7 @@ from flask import Flask, render_template, request, redirect, url_for, flash, ses import requests import json from flask import send_from_directory +import os ################################################## ################################################## @@ -15,7 +16,7 @@ from flask import send_from_directory def send_request(prompt, endpoint): - base_url = "http://hostorip.tld:13337" + base_url = "http://127.0.0.1:13337" url = f"{base_url}{endpoint}" headers = { "Content-Type": "application/json", @@ -54,4 +55,4 @@ def index(): if __name__ == "__main__": - app.run(host="172.30.0.176", port=13338, debug=True) + app.run(host="127.0.0.1", port=13338, debug=True) From c3eafe5af5efe73f1bed3cdf9de9c49f6fc28b80 Mon Sep 17 00:00:00 2001 From: Youssef Salama Date: Sun, 4 Feb 2024 22:41:43 +0100 Subject: [PATCH 02/26] Update README.md Fix typo in one of the code examples --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4dca723..cc9d5bf 100644 --- a/README.md +++ b/README.md @@ -165,7 +165,7 @@ The client, by default, runs Fabric patterns without needing a server (the Patte 1. Run the `summarize` Pattern based on input from `stdin`. In this case, the body of an article. ```bash -pbpaste | fabric -pattern summarize +pbpaste | fabric --pattern summarize ``` 2. Run the `analyze_claims` Pattern with the `--stream` option to get immediate and streaming results. ```bash From 335c3f12c6bc4c33004d23ad294142dd11da051d Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 15:46:52 -0800 Subject: [PATCH 03/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4dca723..541757f 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ Once you have it all set up, here's how to use it. ```bash -ge: fabric [-h] [--text TEXT] [--copy] [--output [OUTPUT]] [--stream] [--list] +fabric [-h] [--text TEXT] [--copy] [--output [OUTPUT]] [--stream] [--list] [--update] [--pattern PATTERN] [--setup] An open-source framework for augmenting humans using AI. From 02af0da87e6486be6382a4a27634d87e9e1e8634 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 16:06:04 -0800 Subject: [PATCH 04/26] Added TOC --- README.md | 40 ++++++++++++++++++++++++++++++++++++++-- client/utils.py | 4 ++-- 2 files changed, 40 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 541757f..5dc8d97 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,24 @@ +- [fabric](#fabric) + - [What and why](#what-and-why) + - [Philosophy](#philosophy) + - [Breaking problems into components](#breaking-problems-into-components) + - [Too many prompts](#too-many-prompts) + - [Our approach to prompting](#our-approach-to-prompting) + - [Quickstart](#quickstart) + - [1. Just use the Patterns](#1-just-use-the-patterns) + - [2. Create your own Fabric Mill (Server)](#2-create-your-own-fabric-mill-server) + - [3. The standalone client](#3-the-standalone-client) + - [Structure](#structure) + - [Components](#components) + - [CLI-native](#cli-native) + - [Directly calling Patterns](#directly-calling-patterns) + - [Examples](#examples) + - [Meta](#meta) + - [Primary contributors](#primary-contributors) + ## What and why Since the start of 2023 and GenAI we've seen a massive number of AI applications for accomplishing tasks. It's powerful, but **it's not easy to integrate this functionality into our lives.** @@ -91,46 +109,57 @@ The most feature-rich way to use Fabric is to use the `fabric` client, which can Follow these steps to get the client installed and configured. 1. Navigate to where you want the Fabric project to live on your systemClone the directory to a semi-permanent place on your computer. + ```bash # Find a home for Fabric cd /where/you/keep/code ``` + 2. Clone the project to your computer. + ```bash # Clone Fabric to your computer git clone git@github.com:danielmiessler/fabric.git ``` + 3. Enter Fabric's /client directory + ```bash # Enter the project and its /client folder cd fabric/client ``` + 4. Install the dependencies + ```bash # Install the pre-requisites pip3 install -r requirements.txt ``` + 5. Add the path to the `fabric` client to your shell + ```bash # Tell your shell how to find the `fabric` client echo 'alias fabric="/the/path/to/fabric/client" >> .bashrc' # Example of ~/.zshrc or ~/.bashrc alias fabric="~/Development/fabric/client/fabric" ``` + 6. Restart your shell + ```bash # Make sure you can echo 'alias fabric="/the/path/to/fabric/client" >> .bashrc' # Example echo 'alias fabric="~/Development/fabric/client/fabric" >> .zshrc' ``` + ### Using the `fabric` client Once you have it all set up, here's how to use it. 1. Check out the options -`fabric -h` - + `fabric -h` ```bash fabric [-h] [--text TEXT] [--copy] [--output [OUTPUT]] [--stream] [--list] @@ -153,10 +182,13 @@ options: The pattern (prompt) to use --setup Set up your fabric instance ``` + 2. Set up the client + ```bash fabric --setup ``` + You'll be asked to enter your OpenAI API key, which will be written to `~/.config/fabric/.env`. Patterns will then be downloaded from Github, which will take a few moments. ### Example commands @@ -164,13 +196,17 @@ You'll be asked to enter your OpenAI API key, which will be written to `~/.confi The client, by default, runs Fabric patterns without needing a server (the Patterns were downloaded during setup). This means the client connects directly to OpenAI using the input given and the Fabric pattern used. 1. Run the `summarize` Pattern based on input from `stdin`. In this case, the body of an article. + ```bash pbpaste | fabric -pattern summarize ``` + 2. Run the `analyze_claims` Pattern with the `--stream` option to get immediate and streaming results. + ```bash pbpaste | fabric --stream --pattern analyze_claims ``` + > [!NOTE] > More examples coming in the next few days, including a demo video! diff --git a/client/utils.py b/client/utils.py index f008a18..c2d3db5 100644 --- a/client/utils.py +++ b/client/utils.py @@ -51,7 +51,7 @@ class Standalone: messages = [user_message] try: stream = self.client.chat.completions.create( - model="gpt-4-turbo-preview", + model="gpt-4", messages=messages, temperature=0.0, top_p=1, @@ -98,7 +98,7 @@ class Standalone: messages = [user_message] try: response = self.client.chat.completions.create( - model="gpt-4-turbo-preview", + model="gpt-4", messages=messages, temperature=0.0, top_p=1, From b4f4c9e527fab657688a46777eb06c9298ee30ca Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 16:07:03 -0800 Subject: [PATCH 05/26] Updated TOC. --- README.md | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 5dc8d97..2900606 100644 --- a/README.md +++ b/README.md @@ -23,23 +23,22 @@ -- [fabric](#fabric) - - [What and why](#what-and-why) - - [Philosophy](#philosophy) - - [Breaking problems into components](#breaking-problems-into-components) - - [Too many prompts](#too-many-prompts) - - [Our approach to prompting](#our-approach-to-prompting) - - [Quickstart](#quickstart) - - [1. Just use the Patterns](#1-just-use-the-patterns) - - [2. Create your own Fabric Mill (Server)](#2-create-your-own-fabric-mill-server) - - [3. The standalone client](#3-the-standalone-client) - - [Structure](#structure) - - [Components](#components) - - [CLI-native](#cli-native) - - [Directly calling Patterns](#directly-calling-patterns) - - [Examples](#examples) - - [Meta](#meta) - - [Primary contributors](#primary-contributors) +- [What and why](#what-and-why) +- [Philosophy](#philosophy) + - [Breaking problems into components](#breaking-problems-into-components) + - [Too many prompts](#too-many-prompts) + - [Our approach to prompting](#our-approach-to-prompting) +- [Quickstart](#quickstart) + - [1. Just use the Patterns](#1-just-use-the-patterns) + - [2. Create your own Fabric Mill (Server)](#2-create-your-own-fabric-mill-server) + - [3. The standalone client](#3-the-standalone-client) +- [Structure](#structure) + - [Components](#components) + - [CLI-native](#cli-native) + - [Directly calling Patterns](#directly-calling-patterns) +- [Examples](#examples) +- [Meta](#meta) + - [Primary contributors](#primary-contributors) ## What and why From 538be7f704e3bb6b85735ffbb79d9817ecb7f317 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 16:07:54 -0800 Subject: [PATCH 06/26] Updated TOC. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 2900606..a0ee561 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,8 @@ +# Navigation + - [What and why](#what-and-why) - [Philosophy](#philosophy) - [Breaking problems into components](#breaking-problems-into-components) From 92007c6e5e7bebc9180eca0d8d83e8809af4f586 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 16:08:19 -0800 Subject: [PATCH 07/26] Updated TOC. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a0ee561..c1e5b64 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ -# Navigation +## Navigation - [What and why](#what-and-why) - [Philosophy](#philosophy) From 6d0941ec1e308a0050ba9c33ddf936b6fce3525c Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 16:16:17 -0800 Subject: [PATCH 08/26] Updated the readme. --- README.md | 5 ++--- client/.zshrc | 5 +++++ 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 client/.zshrc diff --git a/README.md b/README.md index c1e5b64..266056b 100644 --- a/README.md +++ b/README.md @@ -29,11 +29,10 @@ - [Philosophy](#philosophy) - [Breaking problems into components](#breaking-problems-into-components) - [Too many prompts](#too-many-prompts) - - [Our approach to prompting](#our-approach-to-prompting) + - [The Fabric approach to prompting](#our-approach-to-prompting) - [Quickstart](#quickstart) - - [1. Just use the Patterns](#1-just-use-the-patterns) + - [1. Just use the Patterns (prompts)](#1-just-use-the-patterns) - [2. Create your own Fabric Mill (Server)](#2-create-your-own-fabric-mill-server) - - [3. The standalone client](#3-the-standalone-client) - [Structure](#structure) - [Components](#components) - [CLI-native](#cli-native) diff --git a/client/.zshrc b/client/.zshrc new file mode 100644 index 0000000..e5cd223 --- /dev/null +++ b/client/.zshrc @@ -0,0 +1,5 @@ +export PATH=/Users/daniel/Library/Mobile Documents/com~apple~CloudDocs/Development/fabric/client/.venv/bin:/opt/homebrew/opt/gnu-getopt/bin:/Users/daniel/go/bin:/usr/local/go/bin:/Users/daniel/.local/bin:/opt/homebrew/opt/gnu-getopt/bin:/Users/daniel/.pdtm/go/bin:/Users/daniel/Cloud/Development/AICommands/:/Users/daniel/.pdtm/go/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/usr/local/go/bin:/Users/daniel/.cargo/bin:/bin:/Users/daniel/go/bin:/Users/daniel/Cloud/Development/fabric/client + +alias fabric="~/Cloud/Development/fabric/client/fabric" + + From 41b8ef97d2dce34cf9759727d065ea34f3fb5818 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 17:25:11 -0800 Subject: [PATCH 09/26] Fixed nav, maybe. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dbbdc26..c2381db 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ - [Too many prompts](#too-many-prompts) - [The Fabric approach to prompting](#our-approach-to-prompting) - [Quickstart](#quickstart) - - [1. Just use the Patterns (prompts)](#1-just-use-the-patterns) + - [1. Just use the Patterns (prompts)](#just-use-the-patterns) - [2. Create your own Fabric Mill (Server)](#2-create-your-own-fabric-mill-server) - [Structure](#structure) - [Components](#components) From d5a5b71e417776bf420f8c8a3f47d734264d42a7 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 17:28:30 -0800 Subject: [PATCH 10/26] Fixed nav. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c2381db..1c19bdb 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ - [Too many prompts](#too-many-prompts) - [The Fabric approach to prompting](#our-approach-to-prompting) - [Quickstart](#quickstart) - - [1. Just use the Patterns (prompts)](#just-use-the-patterns) + - [1. Just use the Patterns (prompts)](#1-just-use-the-patterns-prompts) - [2. Create your own Fabric Mill (Server)](#2-create-your-own-fabric-mill-server) - [Structure](#structure) - [Components](#components) @@ -210,7 +210,7 @@ pbpaste | fabric --stream --pattern analyze_claims > [!NOTE] > More examples coming in the next few days, including a demo video! -### 2. Just use the Patterns +### 2. Just use the Patterns (prompts) fabric-patterns-screenshot From 64382533d100c3c6f15da9f9eae89a2be274b1f6 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 17:57:57 -0800 Subject: [PATCH 11/26] Fixed nav, maybe? --- README.md | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 1c19bdb..bb1734e 100644 --- a/README.md +++ b/README.md @@ -25,21 +25,24 @@ ## Navigation -- [What and why](#what-and-why) -- [Philosophy](#philosophy) - - [Breaking problems into components](#breaking-problems-into-components) - - [Too many prompts](#too-many-prompts) - - [The Fabric approach to prompting](#our-approach-to-prompting) -- [Quickstart](#quickstart) - - [1. Just use the Patterns (prompts)](#1-just-use-the-patterns-prompts) - - [2. Create your own Fabric Mill (Server)](#2-create-your-own-fabric-mill-server) -- [Structure](#structure) - - [Components](#components) - - [CLI-native](#cli-native) - - [Directly calling Patterns](#directly-calling-patterns) -- [Examples](#examples) -- [Meta](#meta) - - [Primary contributors](#primary-contributors) +[What and Why](#what-and-why) • +[Philosophy](#philosophy) • + +- [Breaking problems into components](#breaking-problems-into-components) +- [Too many prompts](#too-many-prompts) +- [The Fabric approach to prompting](#the-fabric-approach-to-prompting) + [Quickstart](#quickstart) • +- [Setting up the `fabric` client](#setting-up-the-fabric-client) +- [Using the `fabric` client](#using-the-fabric-client) +- [Just use the Patterns (prompts)](#just-use-the-patterns-prompts) +- [Create your own Fabric Mill (Server)](#create-your-own-fabric-mill-server) + [Structure](#structure) • +- [Components](#components) +- [CLI-native](#cli-native) +- [Directly calling Patterns](#directly-calling-patterns) + [Examples](#examples) • + [Meta](#meta) • +- [Primary contributors](#primary-contributors) ## What and why From 1a9e54c60ac30475fdac8e60d843c9a17b9786e3 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 17:59:45 -0800 Subject: [PATCH 12/26] Nav again. --- README.md | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index bb1734e..00fec71 100644 --- a/README.md +++ b/README.md @@ -25,24 +25,21 @@ ## Navigation -[What and Why](#what-and-why) • -[Philosophy](#philosophy) • - -- [Breaking problems into components](#breaking-problems-into-components) -- [Too many prompts](#too-many-prompts) -- [The Fabric approach to prompting](#the-fabric-approach-to-prompting) - [Quickstart](#quickstart) • -- [Setting up the `fabric` client](#setting-up-the-fabric-client) -- [Using the `fabric` client](#using-the-fabric-client) -- [Just use the Patterns (prompts)](#just-use-the-patterns-prompts) -- [Create your own Fabric Mill (Server)](#create-your-own-fabric-mill-server) - [Structure](#structure) • -- [Components](#components) -- [CLI-native](#cli-native) -- [Directly calling Patterns](#directly-calling-patterns) - [Examples](#examples) • - [Meta](#meta) • -- [Primary contributors](#primary-contributors) +- [What and Why](#what-and-why) +- [Philosophy](#philosophy) + - [Breaking problems into components](#breaking-problems-into-components) + - [Too many prompts](#too-many-prompts) + - [The Fabric approach to prompting](#our-approach-to-prompting) +- [Quickstart](#quickstart) + - [1. Just use the Patterns (prompts)](#1-just-use-the-patterns-prompts) + - [2. Create your own Fabric Mill (Server)](#2-create-your-own-fabric-mill-server) +- [Structure](#structure) + - [Components](#components) + - [CLI-native](#cli-native) + - [Directly calling Patterns](#directly-calling-patterns) +- [Examples](#examples) +- [Meta](#meta) + - [Primary contributors](#primary-contributors) ## What and why From c40540f8b19c0173895ffe74030dcc5ff45ecde9 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 18:02:13 -0800 Subject: [PATCH 13/26] Nav. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 00fec71..fb0771c 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ - [Too many prompts](#too-many-prompts) - [The Fabric approach to prompting](#our-approach-to-prompting) - [Quickstart](#quickstart) - - [1. Just use the Patterns (prompts)](#1-just-use-the-patterns-prompts) + - [1. Just use the Patterns (prompts)](#1-just-use-the-patterns) - [2. Create your own Fabric Mill (Server)](#2-create-your-own-fabric-mill-server) - [Structure](#structure) - [Components](#components) @@ -210,7 +210,7 @@ pbpaste | fabric --stream --pattern analyze_claims > [!NOTE] > More examples coming in the next few days, including a demo video! -### 2. Just use the Patterns (prompts) +### 2. Just use the Patterns/Prompts fabric-patterns-screenshot @@ -224,7 +224,7 @@ You can use any of the Patterns you see there in any AI application that you hav The wisdom of crowds for the win. -### 3. Create your own Fabric Mill (Server) +### 3. Create your own Fabric Mill/Server fabric_mill_architecture From b95a1aa09181721eca1a815dd632bb40ebe33e31 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 18:03:12 -0800 Subject: [PATCH 14/26] Nav again. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fb0771c..c4cba9f 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ - [Too many prompts](#too-many-prompts) - [The Fabric approach to prompting](#our-approach-to-prompting) - [Quickstart](#quickstart) - - [1. Just use the Patterns (prompts)](#1-just-use-the-patterns) - - [2. Create your own Fabric Mill (Server)](#2-create-your-own-fabric-mill-server) + - [1. Just use the Patterns/Prompts](#1-just-use-the-patterns) + - [2. Create your own Fabric Mill/Server](#2-create-your-own-fabric-mill-server) - [Structure](#structure) - [Components](#components) - [CLI-native](#cli-native) From 16cc1777a05316fa6dd937065055291027fbb5d3 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 18:04:38 -0800 Subject: [PATCH 15/26] Nav. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c4cba9f..fccab40 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ - [Too many prompts](#too-many-prompts) - [The Fabric approach to prompting](#our-approach-to-prompting) - [Quickstart](#quickstart) - - [1. Just use the Patterns/Prompts](#1-just-use-the-patterns) - - [2. Create your own Fabric Mill/Server](#2-create-your-own-fabric-mill-server) + - [1. Just use the Patterns](#1-just-use-the-patterns) + - [2. Create your own Fabric Mill](#2-create-your-own-fabric-mill) - [Structure](#structure) - [Components](#components) - [CLI-native](#cli-native) @@ -210,7 +210,7 @@ pbpaste | fabric --stream --pattern analyze_claims > [!NOTE] > More examples coming in the next few days, including a demo video! -### 2. Just use the Patterns/Prompts +### 2. Just use the Patterns fabric-patterns-screenshot @@ -224,7 +224,7 @@ You can use any of the Patterns you see there in any AI application that you hav The wisdom of crowds for the win. -### 3. Create your own Fabric Mill/Server +### 3. Create your own Fabric Mill fabric_mill_architecture From e3837b3bda565f703150f39c4e287305ee741133 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 18:05:22 -0800 Subject: [PATCH 16/26] Nav. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fccab40..5e9b68f 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ - [Too many prompts](#too-many-prompts) - [The Fabric approach to prompting](#our-approach-to-prompting) - [Quickstart](#quickstart) - - [1. Just use the Patterns](#1-just-use-the-patterns) - - [2. Create your own Fabric Mill](#2-create-your-own-fabric-mill) + - [1. Just use the Patterns](just-use-the-patterns) + - [2. Create your own Fabric Mill](create-your-own-fabric-mill) - [Structure](#structure) - [Components](#components) - [CLI-native](#cli-native) From 1d12e337d213c63eb6dc3a4e292ab6f6efc79c2f Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 18:07:48 -0800 Subject: [PATCH 17/26] Nav. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5e9b68f..7d2fe98 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ - [Too many prompts](#too-many-prompts) - [The Fabric approach to prompting](#our-approach-to-prompting) - [Quickstart](#quickstart) - - [1. Just use the Patterns](just-use-the-patterns) - - [2. Create your own Fabric Mill](create-your-own-fabric-mill) + - [1. Just use the Patterns (Prompts)](just-use-the-patterns) + - [2. Create your own Fabric Mill (Server)](create-your-own-fabric-mill) - [Structure](#structure) - [Components](#components) - [CLI-native](#cli-native) @@ -191,7 +191,7 @@ fabric --setup You'll be asked to enter your OpenAI API key, which will be written to `~/.config/fabric/.env`. Patterns will then be downloaded from Github, which will take a few moments. -### Example commands +#### Example commands The client, by default, runs Fabric patterns without needing a server (the Patterns were downloaded during setup). This means the client connects directly to OpenAI using the input given and the Fabric pattern used. @@ -210,7 +210,7 @@ pbpaste | fabric --stream --pattern analyze_claims > [!NOTE] > More examples coming in the next few days, including a demo video! -### 2. Just use the Patterns +### Just use the Patterns fabric-patterns-screenshot @@ -224,7 +224,7 @@ You can use any of the Patterns you see there in any AI application that you hav The wisdom of crowds for the win. -### 3. Create your own Fabric Mill +### Create your own Fabric Mill fabric_mill_architecture From 8a391102c8c2a141aa41972e0b067c823e96dc09 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 18:08:22 -0800 Subject: [PATCH 18/26] Nav. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7d2fe98..4ab9b9a 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ - [Too many prompts](#too-many-prompts) - [The Fabric approach to prompting](#our-approach-to-prompting) - [Quickstart](#quickstart) - - [1. Just use the Patterns (Prompts)](just-use-the-patterns) - - [2. Create your own Fabric Mill (Server)](create-your-own-fabric-mill) + - [1. Just use the Patterns (Prompts)](#just-use-the-patterns) + - [2. Create your own Fabric Mill (Server)](#create-your-own-fabric-mill) - [Structure](#structure) - [Components](#components) - [CLI-native](#cli-native) From 3b445c4b97547ec560f0aa4be6e70b7ec3eaa52f Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 18:40:59 -0800 Subject: [PATCH 19/26] Formatting. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4ab9b9a..486a143 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ ## What and why -Since the start of 2023 and GenAI we've seen a massive number of AI applications for accomplishing tasks. It's powerful, but **it's not easy to integrate this functionality into our lives.** +Since the start of 2023 and GenAI we've seen a massive number of AI applications for accomplishing tasks. It's powerful, but _it's not easy to integrate this functionality into our lives._

In other words, AI doesn't have a capabilities problem—it has an integration problem.

@@ -262,7 +262,7 @@ cat "An idea that coding is like speaking with rules." | write_essay ### Directly calling Patterns -One key feature of `fabric` and its Markdown-based format is the ability to ** directly reference** (and edit) individual [patterns](https://github.com/danielmiessler/fabric/tree/main#naming) directly—on their own—without surrounding code. +One key feature of `fabric` and its Markdown-based format is the ability to _ directly reference_ (and edit) individual [patterns](https://github.com/danielmiessler/fabric/tree/main#naming) directly—on their own—without surrounding code. As an example, here's how to call _the direct location_ of the `extract_wisdom` pattern. @@ -272,7 +272,7 @@ https://github.com/danielmiessler/fabric/blob/main/patterns/extract_wisdom/syste This means you can cleanly, and directly reference any pattern for use in a web-based AI app, your own code, or wherever! -Even better, you can also have your [Mill](https://github.com/danielmiessler/fabric/tree/main#naming) functionality directly call **system** and **user** prompts from `fabric`, meaning you can have your personal AI ecosystem automatically kept up to date with the latest version of your favorite [Patterns](https://github.com/danielmiessler/fabric/tree/main#naming). +Even better, you can also have your [Mill](https://github.com/danielmiessler/fabric/tree/main#naming) functionality directly call _system_ and _user_ prompts from `fabric`, meaning you can have your personal AI ecosystem automatically kept up to date with the latest version of your favorite [Patterns](https://github.com/danielmiessler/fabric/tree/main#naming). Here's what that looks like in code: @@ -406,9 +406,9 @@ The content features a conversation between two individuals discussing various t > [!NOTE] > Special thanks to the following people for their inspiration and contributions! -- **Caleb Sima** for pushing me over the edge of whether to make this a public project or not. -- **Joel Parish** for super useful input on the project's Github directory structure. -- **Jonathan Dunn** for spectacular work on the soon-to-be-released universal client. +- _Caleb Sima_ for pushing me over the edge of whether to make this a public project or not. +- _Joel Parish_ for super useful input on the project's Github directory structure. +- _Jonathan Dunn_ for spectacular work on the soon-to-be-released universal client. ### Primary contributors From 0aa9620739ab4db9a825d1358af9210e2c4425bf Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 21:38:25 -0800 Subject: [PATCH 20/26] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 486a143..5be8e0e 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,12 @@ - [Examples](#examples) - [Meta](#meta) - [Primary contributors](#primary-contributors) + + + +https://github.com/danielmiessler/fabric/assets/50654/3993d838-376b-40d1-b039-21bba2285d2d + + ## What and why From 8a6fc9ea9dff5c665c7841e9566947566da4553b Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 21:43:01 -0800 Subject: [PATCH 21/26] Uploaded the write_essay demo. --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 5be8e0e..f1ec5cb 100644 --- a/README.md +++ b/README.md @@ -40,12 +40,8 @@ - [Examples](#examples) - [Meta](#meta) - [Primary contributors](#primary-contributors) - - - -https://github.com/danielmiessler/fabric/assets/50654/3993d838-376b-40d1-b039-21bba2285d2d - +https://github.com/danielmiessler/fabric/assets/50654/60d5d4b3-af74-4cd7-b27e-3787700e5b49 ## What and why From 4944aed1a485a7553feae31c5e33746c87a0d1b5 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 21:53:12 -0800 Subject: [PATCH 22/26] Uploaded DEMO-Write Essay Movie --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f1ec5cb..5971ab3 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,9 @@ - [Meta](#meta) - [Primary contributors](#primary-contributors) -https://github.com/danielmiessler/fabric/assets/50654/60d5d4b3-af74-4cd7-b27e-3787700e5b49 + +https://github.com/danielmiessler/fabric/assets/50654/09c11764-e6ba-4709-952d-450d70d76ac9 + ## What and why From baa3906437d059ab85f42447f106c059c5ce418d Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 21:55:36 -0800 Subject: [PATCH 23/26] Added demo comment. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5971ab3..cdf6041 100644 --- a/README.md +++ b/README.md @@ -41,10 +41,10 @@ - [Meta](#meta) - [Primary contributors](#primary-contributors) +# A quick demonstration of writing an essay with Fabric https://github.com/danielmiessler/fabric/assets/50654/09c11764-e6ba-4709-952d-450d70d76ac9 - ## What and why Since the start of 2023 and GenAI we've seen a massive number of AI applications for accomplishing tasks. It's powerful, but _it's not easy to integrate this functionality into our lives._ From 78b3288f300f7b11563eb7e645c39adc83a365a5 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 21:56:09 -0800 Subject: [PATCH 24/26] Demo comment again. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index cdf6041..f9645fa 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,9 @@ - [Meta](#meta) - [Primary contributors](#primary-contributors) +```bash # A quick demonstration of writing an essay with Fabric +``` https://github.com/danielmiessler/fabric/assets/50654/09c11764-e6ba-4709-952d-450d70d76ac9 From bf20b4a2f5df7f1674dd4296d4abafc7dcffc2de Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 21:57:26 -0800 Subject: [PATCH 25/26] Formatting. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f9645fa..5602947 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ - [Meta](#meta) - [Primary contributors](#primary-contributors) +
```bash # A quick demonstration of writing an essay with Fabric ``` From 5a921bfdab5fa30acb9b369a2df5eb4180cd23f9 Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Sun, 4 Feb 2024 21:57:50 -0800 Subject: [PATCH 26/26] Formatting. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5602947..d4d9e1d 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ - [Primary contributors](#primary-contributors)
+ ```bash # A quick demonstration of writing an essay with Fabric ```