Fix for ModuleNotFoundError while running langchain-server. Issue #5833 (#6077)

This PR fixes the error
`ModuleNotFoundError: No module named 'langchain.cli'`
Fixes https://github.com/hwchase17/langchain/issues/5833 (issue)
This commit is contained in:
Keshav Kumar 2023-06-13 21:07:07 +05:30 committed by GitHub
parent 0c52275bdb
commit 8fdf88b8e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
import subprocess
from pathlib import Path
from langchain.cli.main import get_docker_compose_command
from langchainplus_sdk.cli.main import get_docker_compose_command
def main() -> None: