Skip to content

Commit

Permalink
added python analyzer system prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
bkocis committed Aug 28, 2023
1 parent b453552 commit 6e2cb38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chatgptApp/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def main(system_message, human_message_prompt_template):
if __name__ == "__main__":
MODELS = ["gpt-3.5-turbo", "gpt-4"]
DEFAULT_TEMPERATURE = 0.1
DB_NAME = "chat_sessions_rw.db"
DB_NAME = "chat_sessions.db"
path_to_db = os.path.join(os.environ["PATH_TO_DB"], DB_NAME)

conn = sqlite3.connect(path_to_db, check_same_thread=False)
Expand Down

0 comments on commit 6e2cb38

Please sign in to comment.