This is an example of deploying an app using a self-ask-with-search
LangChain on Steamship.
Or, install dependencies:
pip install steamship-langchain
pip install termcolor
And run the client:
python client/client.py
Switch to the server/
directory and run deploy.
cd server
ship deploy
The deployment script will walk you through setting up a package name that you can use for your own instance, if desired. This will enable you to modify the example to meet your needs (or just to have fun experimenting with).
After deployment, switch back to the parent directory ($ cd ..
) to run the client, etc.
You'll need to update the package_handle
in the client to match your new deployment.
api.py
is required by Steamship for packages being deployed. You may add additional source
files as desired, but you MUST always have api.py
.
Steamship relies on requirements.txt
as part of the packaging and deploy. If you add
new dependencies to your server code, please ensure they are reflected in requirements.txt
.