developer3000 commited on
Commit
9adba36
·
1 Parent(s): b9f5d20

Add application file

Browse files
Files changed (1) hide show
  1. app.py +17 -9
app.py CHANGED
@@ -1,11 +1,19 @@
1
- import gradio
 
 
 
2
 
3
- def my_inference_function(name):
4
- return "Hello " + name + "!"
5
 
6
- gradio_interface = gradio.Interface(
7
- fn = my_inference_function,
8
- inputs = "text",
9
- outputs = "text"
10
- )
11
- gradio_interface.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.environ["OPENAI_API_KEY"] = "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" # 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()