diff --git a/python/langsmith/cli/main.py b/python/langsmith/cli/main.py index 114950b1f..7a52c4e3c 100644 --- a/python/langsmith/cli/main.py +++ b/python/langsmith/cli/main.py @@ -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( @@ -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. @@ -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( @@ -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)