Browse Source

Merge branch 'main' into poetryDepManFabricCLI

pull/32/head
agu3rra 1 year ago
parent
commit
7060e5d1a8
  1. 1
      .gitignore
  2. 70
      README.md
  3. 5
      client/.zshrc
  4. 2
      client/fabric/p.py
  5. 4
      client/fabric/utils.py
  6. 2
      server/fabric_api_server.py
  7. 5
      server/fabric_web_interface/fabric_web_server.py

1
.gitignore vendored

@ -123,6 +123,7 @@ celerybeat.pid
# Environments # Environments
.env .env
env/ env/
.venv/
venv/ venv/
ENV/ ENV/
env.bak/ env.bak/

70
README.md

@ -23,9 +23,35 @@
</div> </div>
## 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)](#just-use-the-patterns)
- [2. Create your own Fabric Mill (Server)](#create-your-own-fabric-mill)
- [Structure](#structure)
- [Components](#components)
- [CLI-native](#cli-native)
- [Directly calling Patterns](#directly-calling-patterns)
- [Examples](#examples)
- [Meta](#meta)
- [Primary contributors](#primary-contributors)
<br />
```bash
# A quick demonstration of writing an essay with Fabric
```
https://github.com/danielmiessler/fabric/assets/50654/09c11764-e6ba-4709-952d-450d70d76ac9
## What and why ## 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._
<div align="center"> <div align="center">
<h4>In other words, AI doesn't have a capabilities problem—it has an <em>integration</em> problem.</h4> <h4>In other words, AI doesn't have a capabilities problem—it has an <em>integration</em> problem.</h4>
@ -91,49 +117,60 @@ 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. 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. 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 ```bash
# Find a home for Fabric # Find a home for Fabric
cd /where/you/keep/code cd /where/you/keep/code
``` ```
2. Clone the project to your computer. 2. Clone the project to your computer.
```bash ```bash
# Clone Fabric to your computer # Clone Fabric to your computer
git clone git@github.com:danielmiessler/fabric.git git clone git@github.com:danielmiessler/fabric.git
``` ```
3. Enter Fabric's /client directory 3. Enter Fabric's /client directory
```bash ```bash
# Enter the project and its /client folder # Enter the project and its /client folder
cd fabric/client cd fabric/client
``` ```
4. Install the dependencies 4. Install the dependencies
```bash ```bash
# Install the pre-requisites # Install the pre-requisites
pip3 install -r requirements.txt pip3 install -r requirements.txt
``` ```
5. Add the path to the `fabric` client to your shell 5. Add the path to the `fabric` client to your shell
```bash ```bash
# Tell your shell how to find the `fabric` client # Tell your shell how to find the `fabric` client
echo 'alias fabric="/the/path/to/fabric/client" >> .bashrc' echo 'alias fabric="/the/path/to/fabric/client" >> .bashrc'
# Example of ~/.zshrc or ~/.bashrc # Example of ~/.zshrc or ~/.bashrc
alias fabric="~/Development/fabric/client/fabric" alias fabric="~/Development/fabric/client/fabric"
``` ```
6. Restart your shell 6. Restart your shell
```bash ```bash
# Make sure you can # Make sure you can
echo 'alias fabric="/the/path/to/fabric/client" >> .bashrc' echo 'alias fabric="/the/path/to/fabric/client" >> .bashrc'
# Example # Example
echo 'alias fabric="~/Development/fabric/client/fabric" >> .zshrc' echo 'alias fabric="~/Development/fabric/client/fabric" >> .zshrc'
``` ```
### Using the `fabric` client ### Using the `fabric` client
Once you have it all set up, here's how to use it. Once you have it all set up, here's how to use it.
1. Check out the options 1. Check out the options
`fabric -h` `fabric -h`
```bash ```bash
ge: fabric [-h] [--text TEXT] [--copy] [--output [OUTPUT]] [--stream] [--list] fabric [-h] [--text TEXT] [--copy] [--output [OUTPUT]] [--stream] [--list]
[--update] [--pattern PATTERN] [--setup] [--update] [--pattern PATTERN] [--setup]
An open-source framework for augmenting humans using AI. An open-source framework for augmenting humans using AI.
@ -153,28 +190,35 @@ options:
The pattern (prompt) to use The pattern (prompt) to use
--setup Set up your fabric instance --setup Set up your fabric instance
``` ```
2. Set up the client 2. Set up the client
```bash ```bash
fabric --setup 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. 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. 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. 1. Run the `summarize` Pattern based on input from `stdin`. In this case, the body of an article.
```bash ```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. 2. Run the `analyze_claims` Pattern with the `--stream` option to get immediate and streaming results.
```bash ```bash
pbpaste | fabric --stream --pattern analyze_claims pbpaste | fabric --stream --pattern analyze_claims
``` ```
> [!NOTE] > [!NOTE]
> More examples coming in the next few days, including a demo video! > More examples coming in the next few days, including a demo video!
### 2. Just use the Patterns ### Just use the Patterns
<img width="1173" alt="fabric-patterns-screenshot" src="https://github.com/danielmiessler/fabric/assets/50654/9186a044-652b-4673-89f7-71cf066f32d8"> <img width="1173" alt="fabric-patterns-screenshot" src="https://github.com/danielmiessler/fabric/assets/50654/9186a044-652b-4673-89f7-71cf066f32d8">
@ -188,7 +232,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. The wisdom of crowds for the win.
### 3. Create your own Fabric Mill (Server) ### Create your own Fabric Mill
<img width="2070" alt="fabric_mill_architecture" src="https://github.com/danielmiessler/fabric/assets/50654/ec3bd9b5-d285-483d-9003-7a8e6d842584"> <img width="2070" alt="fabric_mill_architecture" src="https://github.com/danielmiessler/fabric/assets/50654/ec3bd9b5-d285-483d-9003-7a8e6d842584">
@ -226,7 +270,7 @@ cat "An idea that coding is like speaking with rules." | write_essay
### Directly calling Patterns ### 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. As an example, here's how to call _the direct location_ of the `extract_wisdom` pattern.
@ -236,7 +280,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! 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: Here's what that looks like in code:
@ -370,9 +414,9 @@ The content features a conversation between two individuals discussing various t
> [!NOTE] > [!NOTE]
> Special thanks to the following people for their inspiration and contributions! > 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. - _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. - _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. - _Jonathan Dunn_ for spectacular work on the soon-to-be-released universal client.
### Primary contributors ### Primary contributors

5
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"

2
client/fabric/p.py

@ -1,4 +1,4 @@
#!/Users/jonathandunn/myAugmented/.venv/bin/python #!/usr/bin/env python3
import pyperclip import pyperclip

4
client/fabric/utils.py

@ -51,7 +51,7 @@ class Standalone:
messages = [user_message] messages = [user_message]
try: try:
stream = self.client.chat.completions.create( stream = self.client.chat.completions.create(
model="gpt-4-turbo-preview", model="gpt-4",
messages=messages, messages=messages,
temperature=0.0, temperature=0.0,
top_p=1, top_p=1,
@ -98,7 +98,7 @@ class Standalone:
messages = [user_message] messages = [user_message]
try: try:
response = self.client.chat.completions.create( response = self.client.chat.completions.create(
model="gpt-4-turbo-preview", model="gpt-4",
messages=messages, messages=messages,
temperature=0.0, temperature=0.0,
top_p=1, top_p=1,

2
server/fabric_api_server.py

@ -136,4 +136,4 @@ def extwis():
# Run the application # Run the application
if __name__ == "__main__": 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)

5
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 requests
import json import json
from flask import send_from_directory from flask import send_from_directory
import os
################################################## ##################################################
################################################## ##################################################
@ -15,7 +16,7 @@ from flask import send_from_directory
def send_request(prompt, endpoint): def send_request(prompt, endpoint):
base_url = "http://hostorip.tld:13337" base_url = "http://127.0.0.1:13337"
url = f"{base_url}{endpoint}" url = f"{base_url}{endpoint}"
headers = { headers = {
"Content-Type": "application/json", "Content-Type": "application/json",
@ -54,4 +55,4 @@ def index():
if __name__ == "__main__": 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)

Loading…
Cancel
Save