cgoncalves/agentic-rag
0
1---2title: Agentic Rag3emoji: 💬4colorFrom: yellow5colorTo: purple6sdk: gradio7sdk_version: 5.23.38app_file: app.py9pinned: false10license: mit11short_description: HF Agents Course12---13 14 15## Environment Variables16 17To run this application, you need to set up the following environment variables in a `.env` file:18 19```20# Hugging Face API token (required)21HUGGINGFACEHUB_API_TOKEN=your_huggingface_token22 23# Langfuse logging (optional)24LANGFUSE_SECRET_KEY=your_langfuse_secret25LANGFUSE_PUBLIC_KEY=your_langfuse_public26LANGFUSE_HOST=https://cloud.langfuse.com27 28# Weather API (required for weather tool)29WEATHERAPI_KEY=your_weatherapi_key30```31 32You can obtain these API keys from:33- [Hugging Face](https://huggingface.co/settings/tokens)34- [Langfuse](https://langfuse.com/)35- [WeatherAPI](https://www.weatherapi.com/)