Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview
How to install jihe520/MathModelAgent. Official installation instructions. Project installation guide. Framework or library installation. Build installation instructions. How to setup and install from GitHub. Installation steps and setup instructions. Official docs and installation instructions GitHub.

jihe520/MathModelAgent Installation Guide

How to install jihe520/MathModelAgent. Official project installation instructions and setup guide.

Automated Install (Recommended)

Quick installation instructions for jihe520/MathModelAgent. This is the fastest way to complete project installation and setup.

Install via curl

curl -fsSL https://hexmos.com/ipm-install | bash && 
ipm i jihe520/MathModelAgent
or

Install via npx

npx @hexmos/ipm i jihe520/MathModelAgent

Prerequisites

Docker

containerization

Python

programming_language

Version: >=3.8

Node.js

programming_language

Version: >=16

Redis

database

git

version_control

Manual Installation Methods

Manual installation instructions. How to install from GitHub source.

Desktop Version (macOS)

wget -O mathmodel-latest-arm64.dmg https://github.com/jihe520/MathModelAgent/releases/latest/download/mathmodel-0.0.19-arm64.dmg

sudo hdiutil attach mathmodel-latest-arm64.dmg

sudo cp -R /Volumes/MathModelAgent/MathModelAgent.app /Applications

sudo hdiutil detach /Volumes/MathModelAgent

Desktop Version (macOS Intel)

wget -O mathmodel-latest-x64.dmg https://github.com/jihe520/MathModelAgent/releases/latest/download/mathmodel-0.0.19-x64.dmg

sudo hdiutil attach mathmodel-latest-x64.dmg

sudo cp -R /Volumes/MathModelAgent/MathModelAgent.app /Applications

sudo hdiutil detach /Volumes/MathModelAgent

Desktop Version (Windows)

wget -O mathmodel-latest-x64.exe https://github.com/jihe520/MathModelAgent/releases/latest/download/mathmodel-0.0.19-x64.exe

mathmodel-latest-x64.exe

Docker Deployment

git clone https://github.com/jihe520/MathModelAgent.git

cd MathModelAgent

docker-compose up

Local Deployment (Backend)

git clone https://github.com/jihe520/MathModelAgent.git

cd MathModelAgent/backend

pip install uv

uv sync

export ENV=DEV

export REDIS_URL=redis://localhost:6379/0

redis-server

source ../.venv/bin/activate

uvicorn app.main:app --host 0.0.0.0 --port 8000 --ws-ping-interval 60 --ws-ping-timeout 120 --reload

Local Deployment (Frontend)

git clone https://github.com/jihe520/MathModelAgent.git

cd MathModelAgent/frontend

npm install -g pnpm

pnpm i

pnpm run dev

SKILL Installation

npx skills add jihe520/MathModelAgent --all

Post Installation Steps

  • Configure API Keys in the application settings or backend .env file.
  • Access the frontend at http://localhost:5173 or the backend API at http://localhost:8000 after Docker deployment.
  • For local deployment, ensure Redis is running before starting backend and frontend services.