-
Notifications
You must be signed in to change notification settings - Fork 0
/
qa_blog.py
executable file
·550 lines (440 loc) · 16.4 KB
/
qa_blog.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
#!python3
import asyncio
from langchain.callbacks.tracers.langchain import LangChainTracer
import requests
from functools import lru_cache
import pathlib
from rich.console import Console
from icecream import ic
import typer
import os
from rich import print
from typing import List, Optional
from langchain.docstore.document import Document
from langchain_openai import OpenAIEmbeddings
from langchain_chroma.vectorstores import Chroma
import langchain_helper
from langchain import (
text_splitter,
) # import CharacterTextSplitter, RecursiveCharacterTextSplitter, Markdown
from typing_extensions import Annotated
from fastapi import FastAPI
from openai_wrapper import setup_gpt, num_tokens_from_string
from langchain.prompts.chat import (
ChatPromptTemplate,
)
from langchain.schema.output_parser import StrOutputParser
import json
import discord
from discord_helper import draw_progress_bar, get_bot_token, send
import discord_helper
from pydantic import BaseModel
gpt_model = setup_gpt()
server = FastAPI()
app = typer.Typer(no_args_is_help=True)
console = Console()
bot = discord.Bot()
chroma_db_dir = "blog.chroma.db"
embeddings = OpenAIEmbeddings(model="text-embedding-3-large")
g_tracer: Optional[LangChainTracer] = None
# embeddings = OpenAIEmbeddings()
class DebugInfo(BaseModel):
documents: List[Document] = []
question: str = ""
count_tokens: int = 0
model: str = ""
g_debug_info = DebugInfo()
chunk_size_5k_tokens = (
4 * 1000 * 5
) # ~ 5K tokens, given we'll be doing 5-10 facts, seems reasonable
def chunk_documents_recursive(documents, chunk_size=chunk_size_5k_tokens):
recursive_splitter = text_splitter.RecursiveCharacterTextSplitter(
chunk_size=chunk_size, chunk_overlap=chunk_size // 4
)
splitter = recursive_splitter
for document in documents:
chunks = splitter.split_text(document.page_content)
for chunk in chunks:
d = Document(
page_content=chunk,
metadata={
"chunk_method": "recursive_char",
"source": document.metadata["source"],
"is_entire_document": len(chunks) == 1,
},
)
ic(d.metadata)
yield d
def chunk_documents_as_md(documents, chunk_size=chunk_size_5k_tokens):
# TODO: Use UnstructuredMarkdownParser
# Interesting trade off here, if we make chunks bigger we can have more context
# If we make chunk smaller we can inject more chunks
headers_to_split_on = [
("#", "H1"),
("##", "H2"),
("###", "H3"),
("####", "H4"),
]
markdown_splitter = text_splitter.MarkdownHeaderTextSplitter(
headers_to_split_on=headers_to_split_on, strip_headers=False
)
splitter = markdown_splitter
for document in documents:
base_metadata = {
"source": document.metadata["source"],
"chunk_method": "md_simple",
"is_entire_document": False,
}
for chunk in splitter.split_text(document.page_content):
yield Document(
page_content=chunk.page_content,
metadata={**chunk.metadata, **base_metadata},
)
def chunk_documents_as_md_large(documents, chunk_size=chunk_size_5k_tokens):
# TODO: Use UnstructuredMarkdownParser
# Interesting trade off here, if we make chunks bigger we can have more context
# If we make chunk smaller we can inject more chunks
headers_to_split_on = [
("#", "H1"),
("##", "H2"),
("###", "H3"),
("####", "H4"),
]
markdown_splitter = text_splitter.MarkdownHeaderTextSplitter(
headers_to_split_on=headers_to_split_on, strip_headers=False
)
splitter = markdown_splitter
for document in documents:
base_metadata = {
"source": document.metadata["source"],
"chunk_method": "md_merge",
}
candidate_chunk = Document(page_content="", metadata=base_metadata)
is_entire_document = True
for chunk in splitter.split_text(document.page_content):
candidate_big_enough = len(candidate_chunk.page_content) > chunk_size
if candidate_big_enough:
is_entire_document = False
candidate_chunk.metadata["is_entire_document"] = is_entire_document
yield candidate_chunk
candidate_chunk = Document(page_content="", metadata=base_metadata)
# grow the candate chunk with current chunk
candidate_chunk.page_content += chunk.page_content
# yield the last chunk, regardless of its size
candidate_chunk.metadata["is_entire_document"] = is_entire_document
yield candidate_chunk
def get_blog_content(path):
# set_trace()
repo_path = pathlib.Path(os.path.expanduser(path))
markdown_files = list(repo_path.glob("*/*.md"))
for markdown_file in markdown_files:
with open(markdown_file, "r") as f:
yield Document(
page_content=f.read(),
metadata={"source": str(markdown_file.relative_to(repo_path))},
)
def dedup_chunks(chunks):
# chunks is a list of documents created by multiple chunkers
# if we have multiple chunks from the same source and that contain the full document
# only keep the first one
unique_chunks = []
seen_full_size = set()
for chunk in chunks:
source = chunk.metadata["source"]
whole_doc = chunk.metadata["is_entire_document"]
if whole_doc and source in seen_full_size:
continue
if whole_doc:
seen_full_size.add(source)
unique_chunks.append(chunk)
return unique_chunks
@app.command()
def build():
docs = list(get_blog_content("~/blog"))
# It's OK, start by erasing the db
# db_path = pathlib.Path(chroma_db_dir)
# db_path.rmdir()
ic(len(docs))
chunks = list(chunk_documents_as_md(docs))
chunks += list(chunk_documents_as_md_large(docs))
chunks += list(chunk_documents_recursive(docs))
deduped_chunks = dedup_chunks(chunks)
ic(len(chunks), len(deduped_chunks))
# Build the index and persist it
# Weird, used to have a .save, now covered by persistant_directory
Chroma.from_documents(deduped_chunks, embeddings, persist_directory=chroma_db_dir)
@app.command()
def chunk_md(
path: Annotated[str, typer.Argument()] = "~/blog/_posts/2020-04-01-Igor-Eulogy.md",
):
from unstructured.partition.md import partition_md
elements = partition_md(filename=os.path.expanduser(path))
ic(elements)
def fixup_markdown_path(src):
# We built the file_path from source markdown
def fixup_markdown_path_to_url(src):
markdown_to_url = build_markdown_to_url_map()
for md_file_path, url in markdown_to_url.items():
# url starts with a /
url = url[1:]
md_link = f"[{url}](https://idvork.in/{url})"
src = src.replace(md_file_path, md_link)
return src
def fixup_ig66_path_to_url(src):
for i in range(100 * 52):
src = src.replace(
f"_ig66/{i}.md", f"[Family Journal {i}](https://idvork.in/ig66/{i})"
)
return src
return fixup_ig66_path_to_url(fixup_markdown_path_to_url(src))
ic(chroma_db_dir)
g_blog_content_db = Chroma(
persist_directory=chroma_db_dir, embedding_function=embeddings
)
g_all_documents = g_blog_content_db.get()
def has_whole_document(path):
all_documents = g_blog_content_db.get()
for m in all_documents["metadatas"]:
if m["source"] == path and m["is_entire_document"]:
return True
return False
def get_document(path) -> Document:
all_documents = g_blog_content_db.get()
for i, m in enumerate(all_documents["metadatas"]):
if m["source"] == path and m["is_entire_document"]:
return Document(page_content=g_all_documents["documents"][i], metadata=m)
raise Exception(f"{path} document found")
# cache this so it's memoized
@lru_cache
def build_markdown_to_url_map():
source_file_to_url = {}
# read the json file From Github, slightly stale, but good enough
backlinks_url = "https://raw.githubusercontent.com/idvorkin/idvorkin.github.io/master/back-links.json"
d = requests.get(backlinks_url).json()
url_infos = d["url_info"]
# "url_info": {
# "/40yo": {
# "markdown_path": "_d/40-yo-programmer.md",
# "doc_size": 14000
# },
# convert the url_infos into a source_file_to_url map
source_file_to_url = {v["markdown_path"]: k for k, v in url_infos.items()}
return source_file_to_url
def docs_to_prompt(docs):
ic(len(docs))
ret = []
for d in docs:
d.metadata["source"] = fixup_markdown_path(d.metadata["source"])
ret.append({"content": d.page_content, "metadata": d.metadata})
return json.dumps(ret)
# return "\n\n".join(doc.page_content for doc in docs)
@app.command()
def ask(
question: Annotated[
str, typer.Argument()
] = "What are the roles from Igor's Eulogy, answer in bullet form",
facts: Annotated[int, typer.Option()] = 5,
debug: bool = typer.Option(True),
):
response = asyncio.run(iask(question, facts, debug))
print(response)
async def iask(
question: str,
facts: int,
debug: bool = True,
):
if debug:
ic(facts)
# load chroma from DB
prompt = ChatPromptTemplate.from_template(
"""
You are an assistant for question-answering tasks.
Use the following pieces of retrieved context to answer the question.
The content is all from Igor's blog
If you don't know the answer, just say that you don't know. Keep the answer under 10 lines
# The User's Questions
{question}
# Context
{context}
# Instruction
* Your answer should include sources like those listed below. The source files are markdown so if the have a header make an HTML anchor link when you make the source link. E.g. if it's in idvork.in, with header # Foo , set it to http://idvork.in#foo
### Sources
* source file link - Your reasoning on why it's relevant (% relevance, e.g. 20%)
* [Igor's Eulogy - Importance of smiling](/eulogy#smiling) - Igor's eulogy talks about how he always smiled (90%)
"""
)
llm = langchain_helper.get_model(openai=True)
# We can improve our relevance by getting the md_simple_chunks, but that loses context
# Rebuild context by pulling in the largest chunk i can that contains the smaller chunk
global g_blog_content_db
docs_and_scores = await g_blog_content_db.asimilarity_search_with_relevance_scores(
question, k=4 * facts
)
for doc, score in docs_and_scores:
ic(doc.metadata, score)
candidate_facts = [d for d, _ in docs_and_scores]
facts_to_inject: List[Document] = []
# build a set of facts to inject
# if we got suggested partial files, try to find the full size version
# if we can inject full size version, include that.
# include upto fact docs
def facts_to_append_contains_whole_file(path):
for fact in facts_to_inject:
if fact.metadata["source"] == path and fact.metadata["is_entire_document"]:
return True
return False
# We can improve our relevance by getting the md_simple_chunks, but that loses context
# Rebuild context by pulling in the largest chunk i can that contains the smaller chunk
for fact in candidate_facts:
if len(facts_to_inject) >= facts:
break
fact_path = fact.metadata["source"]
# Already added
if facts_to_append_contains_whole_file(fact_path):
ic("Whole file already present", fact_path)
continue
# Whole document is available
if has_whole_document(fact_path):
ic("Adding whole file instead", fact.metadata)
facts_to_inject.append(get_document(fact_path))
continue
# All we have is the partial
facts_to_inject.append(fact)
good_docs = ["_posts/2020-04-01-Igor-Eulogy.md", "_d/operating-manual-2.md"]
facts_to_inject += [get_document(d) for d in good_docs]
print("Source Documents")
for doc in facts_to_inject:
# Remap metadata to url
ic(doc.metadata)
context = docs_to_prompt(facts_to_inject)
ic(num_tokens_from_string(context))
chain = prompt | llm | StrOutputParser()
global g_debug_info
# dunno why this isn't working, to lazy to fix.
# g_debug_info = DebugInfo(
# documents = facts_to_inject,
# count_tokens = num_tokens_from_string(context),
# question = question
# )
g_debug_info = DebugInfo()
g_debug_info.documents = facts_to_inject
g_debug_info.count_tokens = num_tokens_from_string(context)
g_debug_info.question = question
g_debug_info.model = langchain_helper.get_model_name(llm)
response = chain.ainvoke({"question": question, "context": context})
return await response
bot_help_text = "Replaced on_ready"
@bot.event
async def on_message(ctx):
# if message is from me, skip it
if ctx.author.bot:
# ic ("Ignoring message from bot", message)
return
ic("bot.on_message", ctx)
if len(ctx.content) == 0:
return
# message_content = ctx.content.replace(f"<@{bot.user.id}>", "").strip()
await send(
ctx, "Sorry I don't reply to DMs directly you need to use slash commands. e.g."
)
await send(ctx, bot_help_text)
@app.command()
def run_bot():
bot.run(get_bot_token("DISCORD_IGBLOG_BOT"))
@bot.event
async def on_ready():
print(f"{bot.user} is ready and online!")
global bot_help_text
bot_help_text = """```
Commands:
/ask - Ask a blog questions
- More coming ...
```"""
@bot.command(description="Show help")
async def help(ctx):
response = f"{bot_help_text}"
await ctx.respond(response)
@bot.command(name="ask", description="Message the bot")
async def ask_discord_command(ctx, question: str):
await ctx.defer()
progress_bar_task = await draw_progress_bar(ctx, f"User asked: {question}")
response = await iask(question, facts=10, debug=False)
progress_bar_task.cancel()
ic(response)
await send(ctx, response)
await ctx.respond(".")
@bot.command(
name="enjoy", description="Ask the bot something Igor should do that he'll enjoy"
)
async def enjoy(ctx, extra: str = ""):
await ctx.defer()
# load chroma from DB
prompt = ChatPromptTemplate.from_template(
"""
You are Igor's life coach. You help him do things he enjoys. Give him a recommendation on a concrete task to do (from todo_enjoy), add bullet points on why he should do it. Include context from his affirmations.
# Extra commands
{extra}
# Context
{context}
# Example output
**Igor should**: <action>
Igor will enjoy this because ..
< 0-4 bullet points>
"""
)
llm = langchain_helper.get_model(claude=True)
# We can improve our relevance by getting the md_simple_chunks, but that loses context
# Rebuild context by pulling in the largest chunk i can that contains the smaller chunk
good_docs = [
"_posts/2020-04-01-Igor-Eulogy.md",
"_d/operating-manual-2.md",
"_d/sublime.md",
"_d/enjoy2.md",
"_d/affirmations2.md",
]
facts_to_inject = [get_document(d) for d in good_docs]
print("Source Documents")
for doc in facts_to_inject:
# Remap metadata to url
ic(doc.metadata)
context = docs_to_prompt(facts_to_inject)
ic(num_tokens_from_string(context))
chain = prompt | llm | StrOutputParser()
extra_if_present = f"({extra})" if extra else ""
progress_bar_task = await draw_progress_bar(
ctx, f"Finding activities for Igor to enjoy {extra_if_present}"
)
response = await chain.ainvoke({"context": context, "extra": extra})
progress_bar_task.cancel()
ic(response)
await send(ctx, response)
await ctx.respond(".")
@bot.command(name="debug", description="Debug info the last call")
async def debug(ctx):
await ctx.defer()
process = discord_helper.get_debug_process_info()
await send(
ctx,
f"""
Tokens: {g_debug_info.count_tokens}
Model: {g_debug_info.model}
Proess:
{process}
Last documents:
""",
)
for doc in g_debug_info.documents:
await send(
ctx,
f"""`
{json.dumps(doc.metadata, indent=4)}`
""",
)
if g_tracer:
await send(ctx, f"Trace URL: f{g_tracer.get_run_url()}")
await ctx.respond(".")
# @logger.catch()
def app_wrap_loguru():
app()
if __name__ == "__main__":
app_wrap_loguru()