File size: 777 Bytes
20722c2 a866616 20722c2 |
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 |
import streamlit as st
from langchain.chat_models import ChatOpenAI
from langchain.prompts.chat import ChatPromptTemplate
import os
os.environ["OPENAI_API_KEY"] = os.getenv("k1")
st.title("Summarization Application :robot_face:")
options = ["English","Telugu","Hindi","French","German","Russian","Spanish"]
input_langauge = st.selectbox("Input Langauge: ",options)
text = st.text_input("Text Input: ")
if st.button("Submit"):
llm = ChatOpenAI(model = "gpt-3.5-turbo",temperature = 0)
prompt = ChatPromptTemplate.from_messages([("system","you are an expert summarizer for {lang} text."),
("human","{text}")])
chain = prompt|llm
re = chain.invoke({"lang":input_langauge, "text":text})
st.write("Response: ")
st.write(re.content) |