Spaces:
Build error
Build error
File size: 13,251 Bytes
51bd6f0 07422cb 51bd6f0 9cf40df 51bd6f0 f590ea3 51bd6f0 536027d eabc351 536027d 51bd6f0 9835c49 51bd6f0 f590ea3 51bd6f0 fc8e812 f590ea3 fcf4b1e f590ea3 51bd6f0 1b2ab6f 51bd6f0 03ce1c8 51bd6f0 55b6986 51bd6f0 f590ea3 51bd6f0 04484a6 51bd6f0 07422cb fcf4b1e 6ec6bb6 fcf4b1e b9c564d fcf4b1e fc8e812 5f0e446 fcf4b1e 9cf40df f590ea3 9cf40df 61072d0 9cf40df 941b517 551aaeb d13a0e2 9cf40df 07422cb 1b2ab6f 07422cb 243e924 07422cb 146dec1 07422cb 366537d f957789 366537d 61f3b89 243e924 366537d eabc351 366537d f590ea3 366537d eabc351 366537d 243e924 366537d eabc351 366537d 5f0a172 366537d 5f0a172 1b2ab6f 07422cb 51bd6f0 d63eaaf b54eb42 3dafe72 51bd6f0 0d768cc 50dfbed cab9af2 50dfbed 6cbf30b 50dfbed d79b662 50dfbed 65e7c9d b9b4a1a 24360e4 0dda56c 24360e4 a11ae41 b9b4a1a a11ae41 6cbf30b 2518130 26cce0e 50dfbed 24360e4 d870113 0dda56c d63eaaf 50dfbed 8df6fbd 0dda56c 536027d 23a0b1d fdf1f2b 23a0b1d d66f928 23a0b1d eabc351 23a0b1d 0ed4f05 51bd6f0 9cf40df eabc351 c535fc7 0ed4f05 eabc351 adaaba6 835c636 0ed4f05 1201acd 0d6cf3f 1201acd 0d6cf3f bcf0671 0ed4f05 51bd6f0 561efb9 51bd6f0 eabc351 51bd6f0 eabc351 9cf40df 51bd6f0 fcf4b1e 0ed4f05 eabc351 3cfee22 |
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 |
import gradio as gr
import requests
import bs4
import lxml
import os
from huggingface_hub import InferenceClient,HfApi
import random
import json
import datetime
import xmltodict
from prompts import (
GET_KEYWORD,
COMPRESS_HISTORY_PROMPT,
COMPRESS_DATA_PROMPT,
COMPRESS_DATA_PROMPT_SMALL,
PREFIX_ALT,
PREFIX,
)
client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
reponame="Omnibus/tmp"
save_data=f'https://huggingface.co/datasets/{reponame}/raw/main/'
token_self = os.environ['HF_TOKEN']
api=HfApi(token=token_self)
def parse_action(string: str):
print("PARSING:")
print(string)
assert string.startswith("action:")
idx = string.find("action_input=")
print(idx)
if idx == -1:
print ("idx == -1")
print (string[8:])
return string[8:], None
print ("last return:")
print (string[8 : idx - 1])
print (string[idx + 13 :].strip("'").strip('"'))
return string[8 : idx - 1], string[idx + 13 :].strip("'").strip('"')
MAX_HISTORY = 100
MAX_DATA = 40000
def format_prompt(message, history):
prompt = "<s>"
for user_prompt, bot_response in history:
prompt += f"[INST] {user_prompt} [/INST]"
prompt += f" {bot_response}</s> "
prompt += f"[INST] {message} [/INST]"
return prompt
def run_gpt(
prompt_template,
stop_tokens,
max_tokens,
seed,
purpose,
prefix_tog,
**prompt_kwargs,
):
timestamp=datetime.datetime.now()
print(seed)
generate_kwargs = dict(
temperature=0.9,
max_new_tokens=max_tokens,
top_p=0.95,
repetition_penalty=1.0,
do_sample=True,
seed=seed,
)
print(f'prefix_tog:: {prefix_tog}')
if prefix_tog == "normal":
content = PREFIX.format(
timestamp=timestamp,
purpose=purpose,
) + prompt_template.format(**prompt_kwargs)
if prefix_tog == "alternate":
content = PREFIX_ALT + prompt_template.format(**prompt_kwargs)
#formatted_prompt = format_prompt(f"{system_prompt}, {prompt}", history)
#formatted_prompt = format_prompt(f'{content}', **prompt_kwargs['history'])
stream = client.text_generation(content, **generate_kwargs, stream=True, details=True, return_full_text=False)
resp = ""
for response in stream:
resp += response.token.text
#yield resp
return resp
def compress_data(c,purpose, task, history):
seed=random.randint(1,1000000000)
print (c)
divr=int(c)/MAX_DATA
divi=int(divr)+1 if divr != int(divr) else int(divr)
chunk = int(int(c)/divr)
print(f'chunk:: {chunk}')
print(f'divr:: {divr}')
print (f'divi:: {divi}')
out = []
#out=""
s=0
e=chunk
print(f'e:: {e}')
new_history=""
task = f'Compile this data to fulfill the task: {task}, and complete the purpose: {purpose}\n'
for z in range(divi):
print(f's:e :: {s}:{e}')
hist = history[s:e]
print(f'hist::\n{hist}')
resp = run_gpt(
COMPRESS_DATA_PROMPT,
stop_tokens=["observation:", "task:", "action:", "thought:"],
max_tokens=2048,
seed=seed,
purpose=purpose,
prefix_tog="normal",
task=task,
knowledge=new_history,
history=hist,
).strip("\n")
new_history = resp
print (resp)
out+=resp
e=e+chunk
s=s+chunk
'''
resp = run_gpt(
COMPRESS_DATA_PROMPT,
stop_tokens=["observation:", "task:", "action:", "thought:"],
max_tokens=2048,
seed=seed,
purpose=purpose,
task=task,
knowledge=new_history,
history=result,
)
'''
print ("final" + resp)
history = "result: {}\n".format(resp)
return history
def get_records(inp,data):
key_box=[]
seed=random.randint(1,1000000000)
print(inp)
out = str(data)
rl = len(out)
print(f'rl:: {rl}')
c=1
for i in str(out):
if i == " " or i=="," or i=="\n" or i=="/" or i=="." or i=="<":
c +=1
print (f'c:: {c}')
divr=int(c)/MAX_DATA
divi=int(divr)+1 if divr != int(divr) else int(divr)
chunk = int(int(c)/divr)
print(f'chunk:: {chunk}')
print(f'divr:: {divr}')
print (f'divi:: {divi}')
s=0
e=chunk
print(f'e:: {e}')
new_history=""
#task = f'Compile this data to fulfill the task: {task}, and complete the purpose: {purpose}\n'
for z in range(divi):
print(f's:e :: {s}:{e}')
hist = out[s:e]
print(f'hist::\n{hist}')
resp = run_gpt(
GET_KEYWORD,
stop_tokens=[],
max_tokens=2048,
seed=seed,
purpose=inp,
prefix_tog="alternate",
task=inp,
knowledge=new_history,
history=hist,
).strip("\n")
new_history = resp
print (f'resp {z}::\n {resp}')
#out+=resp
e=e+chunk
s=s+chunk
yield "", [(inp,new_history)]
def get_key(inp,data):
key_box=[]
seed=random.randint(1,1000000000)
key_w = run_gpt(
GET_KEYWORD,
stop_tokens=[],
max_tokens=56,
seed=seed,
purpose=inp,
prefix_tog="normal",
task=inp,
).split("<")[0]
print(f'key_w::{key_w}')
if " " in key_w:
key_w=key_w.split(" ")[-1]
for i,ba in enumerate(data):
each_key=data[i].keys()
print(each_key)
for z,zz in enumerate(list(each_key)[0]):
#for f,ff in enumerate(data[i][zz]):
ea = data[i][list(each_key)[0]][z]
try:
if ea['title'] and key_w in ea['title']:
key_box.append(ea)
elif ea['description'] and key_w in ea['description']:
key_box.append(ea)
elif ea['link'] and key_w in ea['link']:
key_box.append(ea)
except Exception as e:
print(e)
print(key_box)
def summarize(inp,history,data=None):
json_box=[]
if inp == "":
inp = "Process this data"
#inp = format_prompt(inp,history)
task = "Compile a detailed report"
history.clear()
yield "",[(inp,"Working on it...")]
if data != "Error" and data != "":
print(inp)
out = str(data)
rl = len(out)
print(f'rl:: {rl}')
c=1
for i in str(out):
if i == " " or i=="," or i=="\n" or i=="/" or i=="." or i=="<":
c +=1
print (f'c:: {c}')
#json_out = compress_data(c,inp,task,out)
#def compress_data(c,purpose, task, history):
purpose=inp
seed=random.randint(1,1000000000)
print (c)
divr=int(c)/MAX_DATA
divi=int(divr)+1 if divr != int(divr) else int(divr)
chunk = int(int(c)/divr)
print(f'chunk:: {chunk}')
print(f'divr:: {divr}')
print (f'divi:: {divi}')
#out=""
s=0
e=chunk
print(f'e:: {e}')
new_history=""
task = f'Compile this data to fulfill the task: {task}, and complete the purpose: {purpose}\n'
for z in range(divi):
print(f's:e :: {s}:{e}')
mes= f'Working on data chunk: {s}:{e}'
hist = out[s:e]
print(f'hist::\n{hist}')
yield "", [(inp,f'{mes}\n{new_history}')]
resp = run_gpt(
COMPRESS_DATA_PROMPT,
stop_tokens=[],
max_tokens=2048,
seed=seed,
purpose=purpose,
prefix_tog="normal",
task=task,
knowledge=new_history,
history=hist,
)
new_history = resp
print (resp)
out+=resp
e=e+chunk
s=s+chunk
#history = "preliminary result: {}\n".format(resp)
#yield "", (inp,f'{mes}\n{history}')
print ("final" + resp)
out_hist = "result:\n{}".format(resp)
#return history
yield "", [(inp,out_hist)]
out = str(out_hist)
rawp = out
else:
rawp = "Provide a valid data source"
history.append((inp,rawp))
yield "", history
def find_rss():
lod=""
out_box=[]
yield [],[(None,"loading sources")]
with open ('feeds.json','r') as j:
cont = json.loads(j.read())
#print(cont)
for ea in cont:
#lod=""
print (ea['link'])
rss_url=ea['link']
link_box=[]
r = requests.get(f'{rss_url}')
if r.status_code == 200:
try:
if ".json" in rss_url:
lod = json.loads(r.text)
if ".xml" in rss_url:
lod = xmltodict.parse(r.content)
if ".rss" in rss_url:
lod = xmltodict.parse(r.content)
else:
try:
lod = xmltodict.parse(r.content)
except Exception as e:
lod=f'{rss_url} ::ERROR:: {e}'
except Exception as e:
lod=f'{rss_url} ::ERROR:: {e}'
else:
lod = f'{rss_url} ::ERROR::COULD NOT CONNECT:: {r.status_code}'
pass
try:
print(lod['rss']['channel']['item'][0].keys())
print(lod['rss'].keys())
for i,ea in enumerate(lod['rss']['channel']['item']):
try:
r_link = ea['link']
r_title = ea['title']
r_description = ea['description']
lods = {"title":r_title, "description":r_description,"link":r_link}
except Exception:
try:
r_link = ea['link']
r_title = ea['source']
r_description = 'No Description provided'
lods = {"title":r_title, "description":r_description,"link":r_link}
except Exception as e:
print(e)
pass
#lods = {"title":"ERROR", "description":{e},"link":"ERROR"}
"""
r_link = lod['rss']['channel']['item'][i]['link']
r_title = lod['rss']['channel']['item'][i]['title']
r_description = lod['rss']['channel']['item'][i]['description']"""
link_box.append(lods)
lod={lod['rss']['channel']['title']:link_box}
out_box.append(lod)
except Exception as e:
#print(f'{ea["source"]}')
#print(f'{ea["link"]}')
#lod = f'{rss_url} ::ERROR:: {e}'
print(f'Exception::{e}')
print(f'Exception::{ea.keys()}')
#out_box.append(lod)
#user_repo=save_data.split('datasets/',1)[1].split('/raw',1)[0]
timestamp=str(datetime.datetime.now())
timename=timestamp.replace(" ","--").replace(":","-").replace(".","-")
json_object = json.dumps(out_box)
#json_object = json.dumps(out_box,indent=4)
with open("tmp1.json", "w") as outfile:
outfile.write(json_object)
api.upload_file(
path_or_fileobj="tmp1.json",
path_in_repo=f"/rss/{timename}.json",
repo_id=reponame,
#repo_id=save_data.split('datasets/',1)[1].split('/raw',1)[0],
token=token_self,
repo_type="dataset",
)
yield out_box,[(None,f'Source is current as of:\n{timestamp} UTC\n\nThe current Date and Time is:\n{timestamp} UTC')]
def load_data():
yield None,[(None,f'Loading data source, please wait')]
f_ist = (api.list_repo_files(repo_id=reponame, repo_type="dataset"))
f_ist.sort(reverse=True)
print(f_ist)
r = requests.get(f'{save_data}{f_ist[0]}')
lod = json.loads(r.text)
timestamp=str(datetime.datetime.now())
filename=f_ist[0].split("/")[1].split(".json")[0].replace("--"," ")
print (filename)
filename_start = filename.split(" ")[0]
filename_end = filename.split(" ")[1]
filename_end = filename_end.replace("-"[0],":").replace("-"[0],":").replace("-"[0],".")
#filename_end_far=filename_end.split(":")[2]
print (filename)
yield lod,[(None,f'Source is current as of:\n{filename_start} {filename_end} UTC\n\nThe current Date and Time is:\n{timestamp} UTC')]
with gr.Blocks() as app:
cb = gr.Chatbot(height=600, show_share_button=True, show_copy_button=True)
with gr.Row():
inst = gr.Textbox(label="Instructions")
sub_btn=gr.Button("Submit")
with gr.Row():
load_btn = gr.Button("Load RSS")
u_btn=gr.Button("Update [RSS Data]")
keyw = gr.Button("Use Keyword [Experimental]")
with gr.Row():
out_json = gr.JSON()
fil = gr.Textbox()
keyw.click(get_records,[inst,out_json],[inst,cb])
load_btn.click(load_data,None,[out_json,cb])
u_btn.click(find_rss,None,[out_json,cb])
sub_btn.click(summarize,[inst,cb,out_json],[inst,cb])
app.queue(default_concurrency_limit=20).launch()
|