-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathdiscussurl.py
40 lines (31 loc) · 910 Bytes
/
discussurl.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
import re
import requests
url_regex = r"(?i)\b((?:https?://|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'\".,<>?«»“”‘’]))"
prompt = """
<instruction>
Your task is to fulfill the user's request by discussing provided content.
</instruction>
<content>
{content}
</content>
<request>
{request}
</request>
""".strip()
ID_PREFIX = "discussurl"
async def apply(chat, llm):
text = chat.text()
urls = re.findall(url_regex, text)
# No - URLs - proceed as usual
if len(urls) == 0:
return await llm.stream_final_completion()
# Yes - URLs - read them
content = ""
for url in urls:
await llm.emit_status(f"Reading {url[0]}...")
content += requests.get(url[0]).text
await llm.stream_final_completion(
prompt=prompt,
content=content,
request=chat.tail.content,
)