Spaces:
Runtime error
Runtime error
Akash1267a
commited on
Commit
•
f51b9f1
1
Parent(s):
63e57b1
Upload 3 files
Browse files- app.py +37 -0
- env-sample.txt +1 -0
- requirements.txt +3 -0
app.py
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#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.
|
2 |
+
#Once you have Streamlit installed, you can import it into your Python script using the import statement,
|
3 |
+
|
4 |
+
import streamlit as st
|
5 |
+
|
6 |
+
|
7 |
+
from langchain.llms import OpenAI
|
8 |
+
|
9 |
+
#Function to return the response
|
10 |
+
def load_answer(question):
|
11 |
+
llm = OpenAI(model_name="text-davinci-003",temperature=0)
|
12 |
+
answer=llm(question)
|
13 |
+
return answer
|
14 |
+
|
15 |
+
|
16 |
+
#App UI starts here
|
17 |
+
st.set_page_config(page_title="LangChain Demo", page_icon=":robot:")
|
18 |
+
st.header("LangChain Demo")
|
19 |
+
|
20 |
+
#Gets the user input
|
21 |
+
def get_text():
|
22 |
+
input_text = st.text_input("You: ", key="input")
|
23 |
+
return input_text
|
24 |
+
|
25 |
+
|
26 |
+
user_input=get_text()
|
27 |
+
response = load_answer(user_input)
|
28 |
+
|
29 |
+
submit = st.button('Generate')
|
30 |
+
|
31 |
+
#If generate button is clicked
|
32 |
+
if submit:
|
33 |
+
|
34 |
+
st.subheader("Answer:")
|
35 |
+
|
36 |
+
st.write(response)
|
37 |
+
|
env-sample.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
OPENAI_API_KEY="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"
|
requirements.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
langchain
|
2 |
+
Openai
|
3 |
+
Streamlit
|