Browse Source

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 <module>
    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
```
pull/28/head
Ryan Balfanz 1 year ago committed by GitHub
parent
commit
a99a028cef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 29
      client/utils.py

29
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()

Loading…
Cancel
Save