ricklon commited on
Commit
c86f798
1 Parent(s): 70010a1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -5
app.py CHANGED
@@ -1,9 +1,19 @@
1
- import random
 
 
2
  import gradio as gr
3
 
4
- def random_response(message, history):
5
- return random.choice(["Yes", "No"])
6
 
7
- demo = gr.ChatInterface(random_response)
8
 
9
- demo.launch()
 
 
 
 
 
 
 
 
 
 
1
+ from langchain.chat_models import ChatOpenAI
2
+ from langchain.schema import AIMessage, HumanMessage
3
+ import openai
4
  import gradio as gr
5
 
6
+ os.envrion["OPENAI_API_KEY"] = "sk-..." # Replace with your key
 
7
 
8
+ llm = ChatOpenAI(temperature=1.0, model='gpt-3.5-turbo-0613')
9
 
10
+ def predict(message, history):
11
+ history_langchain_format = []
12
+ for human, ai in history:
13
+ history_langchain_format.append(HumanMessage(content=human))
14
+ history_langchain_format.append(AIMessage(content=ai))
15
+ history_langchain_format.append(HumanMessage(content=message))
16
+ gpt_response = llm(history_langchain_format)
17
+ return gpt_response.content
18
+
19
+ gr.ChatInterface(predict).launch()