chore: adds secrets

This commit is contained in:
2024-08-28 19:16:29 +02:00
parent 6f883edca3
commit 150e80c706
23 changed files with 389434 additions and 66 deletions

View File

@@ -36,7 +36,7 @@ def main():
PROMPT_FILE_PATH = home_directory + "/dotfiles/bin/resources/welcome_prompt.txt"
# Load api key from disk
with open(home_directory + "/dotfiles/secrets/openai_api_key", 'r') as file:
with open(home_directory + "/dotfiles/secrets/openai_api_key.secret", 'r') as file:
OPENAI_API_KEY = file.read().strip()
weather = get_weather()