From 48b6d5011caf40ef42ea4b24fc16d023d3b42dd2 Mon Sep 17 00:00:00 2001 From: Joschka Braun Date: Thu, 5 Sep 2024 15:04:26 -0400 Subject: [PATCH] feat: store comment from user feedback --- parea/schemas/models.py | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/parea/schemas/models.py b/parea/schemas/models.py index 8a790c5f..16b814c8 100644 --- a/parea/schemas/models.py +++ b/parea/schemas/models.py @@ -82,6 +82,7 @@ class FeedbackRequest: trace_id: Optional[str] = None name: Optional[str] = None target: Optional[str] = None + comment: Optional[str] = None @define diff --git a/pyproject.toml b/pyproject.toml index 13420cfb..c8d3e580 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "parea-ai" packages = [{ include = "parea" }] -version = "0.2.213" +version = "0.2.214" description = "Parea python sdk" readme = "README.md" authors = ["joel-parea-ai "]