Agentic-RAG-Chatbot / main_local.py
philip11's picture
Upload 17 files
be454f3 verified
Raw
History Blame Contribute Delete
603 Bytes
"""Main entry point for Agentic RAG Chatbot"""
import sys
import os
# Add project root to Python path
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from ui.streamlit_app import StreamlitApp
def main():
"""Main function to run the application"""
print("πŸš€ Starting Agentic RAG Chatbot...")
print("πŸ“ Make sure to set GOOGLE_API_KEY environment variable for full LLM functionality")
print("🌐 Access the application at: http://localhost:8501")
# Create and run the Streamlit app
app = StreamlitApp()
app.run()
if __name__ == "__main__":
main()