OpenWormLLM / scripts /docker-deploy.sh
sanjayankur31's picture
fix: correct command
d1d9a9f verified
Raw
History Blame Contribute Delete
653 Bytes
#!/bin/bash
# Copyright 2026 Ankur Sinha
# Author: Ankur Sinha <sanjay DOT ankur AT gmail DOT com>
# File: docker/deploy.sh
#
# Script for docker deployments
#echo "Re-starting MCP server"
#nml-mcp &
echo "Starting fastapi"
klea-rag-serve --host 127.0.0.1 --port 8005 &
echo "Starting streamlit frontend"
klea-rag web --title "OpenWorm AI Assistant" --subtitle "Ask questions about C elegans---sourced from the Worm Atlas and selected literature" --disclaimer "While this system uses information from curated sources, it may still make mistakes. Please check the answers. More information at https://openworm.org" --server "http://127.0.0.1:8005"