-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.py
599 lines (539 loc) · 23.4 KB
/
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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
import json
from flask import Flask, request, jsonify, Response
from init import init
from vaultAPI.retrival_test import retrive_chunks, ask_question
from chromadb_scripts.chroma import query_chroma
from chromadb_scripts.query_tools import expand_query_ollama
from oAI.openai_utils import convert_chunk_to_api, createChunk, send_chat_message, create_chat_message_chunk
from trieve.TrieveTools import search_chunks
app = Flask(__name__)
default_dir = 'mini-arxiv-pdfs' # Default directory to index
client = init() # set the environment variables
@app.route('/v1/proto/chat/completions', methods=['POST'])
def prototyping_chat_completions():
data = request.get_json()
print("========= DATA: =============")
print(data)
# Extract the parameters from the request
model = data.get('model', 'gpt-3.5-turbo-instruct')
prompt = next((message['content'] for message in reversed(data['messages']) if message['role'] == 'user'), '')
temperature = data.get('temperature', 0.1)
max_tokens = data.get('max_tokens', 256)
top_p = data.get('top_p', 1)
frequency_penalty = data.get('frequency_penalty', 0)
presence_penalty = data.get('presence_penalty', 0)
stream = data.get('stream', False)
if prompt.startswith('/'):
command = prompt[1:].split(' ')[0]
if command == 'help':
return jsonify(send_chat_message("""
Available commands:\n/
help - Show this help message\n/
cd <directory> - Change the directory to be indexed
expand_query - Enable or disable llm based query expansion
"""))
elif command == 'cd':
directory = prompt[len(command)+2:]
# TODO: Implement logic to change the directory to be indexed
return jsonify(send_chat_message("TODO implement changing directory"))
else:
return jsonify(send_chat_message("unkown command use help for a list of commands"))
if stream == False:
return jsonify({
"id": "chatcmpl-123",
"object": "chat.completion",
"created": 1677652288,
"model": "gpt-3.5-turbo-0125",
"system_fingerprint": "fp_44709d6fcb",
"choices": [{
"index": 0,
"message": {
"role": "assistant",
"content": "\n\nHello there, how may I assist you today?",
},
"logprobs": "null",
"finish_reason": "stop"
}],
"usage": {
"prompt_tokens": 9,
"completion_tokens": 12,
"total_tokens": 21
}
})
print("========= RAG CONTEXT: =============")
chroma_response = query_chroma(prompt, 'arxiv-pdfs')
print("============= Chroma responded =============")
print(chroma_response)
print("========= Request: =============")
if chroma_response is None:
print("Chroma returned None")
chroma_response = ""
completion = client.chat.completions.create(
model='anthropic/claude-3-sonnet',
messages=[
{"role": "user", "content": "CONTEXT: " + str(chroma_response) + " || QUESTION: " + prompt},
],
)
return jsonify(completion.model_dump_json())
print("========= Request: =============")
def generate():
yield f"data: {json.dumps(create_chat_message_chunk('Let me research this question for a second.'))}\n\n".encode('utf-8')
yield f"data: {json.dumps(create_chat_message_chunk('.'))}\n\n".encode('utf-8')
yield f"data: {json.dumps(create_chat_message_chunk('.'))}\n\n".encode('utf-8')
print("========= RAG CONTEXT: =============")
expanded_queries = expand_query_ollama(prompt)
chroma_response = []
for query in expanded_queries:
yield f'data: {json.dumps(create_chat_message_chunk("New query: " + query))}\n\n'.encode('utf-8')
chroma_response.extend(query_chroma(query, 'arxiv-pdfs'))
# # chroma_response = query_chroma(prompt, 'arxiv-pdfs') # version without the query expander
# rag_response = search_chunks(query=prompt, limit=32)
print("============= RAG responded =============")
print(chroma_response)
print("========= Response STATS: =============")
print(f"Number of chunks: {len(chroma_response['score_chunks'][0])}")
if chroma_response is None:
print("Chroma returned None")
chroma_response = ""
for chunk in client.chat.completions.create(
model='anthropic/claude-3-sonnet',
messages=[
{"role": "user", "content": "CONTEXT: " + str(chroma_response) + " || QUESTION: " + prompt},
],
stream=True
):
yield f"data: {json.dumps(convert_chunk_to_api(chunk))}\n\n".encode('utf-8')
return Response(generate(), mimetype='text/event-stream')
@app.route('/v1/chroma/chat/completions', methods=['POST'])
def chroma_chat_completions():
data = request.get_json()
print("========= DATA: =============")
print(data)
# Extract the parameters from the request
model = data.get('model', 'gpt-3.5-turbo-instruct')
prompt = next((message['content'] for message in reversed(data['messages']) if message['role'] == 'user'), '')
temperature = data.get('temperature', 0.1)
max_tokens = data.get('max_tokens', 256)
top_p = data.get('top_p', 1)
frequency_penalty = data.get('frequency_penalty', 0)
presence_penalty = data.get('presence_penalty', 0)
stream = data.get('stream', False)
if prompt.startswith('/'):
command = prompt[1:].split(' ')[0]
if command == 'help':
return jsonify(send_chat_message("""
Available commands:\n/
help - Show this help message\n/
cd <directory> - Change the directory to be indexed
expand_query - Enable or disable llm based query expansion
"""))
elif command == 'cd':
directory = prompt[len(command)+2:]
# TODO: Implement logic to change the directory to be indexed
return jsonify(send_chat_message("TODO implement changing directory"))
else:
return jsonify(send_chat_message("unkown command use help for a list of commands"))
if stream == False:
return jsonify({
"id": "chatcmpl-123",
"object": "chat.completion",
"created": 1677652288,
"model": "gpt-3.5-turbo-0125",
"system_fingerprint": "fp_44709d6fcb",
"choices": [{
"index": 0,
"message": {
"role": "assistant",
"content": "\n\nHello there, how may I assist you today?",
},
"logprobs": "null",
"finish_reason": "stop"
}],
"usage": {
"prompt_tokens": 9,
"completion_tokens": 12,
"total_tokens": 21
}
})
print("========= RAG CONTEXT: =============")
chroma_response = query_chroma(prompt, 'arxiv-pdfs')
print("============= Chroma responded =============")
print(chroma_response)
print("========= Request: =============")
if chroma_response is None:
print("Chroma returned None")
chroma_response = ""
completion = client.chat.completions.create(
model='anthropic/claude-3-sonnet',
messages=[
{"role": "user", "content": "CONTEXT: " + str(chroma_response) + " || QUESTION: " + prompt},
],
)
return jsonify(completion.model_dump_json())
print("========= Request: =============")
def generate():
yield f"data: {json.dumps(create_chat_message_chunk('Let me research this question for a second.'))}\n\n".encode('utf-8')
yield f"data: {json.dumps(create_chat_message_chunk('.'))}\n\n".encode('utf-8')
yield f"data: {json.dumps(create_chat_message_chunk('.'))}\n\n".encode('utf-8')
print("========= RAG CONTEXT: =============")
expanded_queries = expand_query_ollama(prompt)
chroma_response = []
for query in expanded_queries:
yield f'data: {json.dumps(create_chat_message_chunk("New query: " + query))}\n\n'.encode('utf-8')
chroma_response.extend(query_chroma(query, 'speedQueen'))
# chroma_response = query_chroma(prompt, 'arxiv-pdfs') # version without the query expander
print("============= RAG responded =============")
print(rag_response)
print("========= Response STATS: =============")
print(f"Number of chunks: {len(rag_response['score_chunks'][0])}")
if rag_response is None:
print("Chroma returned None")
rag_response = ""
for chunk in client.chat.completions.create(
model='anthropic/claude-3-sonnet',
messages=[
{"role": "user", "content": "CONTEXT: " + str(rag_response) + " || QUESTION: " + prompt},
],
stream=True
):
yield f"data: {json.dumps(convert_chunk_to_api(chunk))}\n\n".encode('utf-8')
return Response(generate(), mimetype='text/event-stream')
@app.route('/v1/trieve/chat/completions', methods=['POST'])
def trieve_chat_completions():
data = request.get_json()
print("========= DATA: =============")
print(data)
# Extract the parameters from the request
model = data.get('model', 'gpt-3.5-turbo-instruct')
prompt = next((message['content'] for message in reversed(data['messages']) if message['role'] == 'user'), '')
temperature = data.get('temperature', 0.1)
max_tokens = data.get('max_tokens', 256)
top_p = data.get('top_p', 1)
frequency_penalty = data.get('frequency_penalty', 0)
presence_penalty = data.get('presence_penalty', 0)
stream = data.get('stream', False)
if prompt.startswith('/'):
command = prompt[1:].split(' ')[0]
if command == 'help':
return jsonify(send_chat_message("""
Available commands:\n/
help - Show this help message\n/
cd <directory> - Change the directory to be indexed
expand_query - Enable or disable llm based query expansion
"""))
elif command == 'cd':
directory = prompt[len(command)+2:]
# TODO: Implement logic to change the directory to be indexed
return jsonify(send_chat_message("TODO implement changing directory"))
else:
return jsonify(send_chat_message("unkown command use help for a list of commands"))
if stream == False:
return jsonify({
"id": "chatcmpl-123",
"object": "chat.completion",
"created": 1677652288,
"model": "gpt-3.5-turbo-0125",
"system_fingerprint": "fp_44709d6fcb",
"choices": [{
"index": 0,
"message": {
"role": "assistant",
"content": "\n\nHello there, how may I assist you today?",
},
"logprobs": "null",
"finish_reason": "stop"
}],
"usage": {
"prompt_tokens": 9,
"completion_tokens": 12,
"total_tokens": 21
}
})
print("========= RAG CONTEXT: =============")
chroma_response = query_chroma(prompt, 'arxiv-pdfs')
print("============= Chroma responded =============")
print(chroma_response)
print("========= Request: =============")
if chroma_response is None:
print("Chroma returned None")
chroma_response = ""
completion = client.chat.completions.create(
model='anthropic/claude-3-sonnet',
messages=[
{"role": "user", "content": "CONTEXT: " + str(chroma_response) + " || QUESTION: " + prompt},
],
)
return jsonify(completion.model_dump_json())
print("========= Request: =============")
def generate():
yield f"data: {json.dumps(create_chat_message_chunk('Let me research this question for a second.'))}\n\n".encode('utf-8')
yield f"data: {json.dumps(create_chat_message_chunk('.'))}\n\n".encode('utf-8')
yield f"data: {json.dumps(create_chat_message_chunk('.'))}\n\n".encode('utf-8')
print("========= RAG CONTEXT: =============")
# expanded_queries = expand_query_ollama(prompt)
# chroma_response = []
# for query in expanded_queries:
# yield f'data: {json.dumps(create_chat_message_chunk("New query: " + query))}\n\n'.encode('utf-8')
# chroma_response.extend(query_chroma(query, 'arxiv-pdfs'))
# # chroma_response = query_chroma(prompt, 'arxiv-pdfs') # version without the query expander
rag_response = search_chunks(query=prompt, limit=32)
print("============= RAG responded =============")
print(rag_response)
print("========= Response STATS: =============")
print(f"Number of chunks: {len(rag_response['score_chunks'][0])}")
if rag_response is None:
print("Chroma returned None")
rag_response = ""
for chunk in client.chat.completions.create(
model='anthropic/claude-3-sonnet',
messages=[
{"role": "user", "content": "CONTEXT: " + str(rag_response) + " || QUESTION: " + prompt},
],
stream=True
):
yield f"data: {json.dumps(convert_chunk_to_api(chunk))}\n\n".encode('utf-8')
return Response(generate(), mimetype='text/event-stream')
@app.route('/v1/vault/chat/completions', methods=['POST'])
def vaultChat():
data = request.get_json()
print("========= DATA: =============")
print(data)
# Extract the parameters from the request
model = data.get('model', 'gpt-3.5-turbo-instruct')
prompt = next((message['content'] for message in reversed(data['messages']) if message['role'] == 'user'), '')
temperature = data.get('temperature', 0.1)
max_tokens = data.get('max_tokens', 256)
top_p = data.get('top_p', 1)
frequency_penalty = data.get('frequency_penalty', 0)
presence_penalty = data.get('presence_penalty', 0)
stream = data.get('stream', False)
if prompt.startswith('/'):
command = prompt[1:].split(' ')[0]
if command == 'help':
return jsonify(send_chat_message("""
Available commands:\n/
help - Show this help message\n/
cd <directory> - Change the directory to be indexed
expand_query - Enable or disable llm based query expansion
"""))
elif command == 'cd':
directory = prompt[len(command)+2:]
# TODO: Implement logic to change the directory to be indexed
return jsonify(send_chat_message("TODO implement changing directory"))
else:
return jsonify(send_chat_message("unkown command use help for a list of commands"))
if stream == False:
return jsonify({
"id": "chatcmpl-123",
"object": "chat.completion",
"created": 1677652288,
"model": "gpt-3.5-turbo-0125",
"system_fingerprint": "fp_44709d6fcb",
"choices": [{
"index": 0,
"message": {
"role": "assistant",
"content": "\n\nHello there, how may I assist you today?",
},
"logprobs": "null",
"finish_reason": "stop"
}],
"usage": {
"prompt_tokens": 9,
"completion_tokens": 12,
"total_tokens": 21
}
})
print("========= RAG CONTEXT: =============")
chroma_response = query_chroma(prompt, 'arxiv-pdfs')
print("============= Chroma responded =============")
print(chroma_response)
print("========= Request: =============")
if chroma_response is None:
print("Chroma returned None")
chroma_response = ""
completion = client.chat.completions.create(
model='anthropic/claude-3-sonnet',
messages=[
{"role": "user", "content": "CONTEXT: " + str(chroma_response) + " || QUESTION: " + prompt},
],
)
return jsonify(completion.model_dump_json())
print("========= Request: =============")
def generate():
yield f"data: {json.dumps(create_chat_message_chunk('Let me research this question for a second.'))}\n\n".encode('utf-8')
yield f"data: {json.dumps(create_chat_message_chunk('.'))}\n\n".encode('utf-8')
yield f"data: {json.dumps(create_chat_message_chunk('.'))}\n\n".encode('utf-8')
print("========= RAG CONTEXT: =============")
# expanded_queries = expand_query_ollama(prompt)
# chroma_response = []
# for query in expanded_queries:
# yield f'data: {json.dumps(create_chat_message_chunk("New query: " + query))}\n\n'.encode('utf-8')
# chroma_response.extend(query_chroma(query, 'arxiv-pdfs'))
# # chroma_response = query_chroma(prompt, 'arxiv-pdfs') # version without the query expander
rag_response = retrive_chunks(query=prompt)
print("============= RAG responded =============")
print(rag_response)
print("========= Response STATS: =============")
print(f"Number of chunks: {len(rag_response['contexts'][0])}")
if rag_response is None:
print("rag returned None")
rag_response = ""
for chunk in client.chat.completions.create(
model='anthropic/claude-3-sonnet',
messages=[
{"role": "user", "content": "CONTEXT: " + str(rag_response) + " || QUESTION: " + prompt},
],
stream=True
):
yield f"data: {json.dumps(convert_chunk_to_api(chunk))}\n\n".encode('utf-8')
return Response(generate(), mimetype='text/event-stream')
@app.route('/v1/vault-trieve/chat/completions', methods=['POST'])
def vault_Trieve():
data = request.get_json()
print("========= DATA: =============")
print(data)
# Extract the parameters from the request
model = data.get('model', 'gpt-3.5-turbo-instruct')
prompt = next((message['content'] for message in reversed(data['messages']) if message['role'] == 'user'), '')
temperature = data.get('temperature', 0.1)
max_tokens = data.get('max_tokens', 256)
top_p = data.get('top_p', 1)
frequency_penalty = data.get('frequency_penalty', 0)
presence_penalty = data.get('presence_penalty', 0)
stream = data.get('stream', False)
if prompt.startswith('/'):
command = prompt[1:].split(' ')[0]
if command == 'help':
return jsonify(send_chat_message("""
Available commands:\n/
help - Show this help message\n/
cd <directory> - Change the directory to be indexed
expand_query - Enable or disable llm based query expansion
"""))
elif command == 'cd':
directory = prompt[len(command)+2:]
# TODO: Implement logic to change the directory to be indexed
return jsonify(send_chat_message("TODO implement changing directory"))
else:
return jsonify(send_chat_message("unkown command use help for a list of commands"))
if stream == False:
return jsonify({
"id": "chatcmpl-123",
"object": "chat.completion",
"created": 1677652288,
"model": "gpt-3.5-turbo-0125",
"system_fingerprint": "fp_44709d6fcb",
"choices": [{
"index": 0,
"message": {
"role": "assistant",
"content": "\n\nHello there, how may I assist you today?",
},
"logprobs": "null",
"finish_reason": "stop"
}],
"usage": {
"prompt_tokens": 9,
"completion_tokens": 12,
"total_tokens": 21
}
})
print("========= RAG CONTEXT: =============")
chroma_response = query_chroma(prompt, 'arxiv-pdfs')
print("============= Chroma responded =============")
print(chroma_response)
print("========= Request: =============")
if chroma_response is None:
print("Chroma returned None")
chroma_response = ""
completion = client.chat.completions.create(
model='anthropic/claude-3-sonnet',
messages=[
{"role": "user", "content": "CONTEXT: " + str(chroma_response) + " || QUESTION: " + prompt},
],
)
return jsonify(completion.model_dump_json())
print("========= Request: =============")
def generate():
yield f"data: {json.dumps(create_chat_message_chunk('Let me research this question for a second.'))}\n\n".encode('utf-8')
yield f"data: {json.dumps(create_chat_message_chunk('.'))}\n\n".encode('utf-8')
yield f"data: {json.dumps(create_chat_message_chunk('.'))}\n\n".encode('utf-8')
print("========= RAG CONTEXT: =============")
# expanded_queries = expand_query_ollama(prompt)
# chroma_response = []
# for query in expanded_queries:
# yield f'data: {json.dumps(create_chat_message_chunk("New query: " + query))}\n\n'.encode('utf-8')
# chroma_response.extend(query_chroma(query, 'arxiv-pdfs'))
# # chroma_response = query_chroma(prompt, 'arxiv-pdfs') # version without the query expander
rag_responseA = retrive_chunks(query=prompt)
rag_responseB = search_chunks(query=prompt, limit=32)
print("============= RAG A responded =============")
print(rag_responseA)
print("============= RAG B responded =============")
print(rag_responseB)
print("========= Response STATS: =============")
# print(f"Number of chunks: {len(rag_response['contexts'][0])}")
if rag_responseA is None:
print("rag returned None")
rag_responseA = ""
if rag_responseB is None:
print("rag returned None")
rag_responseB = ""
for chunk in client.chat.completions.create(
model='anthropic/claude-3-sonnet',
messages=[
{"role": "user", "content": "Given context A and context B rate which is better at helping answer this question and why || QUESTION: " + prompt + "|| CONTEXT A: " + str(rag_responseA) + " || CONTEXT B: " + str(rag_responseB)},
],
stream=True
):
yield f"data: {json.dumps(convert_chunk_to_api(chunk))}\n\n".encode('utf-8')
return Response(generate(), mimetype='text/event-stream')
collections = {
'arxiv-pdfs': {
"chroma": True,
'index_path': 'Documents/arxiv-pdfs/',
},
'mini-arxiv': {
"chroma": True,
'index_path': 'Documents/mini-arxiv-pdfs/',
},
'speedQueen': {
"chroma": True,
'index_path': 'Documents/speedQueen/',
}
}
@app.route('/v1/models', methods=['GET'])
def models():
return jsonify({
"object": "list",
"data": [
{
"id": "gpt-3.5-turbo",
"object": "model",
"created": 1686935002,
"owned_by": "openai"
},
{
"id": "chroma-arxiv-pdfs",
"object": "model",
"created": 1686935002,
"owned_by": "nighttrek"
},
{
"id": "trieve-arxiv-pdfs",
"object": "model",
"created": 1686935002,
"owned_by": "nighttrek"
},
{
"id": "vault-arxiv-pdfs",
"object": "model",
"created": 1686935002,
"owned_by": "nighttrek"
},
],
"object": "list"
})
if __name__ == '__main__':
app.run(port=3592)