- Ask questions and get answers using Groq LLMs and Tavily search.
- Streamlit web interface for easy interaction.
- Clone the repository
- Install dependencies:
pip install -r requirements.txt
- Create a
.env
file in the project root with your API keys:GROQ_API_KEY=your_groq_api_key_here TAVILY_API_KEY=your_tavily_api_key_here
- Run the app:
streamlit run app.py
GROQ_API_KEY
: Your Groq LLM API key (get one here).TAVILY_API_KEY
: Your Tavily search API key (get one here).
- Open the Streamlit app in your browser (usually at http://localhost:8501).
- Enter your query and get instant answers!
- Do not commit your
.env
file or API keys to version control. - For any issues, ensure your API keys are valid and your environment is set up as described above.