lukestanley commited on
Commit
936cef3
·
1 Parent(s): 5707411

Add streaming chat using new LangChain API

Browse files
Files changed (1) hide show
  1. app.py +124 -0
app.py ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import List, Tuple, Dict, Generator
2
+ from langchain.llms import OpenAI
3
+ import gradio as gr
4
+
5
+
6
+ model_name = "gpt-3.5-turbo"
7
+ LLM = OpenAI(model_name=model_name, temperature=0.9)
8
+
9
+
10
+ def create_history_messages(history: List[Tuple[str, str]]) -> List[dict]:
11
+ history_messages = [{"role": "user", "content": m[0]} for m in history]
12
+ history_messages.extend([{"role": "assistant", "content": m[1]} for m in history])
13
+ return history_messages
14
+
15
+
16
+ def create_formatted_history(history_messages: List[dict]) -> List[Tuple[str, str]]:
17
+ formatted_history = []
18
+ user_messages = []
19
+ assistant_messages = []
20
+
21
+ for message in history_messages:
22
+ if message["role"] == "user":
23
+ user_messages.append(message["content"])
24
+ elif message["role"] == "assistant":
25
+ assistant_messages.append(message["content"])
26
+
27
+ if user_messages and assistant_messages:
28
+ formatted_history.append(
29
+ ("".join(user_messages), "".join(assistant_messages))
30
+ )
31
+ user_messages = []
32
+ assistant_messages = []
33
+
34
+ # append any remaining messages
35
+ if user_messages:
36
+ formatted_history.append(("".join(user_messages), None))
37
+ elif assistant_messages:
38
+ formatted_history.append((None, "".join(assistant_messages)))
39
+
40
+ return formatted_history
41
+
42
+
43
+ history_messages = [{"role": "system", "content": "A helpful assistant."}]
44
+
45
+
46
+ def chat(
47
+ message: str, history=[], client=LLM.client
48
+ ) -> Generator[Tuple[List[Tuple[str, str]], List[Tuple[str, str]]], None, None]:
49
+ global history_messages
50
+ history_messages.append({"role": "user", "content": message})
51
+
52
+ # We have no content for the assistant's response yet but we will update this:
53
+ history_messages.append({"role": "assistant", "content": ""})
54
+
55
+ response_message = ""
56
+
57
+ chat_generator = client.create(
58
+ messages=history_messages, stream=True, model=model_name
59
+ )
60
+
61
+ for chunk in chat_generator:
62
+ if "choices" in chunk:
63
+ for choice in chunk["choices"]:
64
+ if "delta" in choice and "content" in choice["delta"]:
65
+ new_token = choice["delta"]["content"]
66
+ # Add the latest token:
67
+ response_message += new_token
68
+ # Update the assistant's response in our model:
69
+ history_messages[-1]["content"] = response_message
70
+
71
+ if "finish_reason" in choice and choice["finish_reason"] == "stop":
72
+ break
73
+ formatted_history = create_formatted_history(history_messages)
74
+ yield formatted_history, formatted_history
75
+
76
+
77
+ # Define the settings for the Gradio ChatBot interface
78
+ chatbot = gr.Chatbot(label="Chat").style(color_map=("yellow", "purple"))
79
+
80
+ # Define the main interface with input components for the API key, message, and state
81
+ iface = gr.Interface(
82
+ fn=chat,
83
+ inputs=[
84
+ gr.Textbox(placeholder="Hello! How are you? etc.", label="Message"),
85
+ "state",
86
+ ],
87
+ outputs=[chatbot, "state"],
88
+ allow_flagging="never", # Hide the "flag" button
89
+ )
90
+
91
+ # Launch the Gradio interface
92
+ iface.queue().launch()
93
+
94
+
95
+ # TODO: figure out how to chain with the Chat API. Or just wait for others to do it.,, The API is only a few days old, afterall.
96
+ history_messages = [
97
+ {
98
+ "role": "system",
99
+ "content": "A helpful assistant that performs web searches.\nA helpful assistant that performs web searches.\nAssistant can say these verbs:\n\n- `Thought: I need to search for 'search term'`\n\n- `Thought: I need to read the URL: 'URL'`\n\n- `Thought: I have the information I need.`\n\n- `Say: 'message'`\nThe date is 3rd March 2023.",
100
+ },
101
+ {"role": "user", "content": "Who is the President of the USA?"},
102
+ {
103
+ "role": "assistant",
104
+ "content": "Thought: I need to search for the latest infomation.",
105
+ },
106
+ {"role": "assistant", "content": "search('USA president Wikipedia')"},
107
+ {
108
+ "role": "system",
109
+ "content": "Search results for 'USA president Wikipedia'.\n\nhttps://en.wikipedia.org/wiki/President_of_the_United_States\nPresident of the United States - Wikipedia\nThe president of the United States ( POTUS) [A] is the head of state and head of government of the United States of America. The president directs the executive branch of the federal government and is the commander-in-chief of the United States Armed Forces . The power of the presidency has grown substantially [11] since the first president ...",
110
+ },
111
+ {
112
+ "role": "assistant",
113
+ "content": "load_url_text('https://en.wikipedia.org/wiki/President_of_the_United_States')",
114
+ },
115
+ {
116
+ "role": "system",
117
+ "content": "President of the United States\nPresident of the\nUnited States of America\nSeal of the President of the United States.svg\n\nPresidential seal\nFlag of the President of the United States.svg\n\nPresidential flag\n\nJoe Biden presidential portrait (cropped).jpg\n\nIncumbent\nJoe Biden\nsince January 20, 2021\n\n Executive branch of the U.S. government\n Executive Office of the President\n\nStyle\t\n\n",
118
+ },
119
+ {"role": "assistant", "content": "Thought: I have the information I need."},
120
+ {
121
+ "role": "assistant",
122
+ "content": "Say: The current President of the USA is Joe Biden.",
123
+ },
124
+ ]