Spaces:
Sleeping
Sleeping
File size: 665 Bytes
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 |
import streamlit as st
from langchain_openai import OpenAI
# Creating a function for getting the responses from OpenAI
def get_response(question):
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)
|