Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
180 changes: 111 additions & 69 deletions blogs/pharmaceutical/article.md

Large diffs are not rendered by default.

Binary file added blogs/pharmaceutical/images/admin_groups.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added blogs/pharmaceutical/images/chat_citations.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added blogs/pharmaceutical/images/trial_visuals.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
156 changes: 129 additions & 27 deletions blogs/pharmaceutical/setup.md

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions blogs/pharmaceutical/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ generate_secret() {
}

if [ ! -f .env ]; then
TERMINAL_KEY=$(generate_secret)
cat > .env << EOF
# =============================================================================
# Open WebUI — Pharma Industry Environment Configuration
Expand Down Expand Up @@ -86,6 +87,10 @@ VLLM_MAX_MODEL_LEN=8192
VLLM_API_KEY=$(generate_secret)
HF_TOKEN=hf_your_token_here

# --- Open Terminal ---
OPEN_TERMINAL_API_KEY=${TERMINAL_KEY}
TERMINAL_SERVER_CONNECTIONS='[{\"url\":\"http://open-terminal:8000\",\"key\":\"${TERMINAL_KEY}\"}]'

# --- Workers ---
UVICORN_WORKERS=4

Expand Down Expand Up @@ -152,6 +157,10 @@ echo " - privkey.pem (private key)"
echo " 3. Update nginx/nginx.conf server_name to match your domain"
echo " 4. Start the stack: docker compose up -d"
echo " 5. Access the UI at: https://ai.yourcompany.com"
echo " 6. Install the Inline Visualizer tool & skill (see setup.md Step 5)"
echo ""
echo " Open Terminal is pre-configured via TERMINAL_SERVER_CONNECTIONS."
echo " Verify it's connected: Admin Settings → Integrations → Open Terminal"
echo ""
echo " To check service health: docker compose ps"
echo " To view logs: docker compose logs -f open-webui-1"
Expand Down