Views
No views yet
Built with a strong focus on trust, explainability, and real research workflows — not just a chatbot.
One source of truth → many cognitive views.
.env file ignored via .gitignore1GROQ_API_KEY=your_groq_api_key
2TAVILY_API_KEY=your_tavily_api_key
3
4
5Installation & Setup
61️⃣ Clone the Repository
7git clone https://github.com/yourusername/ResearchAI-Notebook.git
8cd ResearchAI-Notebook
9
102️⃣ Backend Setup
11cd backend
12python -m venv venv
13source venv/bin/activate # Windows: venv\Scripts\activate
14pip install -r requirements.txt
15uvicorn main:app --reload