Skip to content

Commit

Permalink
rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
vowelparrot committed Jun 1, 2023
1 parent 22603bc commit 12eee39
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/python_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- master
paths:
- "python/pyproject.toml"
workflow_dispatch:

env:
POETRY_VERSION: "1.4.2"
Expand Down
2 changes: 1 addition & 1 deletion python/langchainplus_sdk/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def validate_time_range(cls, values: Dict[str, Any]) -> Dict[str, Any]:

class FeedbackSourceBase(BaseModel):
type: str
metadata: Dict[str, Any] | None = None
metadata: Optional[Dict[str, Any]] = None

class Config:
frozen = True
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchainplus-sdk"
version = "0.0.1-rc1"
version = "0.0.1-rc2"
description = "Client library to connect to the LangChainPlus LLM Tracing and Evaluation Platform."
authors = ["LangChain"]
license = "MIT"
Expand Down

0 comments on commit 12eee39

Please sign in to comment.