Spaces:
Sleeping
Sleeping
Commit
·
e7c42c9
1
Parent(s):
71fab3d
Upload app.py
Browse files
app.py
CHANGED
@@ -4,18 +4,18 @@
|
|
4 |
import streamlit as st
|
5 |
|
6 |
|
7 |
-
from langchain.llms import
|
8 |
|
9 |
#Function to return the response
|
10 |
def load_answer(question):
|
11 |
-
llm =
|
12 |
answer=llm(question)
|
13 |
return answer
|
14 |
|
15 |
|
16 |
#App UI starts here
|
17 |
-
st.set_page_config(page_title="
|
18 |
-
st.header("
|
19 |
|
20 |
#Gets the user input
|
21 |
def get_text():
|
|
|
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():
|