Integrate Novita AI as exclusive inference provider - Add Novita AI API integration with DeepSeek-R1-Distill-Qwen-7B model - Remove all local model dependencies - Optimize token allocation for user inputs and context - Add Anaconda environment setup files - Add comprehensive test scripts and documentation
927854c
| @echo off | |
| REM Setup script for Anaconda environment (Windows) | |
| REM This script creates and activates a conda environment for the Research AI Assistant | |
| echo ============================================================ | |
| echo Setting up Anaconda environment for Research AI Assistant | |
| echo ============================================================ | |
| REM Check if conda is available | |
| where conda >nul 2>&1 | |
| if %ERRORLEVEL% NEQ 0 ( | |
| echo ERROR: conda command not found | |
| echo Please install Anaconda or Miniconda first | |
| echo Download from: https://www.anaconda.com/products/distribution | |
| exit /b 1 | |
| ) | |
| echo Conda found | |
| REM Create environment from environment.yml | |
| echo. | |
| echo Creating conda environment from environment.yml... | |
| conda env create -f environment.yml | |
| if %ERRORLEVEL% EQU 0 ( | |
| echo Environment created successfully | |
| echo. | |
| echo To activate the environment, run: | |
| echo conda activate research-ai-assistant | |
| echo. | |
| echo Then install remaining dependencies: | |
| echo pip install -r requirements.txt | |
| ) else ( | |
| echo Environment creation failed | |
| exit /b 1 | |
| ) | |