by mmTheBest
AI research assistant for researchers: turns ideas into evidence-grounded outcomes with live paper retrieval, full-text reasoning, citation tracing, and proposal workflow planning.
# Add to your Claude Code skills
git clone https://github.com/mmTheBest/arxieResearch moves faster when evidence is easy to trust.
Arxie is an AI research assistant that reads real papers (Semantic Scholar + arXiv), reasons across sources, and writes citation-grounded outputs you can verify.
v0.1.0 (released)v0.2.0 (in planning)ra lit-review)ra trace)ra chat)(See docs/PRE-PRD-v0.2.md for discussion draft.)
Most assistants stop at summaries. Arxie is designed for researchers who need a defensible reasoning trail:
git clone https://github.com/mmTheBest/arxie.git
cd arxie
python -m venv .venv
source .venv/bin/activate
pip install -e .
export OPENAI_API_KEY="sk-..."
# Ask a question
ra query "What are recent approaches to long-context LLMs?"
# Deeper multi-hop analysis
ra query --deep "Compare LoRA vs QLoRA methodologies"
# Literature review draft
ra lit-review "attention mechanisms in computer vision"
# Citation timeline
ra trace "Attention Is All You Need"
# Interactive session
ra chat
uvicorn ra.api.app:app --host 0.0.0.0 --port 8000
curl -X POST http://localhost:8000/api/query \
-H "Content-Type: application/json" \
-d '{"query":"What are retrieval-augmented generation trade-offs?"}'
docker build -t arxie .
docker run -e OPENAI_API_KEY="sk-..." arxie ra query "Your question here"
Using Arxie’s internal 100-question benchmark with GPT-4o-mini:
| Metric | Result | |---|---:| | Citation precision | 86% | | Claim support ratio | 100% | | Tool success rate | 99.8% |
These are reported benchmark results, not a user quick-start workflow.
src/ra/
├── agents/ # research, lit-review, chat behaviors
├── api/ # FastAPI app + request models
├── citation/ # citation formatting + confidence scoring
├── parsing/ # PDF parsing
├── retrieval/ # Semantic Scholar + arXiv + cache
├── tools/ # tool interfaces for the agent loop
└── utils/ # config, logging, rate limiting
MIT
No comments yet. Be the first to share your thoughts!