Spaces:
Runtime error
Runtime error
File size: 19,239 Bytes
594c559 |
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 |
const coordSet = [];
coordSet["Chief Executive Officer"] = {
"character": "Chief Executive Officer",
"imgid": "right",
"top": "-315px",
"left": "280px"
};
coordSet["Chief Product Officer"] = {
"character": "Chief Product Officer",
"imgid": "left",
"top": "-165px",
"left": "110px"
};
coordSet["Chief Human Resource Officer"] = {
"character": "Chief Human Resource Officer",
"imgid": "left",
"top": "-305px",
"left": "55px"
};
coordSet["Code Reviewer"] = {
"character": "Code Reviewer",
"imgid": "left",
"top": "-185px",
"left": "500px"
};
coordSet["Programmer"] = {
"character": "Programmer",
"imgid": "right",
"top": "-80px",
"left": "300px"
};
coordSet["Chief Technology Officer"] = {
"character": "Chief Technology Officer",
"imgid": "right",
"top": "-130px",
"left": "340px"
};
coordSet["Chief Creative Officer"] = {
"character": "Chief Creative Officer",
"imgid": "right",
"top": "-95px",
"left": "205px"
}
coordSet["Software Test Engineer"] = {
"character": "Software Test Engineer",
"imgid": "right",
"top": "-90px",
"left": "470px"
}
coordSet["User"] = {
"character": "User",
"imgid": "left",
"top": "-465px",
"left": "125px"
}
coordSet["Counselor"] = {
"character": "Counselor",
"imgid": "right",
"top": "-360px",
"left": "420px"
}
coordSet["Prompt Engineer"] = {
"character": "Prompt Engineer",
"imgid": "right",
"top": "-320px",
"left": "20px"
}
const Softwareinfo = {
"duration": "-1",
"cost": "-1",
"version_updates": "-1",
"num_code_files": "-1",
"num_png_files": "-1",
"num_doc_files": "-1",
"code_lines": "-1",
"env_lines": "-1",
"manual_lines": "-1",
"num_utterances": "-1",
"num_self_reflections": "-1",
"num_prompt_tokens": "-1",
"num_completion_tokens": "-1",
"num_total_tokens": "-1",
};
//control chars appear speed
var timeinterval = 5;
var charinterval = 1;
var scrollinterval = 40;
var contents;
var filename;
var curdialog = '';
var total_height = 0;
var cur_para = '';
var cur_command = '';
var idx = 0;
var dialog;
var replaying = 0;
var if_stop = 0;
let isPaused = false;
let pauseIntervalId;
var if_move = true;
var md = window.markdownit();
//watch replay button clicked
const button = document.getElementById('replay');
button.addEventListener('click', () => {
replayDialog(idx);
});
$(document).ready(function() {
$('#filebutton').click(function() {
$('#fileInput').click();
});
});
const dialogbody = document.getElementById("dialogBody");
dialogbody.addEventListener("mousewheel", handleMouseWheel, false);
function handleMouseWheel(event) {
if (event.wheelDelta > 0) {
if_move = false;
} else if (event.wheelDelta < 0) {
if (dialogbody.scrollTop + dialogbody.clientHeight == dialogbody.scrollHeight) {
if_move = true;
}
}
}
function getinterval(speed) {
if (speed < 80 && speed > 40) {
timeinterval = 250 / speed;
charinterval = 2;
scrollinterval = 80;
} else if (speed <= 40 && speed > 0) {
timeinterval = 150 / speed;
charinterval = 1;
scrollinterval = 80;
} else if (speed >= 80 && speed < 90) {
timeinterval = 100 / speed;
charinterval = 1;
scrollinterval = 100;
} else if (speed >= 90 && speed <= 100) {
timeinterval = 5 / speed;
charinterval = 1;
scrollinterval = 400;
}
}
//use the slider to control the replay speed
function speedchange() {
var speedbar = document.getElementById("speed");
var speed = speedbar.value;
if (speed == 0) {
if (!isPaused) {
isPaused = true;
clearInterval(pauseIntervalId);
updateCompanyWorking("end");
}
} else if (speed != 0 && isPaused == true) {
getinterval(speed);
isPaused = false;
idx += 1;
replayDialog(idx);
} else if (speed != 0) {
isPaused = false;
getinterval(speed);
}
}
// do replay
async function replayDialog(idx) {
if (replaying == 1 && idx == 0) {
return;
}
if (idx == 0) {
replaying = 1;
dialog = extraction(contents);
var filelable = document.getElementById("successupload");
filelable.style.display = "block";
var info = "Replaying `" + filename + "` ......";
filelable.innerHTML = md.render(info);
}
for (let i = idx; i < dialog.length; ++i) {
await createPara(dialog[i], i);
}
}
//watch .log file input
function watchfileInput(files) {
if (files.length) {
const file = files[0];
if (file) {
const reader = new FileReader();
reader.onload = function() {
contents = this.result;
};
reader.readAsText(file);
var filelable = document.getElementById("successupload");
filelable.style.display = "block";
var info = "File uploaded (`" + file.name + "`). Please click **\"Replay\"** to show ChatDev's development process";
filename = file.name;
filelable.innerHTML = md.render(info);
}
}
}
//extract information
function extraction(contents) {
const regex = /\[(\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} \w+)\] ([.\s\S\n\r\d\D\t]*?)(?=\n\[\d|$)/g;
var matches = [];
let match;
var itemp = 0;
while ((match = regex.exec(contents))) {
console.log(itemp);
itemp++;
const timestamp = match[1];
const text = match[2];
matches.push({
timestamp,
text
});
}
const regex_assistant = /(.*):([.\r\n\s\S\t\d\D]*)<->([.\r\n\s\S\t\d\D]*?)\]([.\r\n\s\S\t\d\D]*)/g;
const regex_user = /(.*):(.*)(\[Start Chat\])([.\r\n\s\S\t\d\D]*?)\]([.\r\n\s\S\t\d\D]*)/g;
const regex_prompt = /(Prompt Engineer): "([.\s\S\d\D]*)"/g
const regex_end = /(AgentTech Ends|ChatDev Ends)/g;
const regex_start = /(ChatDev Starts)([\D\s])*(\d*)/g;
const regex_task = /(task_prompt)(.*):(.*)/g;
const regex_info = /Software Info([\r\n\s\S\t\d\D]*)/g;
const regex_system = /System/g;
const regex_debug = /DEBUG/g;
var dialog = [];
var count = 0;
for (let i = 0; i < matches.length; ++i) {
var if_break = false;
console.log(i);
if (i == 159 || i == 198 || i == 223 || i == 260 || i == 416 || i == 537) {
//console.log(matches[i]);
}
while ((match = regex_debug.exec(matches[i].timestamp)) !== null) {
if_break = true;
}
while ((match = regex_system.exec(matches[i].text)) !== null) {
if_break = true;
}
while (((match = regex_prompt.exec(matches[i].text)) !== null)) {
const type = "assitant";
const character = match[1];
const command = match[2];
const len = match[2].length;
count += 1;
dialog.push({
type,
character,
command,
len,
count
});
if_break = true;
}
if (if_break) {
continue;
}
while ((match = regex_assistant.exec(matches[i].text)) !== null) {
const type = "assitant";
const character = match[1];
const command = match[4];
const len = match[4].length;
count += 1;
dialog.push({
type,
character,
command,
len,
count
});
}
while ((match = regex_user.exec(matches[i].text)) !== null) {
const type = "user";
const character = match[1];
const command = match[5];
const len = match[5].length;
count += 1;
dialog.push({
type,
character,
command,
len,
count
});
}
while ((match = regex_start.exec(matches[i].text)) !== null) {
const start = match[1];
const len = match[1].length;
dialog.push({
start,
len,
});
}
while ((match = regex_end.exec(matches[i].text)) !== null) {
const end = match[1];
const len = match[1].length;
dialog.push({
end,
len,
});
}
while ((match = regex_task.exec(matches[i].text)) !== null) {
const task = match[3];
dialog.push({
task
});
}
while ((match = regex_info.exec(matches[i].text)) !== null) {
const info = match[1];
if ((/code_lines(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info) != null) {
Softwareinfo.code_lines = (/code_lines(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info)[1];
}
if ((/num_code_files(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info) != null) {
Softwareinfo.num_code_files = (/num_code_files(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info)[1];
}
if ((/num_png_files(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info) != null) {
Softwareinfo.num_png_files = (/num_png_files(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info)[1];
}
if ((/num_doc_files(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info) != null) {
Softwareinfo.num_doc_files = (/num_doc_files(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info)[1];
}
if ((/env_lines(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info) != null) {
Softwareinfo.env_lines = (/env_lines(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info)[1];
}
if ((/manual_lines(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info) != null) {
Softwareinfo.manual_lines = (/manual_lines(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info)[1];
}
if ((/duration(?:[\t\n\r\s\D]*?)=(-?(\d*)(.(\d)*)?s)/g).exec(info) != null) {
Softwareinfo.duration = (/duration(?:[\t\n\r\s\D]*?)=(-?(\d*)(.(\d)*)?s)/g).exec(info)[1];
}
if ((/num_utterances(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info) != null) {
Softwareinfo.num_utterances = (/num_utterances(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info)[1];
}
if ((/num_self_reflections(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info) != null) {
Softwareinfo.num_self_reflections = (/num_self_reflections(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info)[1];
}
if ((/num_prompt_tokens(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info) != null) {
Softwareinfo.num_prompt_tokens = (/num_prompt_tokens(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info)[1];
}
if ((/num_completion_tokens(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info) != null) {
Softwareinfo.num_completion_tokens = (/num_completion_tokens(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info)[1];
}
if ((/num_total_tokens(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info) != null) {
Softwareinfo.num_total_tokens = (/num_total_tokens(?:[\t\n\r\s\D]*?)=(-?(\d*))/g).exec(info)[1];
}
if ((/cost(?:[\t\n\r\s\D]*?)=(.((\d)*\.(\d)*))/g).exec(info) != null) {
Softwareinfo.cost = (/cost(?:[\t\n\r\s\D]*?)=(.((\d)*\.(\d)*))/g).exec(info)[1];
}
if ((/version_updates(?:[\t\n\r\s\D]*?)=(-?\d*)/g).exec(info) != null) {
Softwareinfo.version_updates = (/version_updates(?:[\t\n\r\s\D]*?)=(-?\d*)/g).exec(info)[1];
}
dialog.push({
info,
Softwareinfo
});
}
}
return dialog;
}
//show dailog
function createPara(d, i) {
const singleDialog = document.createElement("div");
singleDialog.style.position = "relative";
curdialog = singleDialog;
singleDialog.style.display = "flex";
singleDialog.style.flexDirection = "column";
singleDialog.style.width = "773px";
dialogbody.appendChild(singleDialog);
var paralen;
if (d.type && d.character) {
updateCompanyWorking(d.character);
var renderedHtml = md.render(d.character);
const character = document.createElement("div");
character.style.display = "flex";
character.style.backgroundColor = "lightblue";
character.style.width = "fit-content";
character.style.fontSize = "13px ";
character.style.border = "1px solid rgba(11, 20, 150, .3)";
character.style.borderRadius = "10px";
character.style.boxShadow = "2px 2px 2px black";
character.style.fontFamily = "'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;";
if (d.type == "user") {
character.style.position = "relative";
character.style.marginLeft = "auto";
}
character.innerHTML = renderedHtml;
singleDialog.appendChild(character);
const characterimg = document.createElement("img");
console.log(d.character);
if (d.character == "Programmer") {
characterimg.src = "figures/programmer.png";
} else if (d.character == "Code Reviewer") {
characterimg.src = "figures/reviewer.png";
} else if (d.character == "Chief Human Resource Officer") {
characterimg.src = "figures/hr.png";
} else if (d.character == "Chief Executive Officer") {
characterimg.src = "figures/ceo.png";
} else if (d.character == "Chief Product Officer") {
characterimg.src = "figures/cpo.png";
} else if (d.character == "Chief Technology Officer") {
characterimg.src = "figures/cto.png";
} else if (d.character == "Chief Creative Officer") {
characterimg.src = "figures/designer.png";
} else if (d.character == "Software Test Engineer") {
characterimg.src = "figures/tester.png";
} else if (d.character == "User") {
characterimg.src = "figures/user.png";
} else if (d.character == "Counselor") {
characterimg.src = "figures/counselor.png";
} else if (d.character == "Prompt Engineer") {
characterimg.src = "figures/pe.png";
}
characterimg.style.height = "40px";
characterimg.style.width = "30px";
characterimg.style.position = "relative";
character.appendChild(characterimg);
character.style.width = "fit-content";
var renderedHtml = md.render(d.command);
const paragraph = document.createElement("div");
paragraph.className = "markdown-body";
//paragraph.innerHTML = renderedHtml;
paragraph.style.padding = "10px";
paragraph.style.border = "3px solid #a08D8D";
paragraph.style.width = "750px";
paragraph.style.border = "1px solid rgba(11, 20, 150, .3)";
paragraph.style.borderRadius = "10px";
paragraph.style.boxShadow = "2px 2px 2px black";
singleDialog.appendChild(paragraph);
const emptyparagraph = document.createElement("div");
emptyparagraph.style.height = "10px";
singleDialog.appendChild(emptyparagraph);
if (d.type == "user") {
paragraph.style.backgroundColor = "#4b751a";
} else {
paragraph.style.backgroundColor = "#133153";
}
cur_command = d.command;
cur_para = paragraph;
idx = i;
return Promise.resolve(printCommand(paragraph, d.command));
} else if (d.start) {
paralen = 0;
var renderedHtml = md.render("----------" + d.start + "----------");
const starttext = document.createElement("div");
starttext.innerHTML = renderedHtml;
singleDialog.appendChild(starttext);
} else if (d.end) {
paralen = 0;
updateCompanyWorking("end");
var renderedHtml = md.render("----------" + d.end + "----------");
const endtext = document.createElement("div");
endtext.innerHTML = renderedHtml;
singleDialog.appendChild(endtext);
var filelable = document.getElementById("successupload");
filelable.style.display = "block";
var info = "Replayed";
filelable.innerHTML = md.render(info);
} else if (d.task) {
var renderedHtml = md.render("Task: " + d.task);
const tasktext = document.getElementById("Requesttext");
tasktext.innerHTML = renderedHtml;
} else if (d.info) {
var renderedHtml = md.render(d.info);
const infotext = document.getElementById("dialogStatistic");
var temp_label = "";
for (var c in Softwareinfo) {
temp_label = document.getElementById(c);
if (Softwareinfo[c] != "-1" && Softwareinfo[c] != "-1s") {
temp_label.innerHTML = Softwareinfo[c];
}
}
}
}
//update company image
function updateCompanyWorking(character) {
if (character == "end") {
var img1 = document.getElementById("right");
img1.style.display = "none";
var img2 = document.getElementById("left");
img2.style.display = "none";
return;
}
var imgid = coordSet[character].imgid;
var left_bias = coordSet[character].left;
var top_bias = coordSet[character].top;
var img = document.getElementById(imgid);
img.style.display = "block";
img.style.left = left_bias;
img.style.top = top_bias;
if (imgid == "left") {
var another_img = document.getElementById("right");
another_img.style.display = "none";
} else {
var another_img = document.getElementById("left");
another_img.style.display = "none";
}
}
async function updateParashow(container, command, index, len) {
var cur_content;
if (index == len - 1) {
cur_content = command.slice(0, index);
}
if (index < len) {
cur_content = command.slice(0, index);
if (cur_content != null && cur_content != undefined) {
container.innerHTML = md.render(cur_content);
};
}
if (index % (scrollinterval) == 0 && if_move == true) {
if (curdialog != null && curdialog != '') {
const newBoxRect = curdialog.getBoundingClientRect();
total_height += newBoxRect.height;
dialogbody.scrollTo({ top: total_height, behavior: 'smooth' });
}
}
}
async function printCommand(paragraph, command) {
var paralen = command.length;
const tasks = [];
for (let j = 0; j < paralen; j = j + charinterval) {
tasks.push(new Promise(resolve => {
pauseIntervalId = setTimeout(() => {
updateParashow(paragraph, command, j, paralen);
resolve();
}, timeinterval * j);
}));
if (isPaused) {
await Promise.all(tasks);
}
}
await Promise.all(tasks);
return 1;
} |