Skip to content

Commit

Permalink
images and text updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sajjadrahman56 committed Dec 25, 2023
1 parent 305d59c commit b5edaec
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ def get_response(input_text):
return response.text

st.set_page_config(page_title="Q & A", page_icon=":gem:")
st.header("Gemini LLM application")
input = st.text_input("Enter your question here", key="input")
st.header("I am your FRIEND Gemini")
st.subheader("Ask me anything and I will try to answer it for you as best as I can" )

input = st.text_input("Enter your question here", key="input")
submit = st.button("Submit")


Expand Down
51 changes: 51 additions & 0 deletions text_image.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
from dotenv import load_dotenv
load_dotenv()

import streamlit as st
import os
import pathlib
import textwrap
from PIL import Image


import google.generativeai as genai


os.getenv("GOOGLE_API_KEY")
genai.configure(api_key=os.getenv("GOOGLE_API_KEY"))

## Function to load OpenAI model and get respones

def get_gemini_response(input,image):
model = genai.GenerativeModel('gemini-pro-vision')
if input!="":
response = model.generate_content([input,image])
else:
response = model.generate_content(image)
return response.text

##initialize our streamlit app

st.set_page_config(page_title="Gemini Image Demo")

st.header("You and Me ! Here we go !! ")

input=st.text_input("Input Prompt: ",key="input")
uploaded_file = st.file_uploader("select an image...", type=["jpg", "jpeg", "png"])

image=""

if uploaded_file is not None:
image = Image.open(uploaded_file)
st.image(image, caption="Uploaded Image.", use_column_width=True)


submit=st.button("Tell me about the image")

## If ask button is clicked

if submit:

response=get_gemini_response(input,image)
st.subheader("The Response is")
st.write(response)

0 comments on commit b5edaec

Please sign in to comment.