From a99a028cef5947fb5e518de978ad47254e09fcfd Mon Sep 17 00:00:00 2001 From: Ryan Balfanz <133278+RyanBalfanz@users.noreply.github.com> Date: Fri, 2 Feb 2024 16:28:11 -0800 Subject: [PATCH] Use ConfigParser to parse user config file This fixes a bug caused by extra characters (e.g. newline) leading to an invalid `~/.config/fabric.env`. A newline should be allowed yet causes an exception to be raised with a traceback pointing elsewhere in the code. This could be difficult to fix for some users. ```shell Traceback (most recent call last): File "/Users/ryan/fabric/client/fabric", line 68, in standalone.sendMessage(text) File "/Users/ryan/fabric/client/utils.py", line 100, in sendMessage print(response) ^^^^^^^^ UnboundLocalError: cannot access local variable 'response' where it is not associated with a value ``` --- client/utils.py | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/client/utils.py b/client/utils.py index faaf1f7..21b6195 100644 --- a/client/utils.py +++ b/client/utils.py @@ -1,20 +1,35 @@ -import requests +import configparser import os -from openai import OpenAI -import pyperclip import sys +from dataclasses import dataclass +from typing import Self + +import pyperclip +import requests +from openai import OpenAI current_directory = os.path.dirname(os.path.realpath(__file__)) config_directory = os.path.expanduser("~/.config/fabric") -env_file = os.path.join(config_directory, '.env') +env_file = os.path.join(config_directory, ".env") + + +@dataclass +class UserConfig: + openai_api_key: str + + @classmethod + def from_env_file(cls, filepath: str) -> Self: + config = configparser.ConfigParser() + with open(env_file) as stream: + config.read_string("[DEFAULT]\n" + stream.read()) + return cls(openai_api_key=config["DEFAULT"]["openai_api_key"]) class Standalone: def __init__(self, args, pattern=''): try: - with open(env_file, "r") as f: - apikey = f.read().split("=")[1] - self.client = OpenAI(api_key=apikey) + c = UserConfig.from_env_file(env_file).openai_api_key + self.client = OpenAI(api_key=c.openai_api_key) except FileNotFoundError: print("No API key found. Use the --apikey option to set the key") sys.exit()