This is the open-source repository for paper: Visual and Interactive Decomposition, Execution, and Evaluation of Text Analytics with Intelligent Agents
- Set up virtual environment with python 3.11 (for parallel version)
- Set up API keys using system environment
- The system supports up to three models as evaluators:
gpt-4o-mini,claude-3-5-sonnet-latest, andgemini-2.0-flash-lite. - You must set up at least one API key. The system will automatically ignore models without available API keys.
- To set up, put your API keys in the environment variable:
# typically in your ~/.bashrc or ~/.zshrc:
OPENAI_API_KEY="xxx"
ANTHROPIC_API_KEY="xxx"
GEMENI_API_KEY="xxx"- run
pip install -r server/requirements.txt - run
python -m server.main
- run
npm i - run
npm run dev