Skip to content

Commit

Permalink
Merge pull request #1130 from parea-ai/fix-no-raise-on-project-set-error
Browse files Browse the repository at this point in the history
don't raise on parea error
  • Loading branch information
jalexanderII authored Jan 25, 2025
2 parents 300f252 + 7b4233c commit 5d3a879
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parea/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def _get_project_uuid(self) -> str:
return self._project.uuid
except Exception as e:
logger.error(f"Parea: Error getting project UUID for project {self.project_name}: {e}")
raise
return self._project.uuid if self._project else ""

def wrap_openai_client(self, client: "OpenAI", integration: Optional[str] = None) -> None:
"""Only necessary for instance client with OpenAI version >= 1.0.0"""
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.217"
version = "0.2.218"
description = "Parea python sdk"
readme = "README.md"
authors = ["joel-parea-ai <[email protected]>"]
Expand Down

0 comments on commit 5d3a879

Please sign in to comment.