File size: 773 Bytes
c63aa8f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from dotenv import load_dotenv

load_dotenv()

import streamlit as st
import os
import pathlib
import textwrap

import google.generativeai as genai

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

# function to los the genini api model and get responses

def get_gemini_response(question):
    model =genai.GenerativeModel('gemini-pro')
    response = model.generate_content(question)
    return response.text     

  #intizlize the streamlitapp

st.set_page_config(page_title= "DDS Q & A Demo")  

st.header("DDS Q & A Demo using Gemini")  

input = st.text_input("Input:", key="input")

submit = st.button("Ask your Question")

if submit:
    response = get_gemini_response(input)
    st.subheader("The Answer is")
    st.write(response)