Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
joschkabraun committed Nov 28, 2023
1 parent 86ed0d4 commit f8b5683
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parea/evals/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
def goal_success_ratio(log: Log) -> float:
"""Returns the average amount of turns the user had to converse with the AI to reach their goals."""
messages = [m.to_dict() for m in log.configuration.messages]
messages.append({'role': 'assistant', 'content': log.output})
messages.append({"role": "assistant", "content": log.output})

# need to determine where does a new goal start
conversation_segments = []
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "parea-ai"
packages = [{ include = "parea" }]
version = "0.2.18"
version = "0.2.19"
description = "Parea python sdk"
readme = "README.md"
authors = ["joel-parea-ai <[email protected]>"]
Expand Down

0 comments on commit f8b5683

Please sign in to comment.