LangchainBasics / app.py
ClemAotearoa's picture
Upload 2 files
929a3bd verified
raw
history blame
556 Bytes
from langchain_openai.llms.base import OpenAI
from dotenv import load_dotenv
load_dotenv()
import streamlit as st
print('ok')
def get_openai_response(question):
llm=OpenAI(model_name="gpt-3.5-turbo-instruct",temperature=0.5)
response=llm(question)
return response
st.set_page_config(page_title="Q&A Demo")
st.header("Langchain Application")
input = st.text_input("Input: ", key="input")
response = get_openai_response(input)
submit=st.button("Ask the question")
if submit:
st.subheader("The Response is")
st.write(response)