A newer version of the Streamlit SDK is available:
1.50.0
metadata
title: Multimodal Content Generation
emoji: 🚀
colorFrom: gray
colorTo: gray
sdk: streamlit
sdk_version: 1.32.0
app_file: multi-modal-content-generation.py
pinned: false
license: apache-2.0
short_description: A Conversational Chatbot, Image Summarizer & Text2Image.
A Multimodal Content Generation have following capabilities:
1. A Conversational chatbot
as same as ChatGPT v3.5 + Image Summarization
Capabilities through GOOGLE GEMINI VISION PRO API
.
2. Text to Image
(using Stability Ai (Stable Diffusion)) through REPLICATE API
.
Setup steps:
Create virtual environment
python -m venv <name of virtual environment>
Activate it
source <name of virtual environment>/bin/activate
Now install required libraries from requirements.txt file using...
pip install -r requirements.txt
Create .env file and add your API TOKEN
GOOGLE_API_KEY="Enter Your GOOGLE API TOKEN" REPLICATE_API_KEY=""
To run app
streamlit run <name-of-app>.py