it4xperts commited on
Commit
6423da5
·
1 Parent(s): 0394367

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +33 -0
app.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #Q&A chatbot
2
+ from langchain.llms import OpenAI
3
+ from dotenv import load_dotenv
4
+
5
+ load_dotenv() # take environment variables from .env.
6
+
7
+ import streamlit as st
8
+ import os
9
+
10
+ ##Function to load OpenAI model and get response
11
+
12
+ def get_openai_response(question):
13
+ llm=OpenAI(openai_api_key=os.egetenv("OPEN_API_KEY"),model_name="text-davinci-003",temperature=.6)
14
+ response=llm(question)
15
+ return response
16
+
17
+
18
+ #initialize our streamlit app
19
+
20
+ st.set_page_config(page_title="Q&A Demo")
21
+
22
+ st.header("Langchain Application")
23
+
24
+ input=st.text_input("input:", key="input")
25
+ response=get_openai_response(input)
26
+
27
+ submit=st.button("Ask the Question")
28
+
29
+ ##if ask button is clicked
30
+
31
+ if submit:
32
+ st.subjeader("The Response is")
33
+ st.write(response)