b8219 commited on
Commit
eb0e59b
·
verified ·
1 Parent(s): bcbe936

Upload 2 files

Browse files
Files changed (2) hide show
  1. app.py +48 -0
  2. requirement.txt +5 -0
app.py ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Question Answers Chatbot
2
+
3
+ from langchain.llms import OpenAI
4
+
5
+ #from dotenv import load_dotenv
6
+
7
+ #load_dotenv() ## Take environment variables from .env file
8
+ import os
9
+ import streamlit as st
10
+
11
+ ## Function to Load OpenAi model and get responses +================>
12
+
13
+
14
+ from langchain.llms import OpenAI
15
+ import os
16
+
17
+
18
+
19
+ def get_openai_response(question):
20
+ llm=OpenAI(model_name="gpt-3.5-turbo-instruct",temperature=0.5)
21
+ response=llm(question)
22
+ return response
23
+
24
+ ##initialize our streamlit app
25
+
26
+ st.set_page_config(page_title="Q&A Demo")
27
+
28
+ st.header("Langchain Application")
29
+
30
+ input=st.text_input("Input: ",key="input")
31
+ response=get_openai_response(input)
32
+
33
+
34
+ submit=st.button("Here is Your Answer")
35
+
36
+ ## If ask button is clicked
37
+
38
+ if submit:
39
+ st.subheader("The Response is")
40
+ st.write(response)
41
+
42
+
43
+
44
+ ##initialize our streamlit app
45
+
46
+
47
+
48
+ ## If ask button is clicked
requirement.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ langchain
2
+ openai
3
+ huggingface_hub
4
+
5
+ langchain-community