avinashmhto commited on
Commit
e7c42c9
·
1 Parent(s): 71fab3d

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -4,18 +4,18 @@
4
  import streamlit as st
5
 
6
 
7
- from langchain.llms import HuggingFaceHub
8
 
9
  #Function to return the response
10
  def load_answer(question):
11
- llm = HuggingFaceHub(repo_id="google/flan-t5-base")
12
  answer=llm(question)
13
  return answer
14
 
15
 
16
  #App UI starts here
17
- st.set_page_config(page_title="GloriaGPT", page_icon=":robot:")
18
- st.header("GloriaGPT")
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():