Skip to content

Commit

Permalink
Fix: GPT test
Browse files Browse the repository at this point in the history
  • Loading branch information
SverreNystad committed Sep 18, 2023
1 parent 9c58aa2 commit 5f34c03
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/text_generation/test_chat_gpt.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import pytest
# import src.text_generation.chat_gpt as chat_gpt
import src.text_generation.chat_gpt as chat_gpt

@pytest.mark.apitest
def test_chat_gpt_response():
# prompt = "Say anything!"
# response = chat_gpt.chat_with_gpt(prompt)
# assert response
assert True
prompt = "Say anything!"
response = chat_gpt.chat_with_gpt(prompt)
assert response

0 comments on commit 5f34c03

Please sign in to comment.