-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathweb_app.py
332 lines (308 loc) · 12.4 KB
/
web_app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
import os
import re
import asyncio
from quart import Quart, request, jsonify, send_file, send_from_directory
from quart_cors import cors
from hypercorn.config import Config
from hypercorn.asyncio import serve
from config import MAIN_SYSTEM_PROMPT
from app import run_conversation, enable_plugins
from utils.openai_model_tools import (
ask_chat_gpt_4_0314_synchronous,
ask_chat_gpt_4_0314_asynchronous,
ask_chat_gpt_4_32k_0314_synchronous,
ask_chat_gpt_4_32k_0314_asynchronous,
ask_chat_gpt_4_0613_synchronous,
ask_chat_gpt_4_0613_asynchronous,
ask_gpt_4_vision,
)
from utils.openai_dalle_tools import generate_an_image_with_dalle3
from utils.core_tools import get_current_date_time
app = Quart(__name__)
app = cors(app, allow_origin="*")
@app.route("/")
async def index():
return await send_file("templates/index.html")
@app.route("/static/<path:path>")
async def send_static(path):
return await send_from_directory("static", path)
def format_response_text(response_text):
response_text = response_text.replace("[View Image]", "<strong>View Image</strong>")
# Match any character that's not a whitespace until the next space or end of line
url_pattern = r"(https://oaidalleapiprodscus/.blob/.core/.windows/.net/private/org-[^\s]+)"
response_text = re.sub(url_pattern, r'<a href="\1" target="_blank">View Image</a>', response_text)
lines = response_text.split("\n")
lines = [line.strip() for line in lines if line.strip()]
response_text = "<br>".join(lines)
return response_text
available_functions = {
"get_current_date_time": get_current_date_time,
"ask_chat_gpt_4_0314_synchronous": ask_chat_gpt_4_0314_synchronous,
"ask_chat_gpt_4_0314_asynchronous": ask_chat_gpt_4_0314_asynchronous,
"ask_chat_gpt_4_32k_0314_synchronous": ask_chat_gpt_4_32k_0314_synchronous,
"ask_chat_gpt_4_32k_0314_asynchronous": ask_chat_gpt_4_32k_0314_asynchronous,
"ask_chat_gpt_4_0613_synchronous": ask_chat_gpt_4_0613_synchronous,
"ask_chat_gpt_4_0613_asynchronous": ask_chat_gpt_4_0613_asynchronous,
"generate_an_image_with_dalle3": generate_an_image_with_dalle3,
"ask_gpt_4_vision": ask_gpt_4_vision,
}
tools = [
{
"type": "function",
"function": {
"name": "get_current_date_time",
"description": "Get the current date and time from the local machine.",
},
},
{
"type": "function",
"function": {
"name": "ask_chat_gpt_4_0314_synchronous",
"description": "Ask a more experienced colleague for assistance.",
"parameters": {
"type": "object",
"properties": {
"temperature": {
"type": "integer",
"description": "The temperature associated with request: 0 for factual, 2 for creative.",
},
"question": {
"type": "string",
"description": "What are you, the ai assistant, requesting to be done with the text you are providing?",
},
"text": {
"type": "string",
"description": "The text to be analyzed",
},
},
"required": ["question", "text"],
},
},
},
{
"type": "function",
"function": {
"name": "ask_chat_gpt_4_0314_asynchronous",
"description": "Ask a more experienced colleague for assistance.",
"parameters": {
"type": "object",
"properties": {
"temperature": {
"type": "integer",
"description": "The temperature associated with request: 0 for factual, 2 for creative.",
},
"question": {
"type": "string",
"description": "What are you, the ai assistant, requesting to be done with the text you are providing?",
},
"text": {
"type": "string",
"description": "The text to be analyzed",
},
},
"required": ["question", "text"],
},
},
},
{
"type": "function",
"function": {
"name": "ask_chat_gpt_4_32k_0314_synchronous",
"description": "Ask a more experienced colleague for assistance.",
"parameters": {
"type": "object",
"properties": {
"temperature": {
"type": "integer",
"description": "The temperature associated with request: 0 for factual, 2 for creative.",
},
"question": {
"type": "string",
"description": "What are you, the ai assistant, requesting to be done with the text you are providing?",
},
"text": {
"type": "string",
"description": "The text to be analyzed",
},
},
"required": ["question", "text"],
},
},
},
{
"type": "function",
"function": {
"name": "ask_chat_gpt_4_32k_0314_asynchronous",
"description": "Ask a more experienced colleague for assistance.",
"parameters": {
"type": "object",
"properties": {
"temperature": {
"type": "integer",
"description": "The temperature associated with request: 0 for factual, 2 for creative.",
},
"question": {
"type": "string",
"description": "What are you, the ai assistant, requesting to be done with the text you are providing?",
},
"text": {
"type": "string",
"description": "The text to be analyzed",
},
},
"required": ["question", "text"],
},
},
},
{
"type": "function",
"function": {
"name": "ask_chat_gpt_4_0613_synchronous",
"description": "Ask a more experienced colleague for assistance.",
"parameters": {
"type": "object",
"properties": {
"temperature": {
"type": "integer",
"description": "The temperature associated with request: 0 for factual, 2 for creative.",
},
"question": {
"type": "string",
"description": "What are you, the ai assistant, requesting to be done with the text you are providing?",
},
"text": {
"type": "string",
"description": "The text to be analyzed",
},
"tools": {
"type": "string",
"description": "The tools to use for the request.",
},
"tool_choice": {
"type": "string",
"description": "The tool choice to use for the request.",
},
},
"required": ["question", "text"],
},
},
},
{
"type": "function",
"function": {
"name": "ask_chat_gpt_4_0613_asynchronous",
"description": "Ask a more experienced colleague for assistance.",
"parameters": {
"type": "object",
"properties": {
"temperature": {
"type": "integer",
"description": "The temperature associated with request: 0 for factual, 2 for creative.",
},
"question": {
"type": "string",
"description": "What are you, the ai assistant, requesting to be done with the text you are providing?",
},
"text": {
"type": "string",
"description": "The text to be analyzed",
},
"tools": {
"type": "string",
"description": "The tools to use for the request.",
},
"tool_choice": {
"type": "string",
"description": "The tool choice to use for the request.",
},
},
"required": ["question", "text"],
},
},
},
{
"type": "function",
"function": {
"name": "ask_gpt_4_vision",
"description": "Ask GPT-4 Vision a question about a specific image file located in the 'uploads' folder.",
"parameters": {
"type": "object",
"properties": {
"image_name": {
"type": "string",
"description": "The name of the image file in the 'uploads' folder.",
},
},
"required": ["image_name"],
},
},
},
{
"type": "function",
"function": {
"name": "generate_an_image_with_dalle3",
"description": "Generate an image with DALL-E 3.",
"parameters": {
"type": "object",
"properties": {
"prompt": {
"type": "string",
"description": "The prompt to use for image generation.",
},
"n": {
"type": "integer",
"description": "The number of images to generate.",
},
"size": {
"type": "string",
"description": "The image size to generate.",
},
"quality": {
"type": "string",
"description": "The image quality to generate.",
},
"style": {
"type": "string",
"description": "The image style to generate. natural or vivid",
},
"response_format": {
"type": "string",
"description": "The response format to use for image generation b64_json or url.",
},
},
"required": ["prompt"],
},
},
},
]
@app.route("/chat", methods=["POST"])
async def chat():
data = await request.json
user_input = data.get("user_input")
if not user_input:
return jsonify({"error": "User input is required"}), 400
memory = data.get("memory", [])
mem_size = data.get("mem_size", 200)
base_functions, plugin_tools = await enable_plugins({}, [])
all_functions = {**available_functions, **base_functions}
final_response, memory = await run_conversation(
messages=[
{"role": "system", "content": f"{MAIN_SYSTEM_PROMPT}"},
{"role": "assistant", "content": "Understood. As we continue, feel free to direct any requests or tasks you'd like assistance with. Whether it's querying information, managing schedules, processing data, or utilizing any of the tools and functionalities I have available."},
{"role": "user", "content": f"{user_input}"},
],
tools=tools + plugin_tools,
available_functions=all_functions,
original_user_input=user_input,
mem_size=mem_size,
memory=memory,
)
response_message = final_response.choices[0].message
response_text = response_message.content if response_message.content is not None else "I'm not sure how to help with that."
response_text = format_response_text(response_text)
return jsonify({"response": response_text, "memory": memory})
if __name__ == "__main__":
config = Config()
port = int(os.environ.get("PORT", 8080))
config.bind = [f"0.0.0.0:{port}"]
asyncio.run(serve(app, config))