Skip to content

Commit

Permalink
ci: bump cli docker version (#594)
Browse files Browse the repository at this point in the history
  • Loading branch information
langchain-infra authored Apr 10, 2024
2 parents 54d12b5 + 56f6ad7 commit bb1069b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions python/langsmith/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ def _start_local(self) -> None:
def pull(
self,
*,
version: str = "0.2.3",
version: str = "0.2.17",
) -> None:
"""Pull the latest LangSmith images.
Args:
version: The LangSmith version to use for LangSmith. Defaults to 0.2.3
version: The LangSmith version to use for LangSmith. Defaults to 0.2.17
"""
os.environ["_LANGSMITH_IMAGE_VERSION"] = version
subprocess.run(
Expand All @@ -123,7 +123,7 @@ def start(
*,
openai_api_key: Optional[str] = None,
langsmith_license_key: str,
version: str = "0.2.3",
version: str = "0.2.17",
) -> None:
"""Run the LangSmith server locally.
Expand Down Expand Up @@ -251,8 +251,8 @@ def main() -> None:
)
server_start_parser.add_argument(
"--version",
default="0.2.3",
help="The LangSmith version to use for LangSmith. Defaults to 0.2.3.",
default="0.2.17",
help="The LangSmith version to use for LangSmith. Defaults to 0.2.17.",
)
server_start_parser.set_defaults(
func=lambda args: server_command.start(
Expand All @@ -279,8 +279,8 @@ def main() -> None:
)
server_pull_parser.add_argument(
"--version",
default="0.2.3",
help="The LangSmith version to use for LangSmith. Defaults to 0.2.3.",
default="0.2.17",
help="The LangSmith version to use for LangSmith. Defaults to 0.2.17.",
)
server_pull_parser.set_defaults(
func=lambda args: server_command.pull(version=args.version)
Expand Down

0 comments on commit bb1069b

Please sign in to comment.