debian was not the play

This commit is contained in:
ForeverPyrite
2024-09-28 01:52:32 -04:00
parent b062ba7156
commit d7328a5b7e
3 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,5 +1,6 @@
thread-killer.py thread-killer.py
log.txt log.txt
.env
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/

View File

@@ -14,8 +14,10 @@ from openai import OpenAI
from typing_extensions import override from typing_extensions import override
# To get the env var # To get the env var
from dotenv import load_dotenv
import os import os
load_dotenv()
### OpenAI Config ### OpenAI Config
@@ -44,7 +46,7 @@ class EventHandler(AssistantEventHandler):
# Setting up OpenAI Client with API Key # Setting up OpenAI Client with API Key
api_key =os.getenv("OPENAI_API_KEY") api_key = os.getenv("OPENAI_API_KEY")
client = OpenAI( client = OpenAI(
organization='org-7ANUFsqOVIXLLNju8Rvmxu3h', organization='org-7ANUFsqOVIXLLNju8Rvmxu3h',
project="proj_NGz8Kux8CSka7DRJucAlDCz6", project="proj_NGz8Kux8CSka7DRJucAlDCz6",

Binary file not shown.