Skip to content

Commit

Permalink
fix: change name of env file
Browse files Browse the repository at this point in the history
  • Loading branch information
Knolaisen committed Feb 29, 2024
1 parent e099f40 commit bc7803b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#a class for defining the config variables
class Config():
def __init__(self, path='config.env', gpt_model="gpt-3.5-turbo"):
def __init__(self, path='.env', gpt_model="gpt-3.5-turbo"):
self.path = path
self.GPT_MODEL = gpt_model
load_dotenv(dotenv_path=path)
Expand Down

0 comments on commit bc7803b

Please sign in to comment.