A Streamlit web application featuring an embedded Kodey AI chat widget with a custom background.
- 🤖 Kodey AI chat widget integration
- 🎨 Custom background image (sec_jacob.png)
- 📱 Responsive design with wide layout
- ☁️ Ready for cloud deployment
- Install dependencies:
pip install -r requirements.txt- Run the app:
cd streamlit_agent
streamlit run app.py- Open your browser and navigate to
http://localhost:8501
This app is configured for easy deployment on Render using the included render.yaml configuration.
- Push your code to GitHub
- Connect your GitHub repo to Render
- Render will automatically detect the
render.yamlfile and deploy
- Create a new Web Service on Render
- Connect your GitHub repository
- Use these settings:
- Build Command:
pip install -r requirements.txt - Start Command:
streamlit run streamlit_agent/app.py --server.port $PORT --server.address 0.0.0.0 --server.headless true --server.enableCORS false --server.enableXsrfProtection false
- Build Command:
├── streamlit_agent/
│ ├── app.py # Main Streamlit application
│ ├── kodey_widget.py # Kodey AI widget component
│ └── sec_jacob.png # Background image
├── requirements.txt # Python dependencies
├── render.yaml # Render deployment configuration
└── README.md # This file