agentic-system / init_space.sh
Cascade Bot
Added Groq streaming support and optimizations - clean version
1d75522
raw
history blame contribute delete
465 Bytes
#!/bin/bash
# Create necessary directories
mkdir -p models
mkdir -p logs
# Install system dependencies
apt-get update && apt-get install -y \
git \
git-lfs \
python3-pip \
python3-dev \
build-essential \
cmake \
pkg-config \
libcurl4-openssl-dev
# Initialize git-lfs
git lfs install
# Install Python dependencies
pip install -r requirements.txt
# Download models
python download_models.py
# Start the application
python app.py