File size: 840 Bytes
ca684d5
81cf284
 
1269bc4
 
81cf284
 
 
ca684d5
 
81cf284
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import keyfile as kf
import streamlit as st
from langchain_openai import OpenAI
import getpass
import os

# Creating a function for getting the responses from OpenAI
def get_response(question):
    if "OPENAI_API_KEY" not in os.environ:
        os.environ["OPENAI_API_KEY"] = getpass.getpass("Enter your OpenAI API key: ")
    llm = OpenAI()
    answer = llm.invoke(question)
    return answer

# Using Streamlit for generation of page
st.set_page_config(page_title = "ASK GPT", page_icon = ":robot:")
st.header("ASK GPT Application")

# Create a function for taking user input
def get_user_input():
    text = st.text_input("Ask: ", key = "input")
    return text

user_input = get_user_input()
resp = get_response(user_input)

# Submission button
submit = st.button("Ask!")

if submit:
    st.subheader("Answer: ")
    st.write(resp)