Skip to content

Commit

Permalink
Remove debug print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelOwenDyer committed Oct 11, 2024
1 parent 68f1be5 commit 28b0282
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions app/pipeline/text_exercise_chat_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ def __call__(
raise ValueError("Conversation with at least one message is required")

sentiments = self.categorize_sentiments_by_relevance(dto)
print(f"Sentiments: {sentiments}")
self.callback.done("Responding")

response = self.respond(dto, sentiments)
Expand Down Expand Up @@ -78,7 +77,6 @@ def categorize_sentiments_by_relevance(
[extract_sentiments_prompt], CompletionArguments()
)
response = response.contents[0].text_content
print(f"Sentiments response:\n{response}")
sentiments = ([], [], [])
for line in response.split("\n"):
line = line.strip()
Expand Down

0 comments on commit 28b0282

Please sign in to comment.