llmintro / app.py
barkha167's picture
Upload app.py
162dc60 verified
raw
history blame contribute delete
No virus
1.78 kB
#Hello! It seems like you want to import the Streamlit library in Python. Streamlit is a powerful open-source framework used for building web applications with interactive data visualizations and machine learning models. To import Streamlit, you'll need to ensure that you have it installed in your Python environment.
#Once you have Streamlit installed, you can import it into your Python script using the import statement,
import streamlit as st
#As Langchain team has been working aggresively on improving the tool, we can see a lot of changes happening every weeek,
#As a part of it, the below import has been depreciated
#from langchain.llms import OpenAI
#New import from langchain, which replaces the above
from langchain_openai import OpenAI
#When deployed on huggingface spaces, this values has to be passed using Variables & Secrets setting, as shown in the video :)
#import os
#os.environ["OPENAI_API_KEY"] = "sk-werwerwerrtertertwkFJwtwetwteWSig4ZY9AT"
#Function to return the response
def load_answer(question):
# "text-davinci-003" model is depreciated, so using the latest one https://platform.openai.com/docs/deprecations
llm = OpenAI(model_name="gpt-3.5-turbo-instruct",temperature=0)
#Last week langchain has recommended to use invoke function for the below please :)
answer=llm.invoke(question)
return answer
#App UI starts here
st.set_page_config(page_title="LangChain Demo", page_icon=":robot:")
st.header("LangChain Demo")
#Gets the user input
def get_text():
input_text = st.text_input("You: ", key="input")
return input_text
user_input=get_text()
response = load_answer(user_input)
submit = st.button('Generate')
#If generate button is clicked
if submit:
st.subheader("Answer:")
st.write(response)