2024-02-02 09:50:10 +00:00
|
|
|
import requests
|
|
|
|
import os
|
|
|
|
from openai import OpenAI
|
|
|
|
import pyperclip
|
|
|
|
import sys
|
2024-02-03 14:11:29 +00:00
|
|
|
from dotenv import load_dotenv
|
2024-02-03 15:37:19 +00:00
|
|
|
from requests.exceptions import HTTPError
|
|
|
|
from tqdm import tqdm
|
2024-02-02 09:50:10 +00:00
|
|
|
|
|
|
|
current_directory = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
config_directory = os.path.expanduser("~/.config/fabric")
|
2024-02-03 10:03:05 +00:00
|
|
|
env_file = os.path.join(config_directory, ".env")
|
2024-02-02 09:50:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Standalone:
|
2024-02-03 14:11:29 +00:00
|
|
|
def __init__(self, args, pattern="", env_file="~/.config/fabric/.env"):
|
2024-02-03 15:37:19 +00:00
|
|
|
# Expand the tilde to the full path
|
|
|
|
env_file = os.path.expanduser(env_file)
|
2024-02-03 14:11:29 +00:00
|
|
|
load_dotenv(env_file)
|
2024-02-02 15:11:56 +00:00
|
|
|
try:
|
2024-02-03 14:11:29 +00:00
|
|
|
apikey = os.environ["OPENAI_API_KEY"]
|
|
|
|
self.client = OpenAI()
|
|
|
|
self.client.api_key = apikey
|
|
|
|
except KeyError:
|
|
|
|
print("OPENAI_API_KEY not found in environment variables.")
|
|
|
|
|
2024-02-02 15:11:56 +00:00
|
|
|
except FileNotFoundError:
|
|
|
|
print("No API key found. Use the --apikey option to set the key")
|
|
|
|
sys.exit()
|
|
|
|
self.config_pattern_directory = config_directory
|
2024-02-02 09:50:10 +00:00
|
|
|
self.pattern = pattern
|
|
|
|
self.args = args
|
|
|
|
|
|
|
|
def streamMessage(self, input_data: str):
|
|
|
|
wisdomFilePath = os.path.join(
|
2024-02-03 10:03:05 +00:00
|
|
|
config_directory, f"patterns/{self.pattern}/system.md"
|
|
|
|
)
|
2024-02-02 09:50:10 +00:00
|
|
|
user_message = {"role": "user", "content": f"{input_data}"}
|
2024-02-03 10:03:05 +00:00
|
|
|
wisdom_File = os.path.join(current_directory, wisdomFilePath)
|
|
|
|
buffer = ""
|
2024-02-02 09:50:10 +00:00
|
|
|
if self.pattern:
|
|
|
|
try:
|
|
|
|
with open(wisdom_File, "r") as f:
|
|
|
|
system = f.read()
|
|
|
|
system_message = {"role": "system", "content": system}
|
|
|
|
messages = [system_message, user_message]
|
|
|
|
except FileNotFoundError:
|
2024-02-03 10:03:05 +00:00
|
|
|
print("pattern not found")
|
2024-02-02 09:50:10 +00:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
messages = [user_message]
|
|
|
|
try:
|
|
|
|
stream = self.client.chat.completions.create(
|
2024-02-05 00:06:04 +00:00
|
|
|
model="gpt-4",
|
2024-02-02 09:50:10 +00:00
|
|
|
messages=messages,
|
|
|
|
temperature=0.0,
|
|
|
|
top_p=1,
|
|
|
|
frequency_penalty=0.1,
|
|
|
|
presence_penalty=0.1,
|
2024-02-03 10:03:05 +00:00
|
|
|
stream=True,
|
2024-02-02 09:50:10 +00:00
|
|
|
)
|
|
|
|
for chunk in stream:
|
|
|
|
if chunk.choices[0].delta.content is not None:
|
|
|
|
char = chunk.choices[0].delta.content
|
|
|
|
buffer += char
|
2024-02-03 10:03:05 +00:00
|
|
|
if char not in ["\n", " "]:
|
|
|
|
print(char, end="")
|
|
|
|
elif char == " ":
|
|
|
|
print(" ", end="") # Explicitly handle spaces
|
|
|
|
elif char == "\n":
|
2024-02-02 09:50:10 +00:00
|
|
|
print() # Handle newlines
|
|
|
|
sys.stdout.flush()
|
|
|
|
except Exception as e:
|
|
|
|
print(f"Error: {e}")
|
2024-02-03 14:11:29 +00:00
|
|
|
print(e)
|
2024-02-02 09:50:10 +00:00
|
|
|
if self.args.copy:
|
|
|
|
pyperclip.copy(buffer)
|
|
|
|
if self.args.output:
|
2024-02-03 10:03:05 +00:00
|
|
|
with open(self.args.output, "w") as f:
|
2024-02-02 09:50:10 +00:00
|
|
|
f.write(buffer)
|
|
|
|
|
|
|
|
def sendMessage(self, input_data: str):
|
|
|
|
wisdomFilePath = os.path.join(
|
2024-02-03 10:03:05 +00:00
|
|
|
config_directory, f"patterns/{self.pattern}/system.md"
|
|
|
|
)
|
2024-02-02 09:50:10 +00:00
|
|
|
user_message = {"role": "user", "content": f"{input_data}"}
|
2024-02-03 10:03:05 +00:00
|
|
|
wisdom_File = os.path.join(current_directory, wisdomFilePath)
|
2024-02-02 09:50:10 +00:00
|
|
|
if self.pattern:
|
|
|
|
try:
|
|
|
|
with open(wisdom_File, "r") as f:
|
|
|
|
system = f.read()
|
|
|
|
system_message = {"role": "system", "content": system}
|
|
|
|
messages = [system_message, user_message]
|
|
|
|
except FileNotFoundError:
|
2024-02-03 10:03:05 +00:00
|
|
|
print("pattern not found")
|
2024-02-02 09:50:10 +00:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
messages = [user_message]
|
|
|
|
try:
|
|
|
|
response = self.client.chat.completions.create(
|
2024-02-05 00:06:04 +00:00
|
|
|
model="gpt-4",
|
2024-02-02 09:50:10 +00:00
|
|
|
messages=messages,
|
|
|
|
temperature=0.0,
|
|
|
|
top_p=1,
|
|
|
|
frequency_penalty=0.1,
|
2024-02-03 10:03:05 +00:00
|
|
|
presence_penalty=0.1,
|
2024-02-02 09:50:10 +00:00
|
|
|
)
|
2024-02-03 14:11:29 +00:00
|
|
|
print(response)
|
2024-02-02 09:50:10 +00:00
|
|
|
print(response.choices[0].message.content)
|
|
|
|
except Exception as e:
|
|
|
|
print(f"Error: {e}")
|
2024-02-03 14:11:29 +00:00
|
|
|
print(e)
|
2024-02-02 09:50:10 +00:00
|
|
|
if self.args.copy:
|
|
|
|
pyperclip.copy(response.choices[0].message.content)
|
|
|
|
if self.args.output:
|
2024-02-03 10:03:05 +00:00
|
|
|
with open(self.args.output, "w") as f:
|
2024-02-02 09:50:10 +00:00
|
|
|
f.write(response.choices[0].message.content)
|
|
|
|
|
|
|
|
|
2024-02-02 15:11:56 +00:00
|
|
|
class Update:
|
2024-02-02 09:50:10 +00:00
|
|
|
def __init__(self):
|
2024-02-02 15:11:56 +00:00
|
|
|
self.root_api_url = "https://api.github.com/repos/danielmiessler/fabric/contents/patterns?ref=main"
|
|
|
|
self.config_directory = os.path.expanduser("~/.config/fabric")
|
2024-02-03 22:20:37 +00:00
|
|
|
self.pattern_directory = os.path.join(self.config_directory, "patterns")
|
2024-02-02 15:11:56 +00:00
|
|
|
os.makedirs(self.pattern_directory, exist_ok=True)
|
2024-02-03 15:37:19 +00:00
|
|
|
self.update_patterns() # Call the update process from a method.
|
|
|
|
|
|
|
|
def update_patterns(self):
|
|
|
|
try:
|
2024-02-03 22:20:37 +00:00
|
|
|
self.progress_bar = tqdm(desc="Downloading Patterns…", unit="file")
|
2024-02-03 15:37:19 +00:00
|
|
|
self.get_github_directory_contents(
|
2024-02-03 22:20:37 +00:00
|
|
|
self.root_api_url, self.pattern_directory
|
|
|
|
)
|
2024-02-03 15:37:19 +00:00
|
|
|
# Close progress bar on success before printing the message.
|
|
|
|
self.progress_bar.close()
|
|
|
|
except HTTPError as e:
|
|
|
|
# Ensure progress bar is closed on HTTPError as well.
|
|
|
|
self.progress_bar.close()
|
|
|
|
if e.response.status_code == 403:
|
2024-02-03 22:20:37 +00:00
|
|
|
print(
|
|
|
|
"GitHub API rate limit exceeded. Please wait before trying again."
|
|
|
|
)
|
2024-02-03 15:37:19 +00:00
|
|
|
sys.exit()
|
|
|
|
else:
|
|
|
|
print(f"Failed to download patterns due to an HTTP error: {e}")
|
|
|
|
sys.exit() # Exit after handling the error.
|
2024-02-02 15:11:56 +00:00
|
|
|
|
|
|
|
def download_file(self, url, local_path):
|
2024-02-03 15:37:19 +00:00
|
|
|
try:
|
|
|
|
response = requests.get(url)
|
|
|
|
response.raise_for_status()
|
|
|
|
with open(local_path, "wb") as f:
|
|
|
|
f.write(response.content)
|
|
|
|
self.progress_bar.update(1)
|
|
|
|
except HTTPError as e:
|
|
|
|
print(f"Failed to download file {url}. HTTP error: {e}")
|
|
|
|
sys.exit()
|
2024-02-02 15:11:56 +00:00
|
|
|
|
|
|
|
def process_item(self, item, local_dir):
|
2024-02-03 10:03:05 +00:00
|
|
|
if item["type"] == "file":
|
2024-02-03 22:20:37 +00:00
|
|
|
self.download_file(
|
|
|
|
item["download_url"], os.path.join(local_dir, item["name"])
|
|
|
|
)
|
2024-02-03 10:03:05 +00:00
|
|
|
elif item["type"] == "dir":
|
|
|
|
new_dir = os.path.join(local_dir, item["name"])
|
2024-02-02 15:11:56 +00:00
|
|
|
os.makedirs(new_dir, exist_ok=True)
|
2024-02-03 10:03:05 +00:00
|
|
|
self.get_github_directory_contents(item["url"], new_dir)
|
2024-02-02 15:11:56 +00:00
|
|
|
|
|
|
|
def get_github_directory_contents(self, api_url, local_dir):
|
2024-02-03 15:37:19 +00:00
|
|
|
try:
|
|
|
|
response = requests.get(api_url)
|
|
|
|
response.raise_for_status()
|
|
|
|
jsonList = response.json()
|
|
|
|
for item in jsonList:
|
|
|
|
self.process_item(item, local_dir)
|
|
|
|
except HTTPError as e:
|
|
|
|
if e.response.status_code == 403:
|
2024-02-03 22:20:37 +00:00
|
|
|
print(
|
|
|
|
"GitHub API rate limit exceeded. Please wait before trying again."
|
|
|
|
)
|
2024-02-03 15:37:19 +00:00
|
|
|
self.progress_bar.close() # Ensure the progress bar is cleaned up properly
|
|
|
|
else:
|
2024-02-03 22:20:37 +00:00
|
|
|
print(f"Failed to fetch directory contents due to an HTTP error: {e}")
|
2024-02-03 15:37:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Setup:
|
|
|
|
def __init__(self):
|
|
|
|
self.config_directory = os.path.expanduser("~/.config/fabric")
|
2024-02-03 22:20:37 +00:00
|
|
|
self.pattern_directory = os.path.join(self.config_directory, "patterns")
|
2024-02-03 15:37:19 +00:00
|
|
|
os.makedirs(self.pattern_directory, exist_ok=True)
|
|
|
|
self.env_file = os.path.join(self.config_directory, ".env")
|
|
|
|
|
|
|
|
def api_key(self, api_key):
|
|
|
|
if not os.path.exists(self.env_file):
|
|
|
|
with open(self.env_file, "w") as f:
|
|
|
|
f.write(f"OPENAI_API_KEY={api_key}")
|
|
|
|
print(f"OpenAI API key set to {api_key}")
|
|
|
|
|
|
|
|
def patterns(self):
|
|
|
|
Update()
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
print("Welcome to Fabric. Let's get started.")
|
|
|
|
apikey = input("Please enter your OpenAI API key\n")
|
|
|
|
self.api_key(apikey.strip())
|
|
|
|
self.patterns()
|