Spaces:
Runtime error
Runtime error
File size: 169,886 Bytes
55d64e5 6a76700 cb70b5b de9c7d8 937cdb6 2e79c02 08b1e6c a37c4f9 1e79030 41235aa 5a3e284 579a105 982122f a92e5cd 3ce59a7 427f510 |
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 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 |
2025-02-12 13:56:20,183 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 13:56:20,287 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 13:56:22,356 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 13:56:22,364 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 13:56:22,375 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 13:56:22,937 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 13:57:38,012 - auditqa.retriever - INFO - Retriever activated
2025-02-12 13:57:39,150 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 13:57:41,590 - auditqa.reader - INFO - Dedicated endpoint activated
2025-02-12 13:59:45,278 - __main__ - INFO - App launched
2025-02-12 13:59:51,278 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 13:59:51,373 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 13:59:53,331 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 13:59:53,342 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 13:59:53,353 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 13:59:53,937 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:00:42,264 - auditqa.retriever - INFO - Retriever activated
2025-02-12 14:00:43,357 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:00:43,897 - auditqa.retriever - INFO - retrieved paragraphs:0
2025-02-12 14:00:44,067 - auditqa.reader - INFO - Dedicated endpoint activated
2025-02-12 14:01:18,445 - __main__ - INFO - App launched
2025-02-12 14:01:24,077 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:01:24,172 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:01:25,996 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:01:26,003 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:01:26,007 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:01:26,584 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:01:50,134 - auditqa.retriever - INFO - Retriever activated
2025-02-12 14:02:45,623 - __main__ - INFO - App launched
2025-02-12 14:02:51,283 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:02:51,376 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:02:53,245 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:02:53,257 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:02:53,285 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:02:53,354 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:02:53,842 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:03:46,901 - auditqa.retriever - INFO - Retriever activated
2025-02-12 14:03:47,916 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:03:48,647 - auditqa.retriever - INFO - retrieved paragraphs:0
2025-02-12 14:03:48,844 - auditqa.reader - INFO - Dedicated endpoint activated
2025-02-12 14:05:04,051 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:05:04,165 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:05:19,190 - __main__ - INFO - App launched
2025-02-12 14:05:22,418 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:05:25,164 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:05:25,253 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:07:42,531 - auditqa.retriever - INFO - Retriever activated
2025-02-12 14:09:50,799 - __main__ - INFO - Retriever activated
2025-02-12 14:10:15,655 - __main__ - INFO - Retriever activated
2025-02-12 14:10:16,703 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:10:19,002 - __main__ - INFO - retrieved paragraphs:0
2025-02-12 14:12:20,117 - __main__ - INFO - Retriever activated
2025-02-12 14:12:21,077 - __main__ - INFO - Raw retrieved documents before reranking: 20
2025-02-12 14:12:22,194 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:12:26,721 - __main__ - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 14:12:51,863 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:12:51,974 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:15:45,899 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:15:46,009 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:15:48,035 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:15:48,045 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:15:48,057 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:15:48,611 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:16:10,607 - auditqa.retriever - INFO - Retriever activated
2025-02-12 14:16:27,950 - __main__ - INFO - App launched
2025-02-12 14:17:17,852 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:17:17,951 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:17:19,770 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:17:19,781 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:17:19,788 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:17:19,880 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:17:20,359 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:17:51,884 - auditqa.retriever - INFO - Retriever activated
2025-02-12 14:17:53,389 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:17:55,796 - auditqa.retriever - INFO - retrieved paragraphs:0
2025-02-12 14:17:55,998 - auditqa.reader - INFO - Dedicated endpoint activated
2025-02-12 14:18:29,311 - __main__ - INFO - App launched
2025-02-12 14:18:35,266 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:18:35,360 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:18:37,094 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:18:37,101 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:18:37,111 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:18:37,687 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:18:58,332 - auditqa.retriever - INFO - Retriever activated
2025-02-12 14:19:14,462 - __main__ - INFO - App launched
2025-02-12 14:19:19,941 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:19:20,032 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:19:22,032 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:19:22,033 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:19:22,044 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:19:22,605 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:19:30,055 - auditqa.retriever - INFO - Retriever activated
2025-02-12 14:22:45,945 - __main__ - INFO - App launched
2025-02-12 14:22:52,140 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:22:52,243 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:22:54,327 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:22:54,338 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:22:54,388 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:22:54,447 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:22:54,896 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:23:05,299 - auditqa.retriever - INFO - Retriever activated
2025-02-12 14:23:07,432 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
2025-02-12 14:23:07,433 - auditqa.retriever - WARNING - No documents retrieved. Consider checking the filter conditions or lowering the threshold.
2025-02-12 14:23:08,685 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:23:09,167 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 0
2025-02-12 14:23:09,453 - auditqa.reader - INFO - Dedicated endpoint activated
2025-02-12 14:24:04,297 - __main__ - INFO - App launched
2025-02-12 14:24:10,120 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:24:10,214 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:24:12,218 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:24:12,219 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:24:12,230 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:24:12,795 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:24:26,280 - auditqa.retriever - INFO - Retriever activated
2025-02-12 14:24:27,198 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
2025-02-12 14:24:27,199 - auditqa.retriever - WARNING - No documents retrieved. Consider checking the filter conditions or lowering the threshold.
2025-02-12 14:24:28,187 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:24:29,627 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 0
2025-02-12 14:24:29,877 - auditqa.reader - INFO - Dedicated endpoint activated
2025-02-12 14:27:11,766 - __main__ - INFO - App launched
2025-02-12 14:27:18,298 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:27:18,402 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:27:20,737 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:27:20,741 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:27:20,751 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:27:21,319 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:27:27,973 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 14:27:27,973 - auditqa.retriever - INFO - Model config: 100
2025-02-12 14:27:30,481 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
2025-02-12 14:27:30,481 - auditqa.retriever - WARNING - No documents retrieved. Consider checking the filter conditions or lowering the threshold.
2025-02-12 14:27:31,488 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:27:31,832 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 0
2025-02-12 14:27:32,015 - auditqa.reader - INFO - Dedicated endpoint activated
2025-02-12 14:30:51,999 - __main__ - INFO - App launched
2025-02-12 14:30:58,371 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:30:58,479 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:31:00,434 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:31:00,435 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:31:00,447 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:31:01,015 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:31:06,957 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 14:31:06,957 - auditqa.retriever - INFO - Model config: 100
2025-02-12 14:31:09,597 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
2025-02-12 14:31:09,597 - auditqa.retriever - WARNING - No documents retrieved. Consider checking the filter conditions or lowering the threshold.
2025-02-12 14:31:10,909 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:31:11,121 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 0
2025-02-12 14:31:11,305 - auditqa.reader - INFO - Dedicated endpoint activated
2025-02-12 14:32:47,225 - __main__ - INFO - App launched
2025-02-12 14:32:53,420 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:32:53,521 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:32:55,460 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:32:55,461 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:32:55,473 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:32:56,028 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:33:05,520 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 14:33:08,775 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
2025-02-12 14:33:08,775 - auditqa.retriever - WARNING - No documents retrieved with filters. Falling back to no filters.
2025-02-12 14:33:09,108 - auditqa.retriever - INFO - Retrieved 200 documents without filters
2025-02-12 14:33:10,220 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:33:22,490 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 100
2025-02-12 14:33:22,667 - auditqa.reader - INFO - Dedicated endpoint activated
2025-02-12 14:36:10,619 - __main__ - INFO - App launched
2025-02-12 14:36:17,088 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:36:17,189 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:36:18,959 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:36:18,970 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:36:18,976 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:36:19,070 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:36:19,527 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:36:23,901 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 14:36:26,600 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
2025-02-12 14:36:26,602 - auditqa.retriever - WARNING - No documents retrieved with filters. Falling back to no filters.
2025-02-12 14:36:26,891 - auditqa.retriever - INFO - Retrieved 200 documents without filters
2025-02-12 14:36:27,840 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:36:36,619 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 100
2025-02-12 14:36:36,787 - auditqa.reader - INFO - Dedicated endpoint activated
2025-02-12 14:38:14,463 - __main__ - INFO - App launched
2025-02-12 14:38:20,914 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:38:21,013 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:38:23,150 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:38:23,151 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:38:23,162 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:38:23,729 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:38:32,271 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 14:38:33,335 - auditqa.retriever - INFO - Sample document metadata:
2025-02-12 14:38:33,335 - auditqa.retriever - INFO - Document 1 metadata: {'source': 'Local Government', 'subtype': 'Buhweju District Local Government Report of the Auditor General,2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 39, 'headings': [{'headings_0': {'content': '— Not Licenced', 'page': 38, 'level': 2}}], '_id': 'f1f676ada7734d1dbddfc8823ba30aac', '_collection_name': 'allreports'}
2025-02-12 14:38:33,335 - auditqa.retriever - INFO - Document 2 metadata: {'source': 'Local Government', 'subtype': 'Rukiga District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 37, 'headings': [{'headings_0': {'content': "paonpeay Alpiqiow pue anp 'SaIV/AIH gi euejew Jayjo saseasip", 'page': 37, 'level': 3}}], '_id': '3249659a33c041c6b47ee353939b28d5', '_collection_name': 'allreports'}
2025-02-12 14:38:33,336 - auditqa.retriever - INFO - Document 3 metadata: {'source': 'Local Government', 'subtype': 'Sheema District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 36, 'headings': [{'headings_0': {'content': '| Total', 'page': 35, 'level': 5}}], '_id': '011068f5ee1d4b6e9e6c5d1c7015068a', '_collection_name': 'allreports'}
2025-02-12 14:38:33,336 - auditqa.retriever - INFO - Document 4 metadata: {'source': 'Ministry, Department, Agency and Projects', 'subtype': 'Uganda National Roads Authority ( UNRA) Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 41, 'headings': [{'headings_0': {'content': 'performance', 'page': 40, 'level': 8}}], '_id': '27e27886c56045a0ad10200e1c341a45', '_collection_name': 'allreports'}
2025-02-12 14:38:33,336 - auditqa.retriever - INFO - Document 5 metadata: {'source': 'Local Government', 'subtype': 'Kalangala District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 26, 'headings': [{'headings_0': {'content': 'require that;', 'page': 24, 'level': 1}}], '_id': '5cc1f1ee293b4b18869a747efcfe7224', '_collection_name': 'allreports'}
2025-02-12 14:38:33,678 - auditqa.retriever - INFO - Sample metadata from unfiltered search: {'source': 'Local Government', 'subtype': 'Bulambuli District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 4, 'headings': [{'headings_0': {'content': 'Single', 'page': 3, 'level': 2}}], '_id': 'e32914f00f164afd866f37c81f81190f', '_collection_name': 'allreports'}
2025-02-12 14:38:33,678 - auditqa.retriever - INFO - Year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 14:38:34,047 - auditqa.retriever - INFO - Test 2 - Year filter only: Retrieved 5 documents
2025-02-12 14:38:34,047 - auditqa.retriever - INFO - Source filter: should=None min_should=None must=[FieldCondition(key='metadata.source', match=MatchValue(value='Consolidated'), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 14:38:34,348 - auditqa.retriever - INFO - Test 3 - Source filter only: Retrieved 0 documents
2025-02-12 14:38:34,349 - auditqa.retriever - INFO - Final filter configuration: should=None min_should=None must=[FieldCondition(key='metadata.source', match=MatchValue(value='Consolidated'), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None), FieldCondition(key='metadata.subtype', match=MatchAny(any=['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None), FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 14:38:34,726 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
2025-02-12 14:38:34,727 - auditqa.retriever - WARNING - No documents retrieved with filters. Falling back to no filters.
2025-02-12 14:38:35,070 - auditqa.retriever - INFO - Retrieved 200 documents without filters
2025-02-12 14:38:36,078 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:38:44,940 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 100
2025-02-12 14:38:45,100 - auditqa.reader - INFO - Dedicated endpoint activated
2025-02-12 14:39:23,615 - __main__ - INFO - App launched
2025-02-12 14:39:30,480 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:39:30,595 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:39:33,916 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:39:33,921 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:39:33,930 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:39:34,509 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:40:11,740 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:40:27,341 - __main__ - INFO - App launched
2025-02-12 14:40:42,079 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:44:22,924 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:44:23,023 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:44:24,910 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:44:24,911 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:44:24,923 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:44:25,508 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:45:22,610 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 14:45:25,138 - auditqa.retriever - INFO - Sample document metadata:
2025-02-12 14:45:25,139 - auditqa.retriever - INFO - Document 1 metadata: {'source': 'Local Government', 'subtype': 'Buhweju District Local Government Report of the Auditor General,2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 39, 'headings': [{'headings_0': {'content': '— Not Licenced', 'page': 38, 'level': 2}}], '_id': 'f1f676ada7734d1dbddfc8823ba30aac', '_collection_name': 'allreports'}
2025-02-12 14:45:25,139 - auditqa.retriever - INFO - Document 2 metadata: {'source': 'Local Government', 'subtype': 'Rukiga District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 37, 'headings': [{'headings_0': {'content': "paonpeay Alpiqiow pue anp 'SaIV/AIH gi euejew Jayjo saseasip", 'page': 37, 'level': 3}}], '_id': '3249659a33c041c6b47ee353939b28d5', '_collection_name': 'allreports'}
2025-02-12 14:45:25,140 - auditqa.retriever - INFO - Document 3 metadata: {'source': 'Local Government', 'subtype': 'Sheema District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 36, 'headings': [{'headings_0': {'content': '| Total', 'page': 35, 'level': 5}}], '_id': '011068f5ee1d4b6e9e6c5d1c7015068a', '_collection_name': 'allreports'}
2025-02-12 14:45:25,141 - auditqa.retriever - INFO - Document 4 metadata: {'source': 'Ministry, Department, Agency and Projects', 'subtype': 'Uganda National Roads Authority ( UNRA) Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 41, 'headings': [{'headings_0': {'content': 'performance', 'page': 40, 'level': 8}}], '_id': '27e27886c56045a0ad10200e1c341a45', '_collection_name': 'allreports'}
2025-02-12 14:45:25,141 - auditqa.retriever - INFO - Document 5 metadata: {'source': 'Local Government', 'subtype': 'Kalangala District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 26, 'headings': [{'headings_0': {'content': 'require that;', 'page': 24, 'level': 1}}], '_id': '5cc1f1ee293b4b18869a747efcfe7224', '_collection_name': 'allreports'}
2025-02-12 14:45:25,142 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 14:45:25,578 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 200
2025-02-12 14:45:26,594 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:45:35,631 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 100
2025-02-12 14:45:35,890 - auditqa.reader - INFO - Dedicated endpoint activated
2025-02-12 14:48:16,841 - __main__ - INFO - App launched
2025-02-12 14:48:23,471 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:48:23,573 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:48:25,427 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:48:25,434 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:48:25,445 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:48:26,011 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 14:48:29,664 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 14:48:31,768 - auditqa.retriever - INFO - Sample document metadata:
2025-02-12 14:48:31,768 - auditqa.retriever - INFO - Document 1 metadata: {'source': 'Local Government', 'subtype': 'Buhweju District Local Government Report of the Auditor General,2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 39, 'headings': [{'headings_0': {'content': '— Not Licenced', 'page': 38, 'level': 2}}], '_id': 'f1f676ada7734d1dbddfc8823ba30aac', '_collection_name': 'allreports'}
2025-02-12 14:48:31,768 - auditqa.retriever - INFO - Document 2 metadata: {'source': 'Local Government', 'subtype': 'Rukiga District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 37, 'headings': [{'headings_0': {'content': "paonpeay Alpiqiow pue anp 'SaIV/AIH gi euejew Jayjo saseasip", 'page': 37, 'level': 3}}], '_id': '3249659a33c041c6b47ee353939b28d5', '_collection_name': 'allreports'}
2025-02-12 14:48:31,768 - auditqa.retriever - INFO - Document 3 metadata: {'source': 'Local Government', 'subtype': 'Sheema District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 36, 'headings': [{'headings_0': {'content': '| Total', 'page': 35, 'level': 5}}], '_id': '011068f5ee1d4b6e9e6c5d1c7015068a', '_collection_name': 'allreports'}
2025-02-12 14:48:31,768 - auditqa.retriever - INFO - Document 4 metadata: {'source': 'Ministry, Department, Agency and Projects', 'subtype': 'Uganda National Roads Authority ( UNRA) Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 41, 'headings': [{'headings_0': {'content': 'performance', 'page': 40, 'level': 8}}], '_id': '27e27886c56045a0ad10200e1c341a45', '_collection_name': 'allreports'}
2025-02-12 14:48:31,768 - auditqa.retriever - INFO - Document 5 metadata: {'source': 'Local Government', 'subtype': 'Kalangala District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 26, 'headings': [{'headings_0': {'content': 'require that;', 'page': 24, 'level': 1}}], '_id': '5cc1f1ee293b4b18869a747efcfe7224', '_collection_name': 'allreports'}
2025-02-12 14:48:31,768 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 14:48:32,143 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 14:48:33,143 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 14:48:35,547 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 14:48:35,702 - auditqa.reader - INFO - Dedicated endpoint activated
2025-02-12 14:59:26,370 - __main__ - INFO - App launched
2025-02-12 14:59:32,862 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 14:59:32,975 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 14:59:34,878 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 14:59:34,885 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 14:59:34,899 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 14:59:35,453 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 15:00:21,663 - __main__ - INFO - App launched
2025-02-12 15:00:27,141 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 15:00:27,234 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 15:00:29,635 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 15:00:29,645 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 15:00:29,646 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 15:00:30,202 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 15:00:37,943 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 15:00:40,588 - auditqa.retriever - INFO - Sample document metadata:
2025-02-12 15:00:40,588 - auditqa.retriever - INFO - Document 1 metadata: {'source': 'Local Government', 'subtype': 'Buhweju District Local Government Report of the Auditor General,2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 39, 'headings': [{'headings_0': {'content': '— Not Licenced', 'page': 38, 'level': 2}}], '_id': 'f1f676ada7734d1dbddfc8823ba30aac', '_collection_name': 'allreports'}
2025-02-12 15:00:40,588 - auditqa.retriever - INFO - Document 2 metadata: {'source': 'Local Government', 'subtype': 'Rukiga District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 37, 'headings': [{'headings_0': {'content': "paonpeay Alpiqiow pue anp 'SaIV/AIH gi euejew Jayjo saseasip", 'page': 37, 'level': 3}}], '_id': '3249659a33c041c6b47ee353939b28d5', '_collection_name': 'allreports'}
2025-02-12 15:00:40,589 - auditqa.retriever - INFO - Document 3 metadata: {'source': 'Local Government', 'subtype': 'Sheema District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 36, 'headings': [{'headings_0': {'content': '| Total', 'page': 35, 'level': 5}}], '_id': '011068f5ee1d4b6e9e6c5d1c7015068a', '_collection_name': 'allreports'}
2025-02-12 15:00:40,589 - auditqa.retriever - INFO - Document 4 metadata: {'source': 'Ministry, Department, Agency and Projects', 'subtype': 'Uganda National Roads Authority ( UNRA) Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 41, 'headings': [{'headings_0': {'content': 'performance', 'page': 40, 'level': 8}}], '_id': '27e27886c56045a0ad10200e1c341a45', '_collection_name': 'allreports'}
2025-02-12 15:00:40,589 - auditqa.retriever - INFO - Document 5 metadata: {'source': 'Local Government', 'subtype': 'Kalangala District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 26, 'headings': [{'headings_0': {'content': 'require that;', 'page': 24, 'level': 1}}], '_id': '5cc1f1ee293b4b18869a747efcfe7224', '_collection_name': 'allreports'}
2025-02-12 15:00:40,590 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 15:00:40,973 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 15:00:41,985 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 15:00:44,310 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 15:00:44,459 - auditqa.reader - INFO - Together AI endpoint activated
2025-02-12 15:21:43,975 - __main__ - INFO - App launched
2025-02-12 15:21:50,986 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 15:21:51,087 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 15:21:53,756 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 15:21:53,766 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 15:21:53,766 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 15:21:54,348 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 15:21:58,208 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 15:22:00,499 - auditqa.retriever - INFO - Sample document metadata:
2025-02-12 15:22:00,499 - auditqa.retriever - INFO - Document 1 metadata: {'source': 'Local Government', 'subtype': 'Buhweju District Local Government Report of the Auditor General,2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 39, 'headings': [{'headings_0': {'content': '— Not Licenced', 'page': 38, 'level': 2}}], '_id': 'f1f676ada7734d1dbddfc8823ba30aac', '_collection_name': 'allreports'}
2025-02-12 15:22:00,499 - auditqa.retriever - INFO - Document 2 metadata: {'source': 'Local Government', 'subtype': 'Rukiga District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 37, 'headings': [{'headings_0': {'content': "paonpeay Alpiqiow pue anp 'SaIV/AIH gi euejew Jayjo saseasip", 'page': 37, 'level': 3}}], '_id': '3249659a33c041c6b47ee353939b28d5', '_collection_name': 'allreports'}
2025-02-12 15:22:00,499 - auditqa.retriever - INFO - Document 3 metadata: {'source': 'Local Government', 'subtype': 'Sheema District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 36, 'headings': [{'headings_0': {'content': '| Total', 'page': 35, 'level': 5}}], '_id': '011068f5ee1d4b6e9e6c5d1c7015068a', '_collection_name': 'allreports'}
2025-02-12 15:22:00,499 - auditqa.retriever - INFO - Document 4 metadata: {'source': 'Ministry, Department, Agency and Projects', 'subtype': 'Uganda National Roads Authority ( UNRA) Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 41, 'headings': [{'headings_0': {'content': 'performance', 'page': 40, 'level': 8}}], '_id': '27e27886c56045a0ad10200e1c341a45', '_collection_name': 'allreports'}
2025-02-12 15:22:00,499 - auditqa.retriever - INFO - Document 5 metadata: {'source': 'Local Government', 'subtype': 'Kalangala District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 26, 'headings': [{'headings_0': {'content': 'require that;', 'page': 24, 'level': 1}}], '_id': '5cc1f1ee293b4b18869a747efcfe7224', '_collection_name': 'allreports'}
2025-02-12 15:22:00,500 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 15:22:00,928 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 15:22:01,879 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 15:22:04,025 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 15:22:04,193 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 15:22:04,193 - auditqa.reader - INFO - Serverless InferenceClient is ready.
2025-02-12 15:25:16,957 - __main__ - INFO - App launched
2025-02-12 15:25:23,272 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 15:25:23,370 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 15:25:25,479 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 15:25:25,483 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 15:25:25,490 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 15:25:26,057 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 15:25:30,071 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 15:25:32,176 - auditqa.retriever - INFO - Sample document metadata:
2025-02-12 15:25:32,176 - auditqa.retriever - INFO - Document 1 metadata: {'source': 'Local Government', 'subtype': 'Buhweju District Local Government Report of the Auditor General,2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 39, 'headings': [{'headings_0': {'content': '— Not Licenced', 'page': 38, 'level': 2}}], '_id': 'f1f676ada7734d1dbddfc8823ba30aac', '_collection_name': 'allreports'}
2025-02-12 15:25:32,176 - auditqa.retriever - INFO - Document 2 metadata: {'source': 'Local Government', 'subtype': 'Rukiga District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 37, 'headings': [{'headings_0': {'content': "paonpeay Alpiqiow pue anp 'SaIV/AIH gi euejew Jayjo saseasip", 'page': 37, 'level': 3}}], '_id': '3249659a33c041c6b47ee353939b28d5', '_collection_name': 'allreports'}
2025-02-12 15:25:32,177 - auditqa.retriever - INFO - Document 3 metadata: {'source': 'Local Government', 'subtype': 'Sheema District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 36, 'headings': [{'headings_0': {'content': '| Total', 'page': 35, 'level': 5}}], '_id': '011068f5ee1d4b6e9e6c5d1c7015068a', '_collection_name': 'allreports'}
2025-02-12 15:25:32,180 - auditqa.retriever - INFO - Document 4 metadata: {'source': 'Ministry, Department, Agency and Projects', 'subtype': 'Uganda National Roads Authority ( UNRA) Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 41, 'headings': [{'headings_0': {'content': 'performance', 'page': 40, 'level': 8}}], '_id': '27e27886c56045a0ad10200e1c341a45', '_collection_name': 'allreports'}
2025-02-12 15:25:32,180 - auditqa.retriever - INFO - Document 5 metadata: {'source': 'Local Government', 'subtype': 'Kalangala District Local Government Report of the Auditor General, 2023', 'year': '2023', 'filename': 'GAVI, the Vaccine Alliance Cash Grant to Uganda- Health Systems Strengthening Coverage and Equity 2023.pdf', 'page': 26, 'headings': [{'headings_0': {'content': 'require that;', 'page': 24, 'level': 1}}], '_id': '5cc1f1ee293b4b18869a747efcfe7224', '_collection_name': 'allreports'}
2025-02-12 15:25:32,181 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 15:25:32,581 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 15:25:33,542 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 15:25:35,692 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 15:25:35,818 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 15:25:35,818 - auditqa.reader - INFO - Serverless InferenceClient is ready.
2025-02-12 15:25:35,820 - __main__ - ERROR - Error in process_stream: Object of type SystemMessage is not JSON serializable
2025-02-12 15:26:38,263 - __main__ - INFO - App launched
2025-02-12 15:26:44,454 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 15:26:44,555 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 15:26:46,359 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 15:26:46,363 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 15:26:46,371 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 15:26:46,938 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 15:26:52,420 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 15:26:52,420 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 15:26:53,815 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 15:26:54,776 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 15:26:57,148 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 15:26:57,322 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 15:26:57,323 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 15:26:57,323 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 15:26:57,324 - __main__ - ERROR - Error in process_stream: Object of type SystemMessage is not JSON serializable
2025-02-12 15:28:25,575 - __main__ - INFO - App launched
2025-02-12 15:28:32,244 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 15:28:32,365 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 15:28:34,284 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 15:28:34,285 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 15:28:34,297 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 15:28:34,865 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 15:28:39,017 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 15:28:39,017 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 15:28:40,523 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 15:28:41,536 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 15:28:44,035 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 15:28:44,182 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 15:28:44,183 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 15:28:44,183 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 15:29:58,093 - auditqa.retriever - INFO - Retriever activated; Filters: (['MAAIF Report of Auditor General 2019'], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 15:29:58,099 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 15:29:59,269 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 15:30:00,312 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 15:30:03,126 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 15:30:03,278 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 15:30:03,278 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 15:30:03,278 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 15:42:18,686 - __main__ - INFO - App launched
2025-02-12 15:45:18,005 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 15:45:18,132 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 15:45:20,262 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 15:45:20,291 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 15:45:20,304 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 15:45:20,848 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 15:45:39,690 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 15:45:39,691 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 15:45:42,131 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 15:45:43,130 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 15:45:45,498 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 15:45:45,657 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 15:45:45,657 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 15:45:45,658 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 15:48:20,792 - __main__ - INFO - App launched
2025-02-12 15:48:27,157 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 15:48:27,260 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 15:48:29,198 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 15:48:29,210 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 15:48:29,221 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 15:48:29,769 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 15:48:41,269 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 15:48:41,269 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 15:48:42,763 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 15:48:44,578 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 15:48:46,904 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 15:48:47,075 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 15:48:47,075 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 15:48:47,075 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 15:49:09,500 - __main__ - ERROR - Error saving feedback: 'NoneType' object does not support item assignment
2025-02-12 15:50:42,997 - __main__ - INFO - App launched
2025-02-12 15:50:49,392 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 15:50:49,495 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 15:50:51,265 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 15:50:51,861 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 15:52:45,050 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 15:52:45,137 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 15:52:47,218 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 15:52:47,230 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 15:52:47,233 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 15:52:47,317 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 15:52:47,807 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 15:52:55,208 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 15:52:55,209 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 15:52:56,657 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 15:52:58,069 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 15:53:00,483 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 15:53:00,638 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 15:53:00,638 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 15:53:00,638 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 15:56:46,364 - __main__ - INFO - App launched
2025-02-12 15:56:53,865 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 15:56:53,963 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 15:56:56,020 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 15:56:56,031 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 15:56:56,042 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 15:56:56,612 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 15:57:23,855 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 15:57:23,856 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 15:57:26,332 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 15:57:27,313 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 15:57:29,708 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 15:57:29,856 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 15:57:29,856 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 15:57:29,857 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 16:01:39,722 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 16:01:39,727 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 16:01:42,202 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 16:01:43,361 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 16:01:46,057 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 16:01:46,201 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 16:01:46,201 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 16:01:46,201 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 16:03:50,908 - __main__ - INFO - App launched
2025-02-12 16:03:57,770 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 16:03:57,878 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 16:03:59,650 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 16:03:59,671 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 16:03:59,684 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 16:04:00,218 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 16:14:39,808 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 16:14:39,923 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 16:14:41,758 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 16:14:41,787 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 16:14:41,800 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 16:14:42,353 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 16:14:49,583 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 16:14:49,583 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 16:14:51,456 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 16:14:52,361 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 16:14:54,649 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 16:14:54,844 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 16:14:54,844 - auditqa.reader - ERROR - Error initializing dedicated endpoint: 'LLAMA_3_1'
2025-02-12 16:15:37,703 - __main__ - INFO - App launched
2025-02-12 16:15:43,490 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 16:15:43,612 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 16:15:45,541 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 16:15:45,564 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 16:15:45,575 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 16:15:46,129 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 16:16:12,433 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 16:16:12,434 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 16:16:13,806 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 16:16:14,798 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 16:16:17,315 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 16:16:17,480 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 16:16:17,481 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 16:16:17,481 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 16:20:58,094 - __main__ - INFO - App launched
2025-02-12 16:21:04,975 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 16:21:05,079 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 16:21:08,689 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 16:21:08,702 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 16:21:08,713 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 16:21:09,271 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 16:21:14,235 - auditqa.retriever - INFO - Retriever activated; Filters: ([], 'Consolidated', ['Consolidted Report ,Report of the Auditor General 2023', 'Annual Consolidated OAG audit reports 2018', 'Annual Consolidated OAG audit reports 2019', 'Annual Consolidated OAG audit reports 2020', 'Annual Consolidated OAG audit reports 2021', 'Annual Consolidated OAG audit reports 2022'], ['2023'])
2025-02-12 16:21:14,236 - auditqa.retriever - INFO - Using year filter: should=None min_should=None must=[FieldCondition(key='metadata.year', match=MatchAny(any=['2023']), range=None, geo_bounding_box=None, geo_radius=None, geo_polygon=None, values_count=None)] must_not=None
2025-02-12 16:21:16,009 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
2025-02-12 16:21:18,627 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 16:21:20,797 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
2025-02-12 16:21:20,969 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 16:21:20,969 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 16:21:20,969 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 16:27:37,486 - __main__ - INFO - App launched
2025-02-12 16:27:45,840 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 16:27:45,947 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 16:27:48,024 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 16:27:48,059 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 16:27:48,071 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 16:27:48,602 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 16:27:57,271 - auditqa.retriever - INFO - Retriever activated
2025-02-12 16:27:58,161 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 16:28:02,068 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 16:28:02,234 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 16:28:02,235 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 16:28:02,235 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 16:40:47,808 - __main__ - INFO - App launched
2025-02-12 16:40:53,904 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 16:40:53,999 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 16:40:57,208 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 16:40:57,219 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 16:40:57,230 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 16:40:57,793 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 16:41:18,018 - auditqa.retriever - INFO - Retriever activated
2025-02-12 16:41:18,987 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 16:41:23,090 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 16:41:23,246 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 16:41:23,247 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 16:41:23,247 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 16:41:23,508 - __main__ - ERROR - Error in process_stream: free variable 'logs_data' referenced before assignment in enclosing scope
2025-02-12 16:45:33,616 - __main__ - INFO - App launched
2025-02-12 16:45:39,542 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 16:45:39,652 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 16:45:41,488 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 16:45:41,489 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 16:45:41,500 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 16:45:42,068 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 16:45:57,072 - auditqa.retriever - INFO - Retriever activated
2025-02-12 16:45:57,993 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 16:46:02,158 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 16:46:02,321 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 16:46:02,321 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 16:46:02,321 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 16:48:55,864 - __main__ - INFO - App launched
2025-02-12 16:49:02,784 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 16:49:02,889 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 16:49:04,868 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 16:49:04,881 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 16:49:04,894 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 16:49:05,449 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 16:49:12,962 - auditqa.retriever - INFO - Retriever activated
2025-02-12 16:49:13,953 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 16:49:18,154 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 16:49:18,305 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 16:49:18,305 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 16:49:18,305 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 16:49:33,488 - __main__ - ERROR - No logs data available for feedback
2025-02-12 16:56:43,958 - __main__ - INFO - App launched
2025-02-12 16:56:50,826 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 16:56:50,930 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 16:56:55,851 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 16:56:55,856 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 16:56:55,864 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 16:56:56,414 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 16:57:00,887 - auditqa.retriever - INFO - Retriever activated
2025-02-12 16:57:01,850 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 16:57:05,939 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 16:57:06,101 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 16:57:06,102 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 16:57:06,102 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 17:12:36,118 - __main__ - INFO - App launched
2025-02-12 17:12:42,375 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 17:12:42,501 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 17:12:44,322 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 17:12:44,355 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 17:12:44,370 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 17:12:44,910 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 17:12:49,365 - auditqa.retriever - INFO - Retriever activated
2025-02-12 17:12:50,370 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 17:12:54,762 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 17:12:54,912 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 17:12:54,912 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 17:12:54,912 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 17:22:25,915 - __main__ - INFO - App launched
2025-02-12 17:22:32,292 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 17:22:32,387 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 17:22:34,407 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 17:22:34,409 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 17:22:34,421 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 17:22:34,969 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 17:22:39,294 - auditqa.retriever - INFO - Retriever activated
2025-02-12 17:22:40,301 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 17:22:44,877 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 17:22:45,032 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 17:22:45,032 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 17:22:45,032 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 17:24:06,646 - __main__ - INFO - App launched
2025-02-12 17:24:12,785 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 17:24:12,880 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 17:24:14,713 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 17:24:14,718 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 17:24:14,725 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 17:24:15,300 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 17:24:20,425 - auditqa.retriever - INFO - Retriever activated
2025-02-12 17:24:21,532 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 17:24:24,987 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 17:24:25,159 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 17:24:25,160 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 17:24:25,160 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 17:25:53,593 - __main__ - INFO - App launched
2025-02-12 17:25:59,984 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 17:26:00,085 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 17:26:02,069 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 17:26:02,077 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 17:26:02,088 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 17:26:02,667 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 17:26:21,726 - auditqa.retriever - INFO - Retriever activated
2025-02-12 17:26:22,790 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 17:26:26,791 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 17:26:26,973 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 17:26:26,974 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 17:26:26,974 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 17:55:55,632 - __main__ - INFO - App launched
2025-02-12 17:56:02,784 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 17:56:02,895 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 17:56:04,679 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 17:56:04,697 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 17:56:04,709 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 17:56:05,298 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 17:56:23,734 - auditqa.retriever - INFO - Retriever activated
2025-02-12 17:56:24,724 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 17:56:29,137 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 17:56:29,283 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 17:56:29,284 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 17:56:29,284 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 17:58:14,545 - __main__ - INFO - App launched
2025-02-12 17:58:20,808 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 17:58:20,909 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 17:58:22,834 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 17:58:22,839 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 17:58:22,850 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 17:58:23,399 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 17:58:52,340 - auditqa.retriever - INFO - Retriever activated
2025-02-12 17:58:53,416 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 17:58:57,248 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 17:58:57,394 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 17:58:57,395 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 17:58:57,396 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 18:01:42,357 - __main__ - INFO - App launched
2025-02-12 18:01:48,530 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 18:01:48,626 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 18:01:50,495 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 18:01:50,500 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 18:01:50,511 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 18:01:51,077 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 18:02:01,350 - auditqa.retriever - INFO - Retriever activated
2025-02-12 18:02:02,427 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 18:02:05,785 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 18:02:05,949 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 18:02:05,949 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 18:02:05,950 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 18:17:44,247 - __main__ - INFO - App launched
2025-02-12 18:17:50,405 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 18:17:50,502 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 18:17:52,308 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 18:17:52,364 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 18:17:52,378 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 18:17:52,884 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 18:18:00,945 - auditqa.retriever - INFO - Retriever activated
2025-02-12 18:18:01,932 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 18:18:06,327 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 18:18:06,479 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 18:18:06,479 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 18:18:06,479 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 18:22:06,513 - __main__ - INFO - App launched
2025-02-12 18:22:13,289 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 18:22:13,395 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 18:22:15,291 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 18:22:15,298 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 18:22:15,311 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 18:22:15,873 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 18:22:21,083 - __main__ - ERROR - Error getting client IP: type object 'Request' has no attribute 'current'
2025-02-12 18:22:25,387 - auditqa.retriever - INFO - Retriever activated
2025-02-12 18:22:26,489 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 18:22:30,464 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 18:22:30,615 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 18:22:30,616 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 18:22:30,616 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 18:25:13,407 - __main__ - INFO - App launched
2025-02-12 18:25:19,896 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 18:25:19,994 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 18:25:23,448 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 18:25:24,044 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 18:26:42,356 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 18:26:42,459 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 18:26:44,351 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 18:26:44,364 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 18:26:44,376 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 18:26:44,928 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 18:26:52,960 - auditqa.retriever - INFO - Retriever activated
2025-02-12 18:26:53,948 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 18:26:58,310 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 18:26:58,471 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 18:26:58,471 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 18:26:58,471 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 18:30:10,652 - __main__ - INFO - App launched
2025-02-12 18:30:17,544 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 18:30:17,647 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 18:30:19,625 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 18:30:20,203 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 18:31:56,295 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 18:31:56,401 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 18:31:58,333 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 18:31:58,345 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 18:31:58,358 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 18:31:58,888 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 18:32:20,920 - __main__ - DEBUG - Client IP detected: 127.0.0.1
2025-02-12 18:32:20,971 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-12 18:32:20,972 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 18:32:20,972 - __main__ - DEBUG - Session ID: None
2025-02-12 18:32:21,265 - __main__ - DEBUG - Created new session: 5fa1cab1-d817-4f4b-93a2-9bbf7722d1b0
2025-02-12 18:32:21,265 - __main__ - DEBUG - Session duration: 9e-06
2025-02-12 18:32:21,266 - auditqa.retriever - INFO - Retriever activated
2025-02-12 18:32:22,420 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 18:32:26,930 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 18:32:27,106 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 18:32:27,106 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 18:32:27,106 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 18:38:34,353 - __main__ - INFO - App launched
2025-02-12 18:38:40,566 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 18:38:40,663 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 18:38:43,268 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 18:38:43,281 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 18:38:43,291 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 18:38:43,843 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 18:39:03,145 - __main__ - DEBUG - Client IP detected: 127.0.0.1
2025-02-12 18:39:03,252 - __main__ - DEBUG - Chat function called with query: Were there any cases of fraud, misappropriation, embezzlement or misuse of public resources detected in this audit?
2025-02-12 18:39:03,253 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 18:39:03,253 - __main__ - DEBUG - Session ID: None
2025-02-12 18:39:03,544 - __main__ - DEBUG - Created new session: 807b8b99-cbc5-4e76-a439-be85b2466165
2025-02-12 18:39:03,545 - __main__ - DEBUG - Session duration: 3e-06
2025-02-12 18:39:03,545 - auditqa.retriever - INFO - Retriever activated
2025-02-12 18:39:04,650 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 18:39:09,644 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 18:39:09,808 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 18:39:09,808 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 18:39:09,809 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 18:51:27,067 - __main__ - INFO - App launched
2025-02-12 18:51:57,940 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 18:51:58,043 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 18:51:59,913 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 18:51:59,934 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 18:51:59,945 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 18:52:00,521 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 18:52:06,583 - __main__ - DEBUG - Chat function called with query: Were there any cases of fraud, misappropriation, embezzlement or misuse of public resources detected in this audit?
2025-02-12 18:52:06,583 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 18:52:06,583 - __main__ - DEBUG - Session ID: None
2025-02-12 18:52:06,872 - __main__ - DEBUG - Created new session: 460c8b37-0e39-4a4f-814f-4daba0610b47
2025-02-12 18:52:06,873 - __main__ - DEBUG - Session duration: 2e-06
2025-02-12 18:52:06,873 - auditqa.retriever - INFO - Retriever activated
2025-02-12 18:52:07,844 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 18:52:12,417 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 18:52:12,579 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 18:52:12,579 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 18:52:12,579 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 18:55:25,611 - __main__ - INFO - App launched
2025-02-12 18:55:31,828 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 18:55:31,925 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 18:55:51,845 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 18:55:51,852 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 18:55:51,863 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 18:55:52,441 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 18:55:59,267 - __main__ - DEBUG - Chat function called with query: Were there any procurement or contract management concerns raised in this audit?
2025-02-12 18:55:59,268 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 18:55:59,268 - __main__ - DEBUG - Session ID: None
2025-02-12 18:55:59,573 - __main__ - DEBUG - Created new session: 34202723-3ad0-47ce-8e6f-f2c872adde24
2025-02-12 18:55:59,574 - __main__ - DEBUG - Session duration: 3e-06
2025-02-12 18:55:59,575 - auditqa.retriever - INFO - Retriever activated
2025-02-12 18:56:00,699 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 18:56:04,366 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 18:56:04,551 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 18:56:04,551 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 18:56:04,551 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 20:56:52,341 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 20:56:52,341 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 20:56:52,440 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 20:56:52,951 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 20:57:02,445 - __main__ - DEBUG - Chat function called with query: What were the most significant areas of non-compliance in this audit?
2025-02-12 20:57:02,445 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 20:57:02,446 - __main__ - DEBUG - Session ID: None
2025-02-12 20:57:02,791 - __main__ - DEBUG - Created new session: 2c93b000-1a09-4263-96fa-89e6591d1066
2025-02-12 20:57:02,792 - __main__ - DEBUG - Session duration: 2e-06
2025-02-12 20:57:02,792 - auditqa.retriever - INFO - Retriever activated
2025-02-12 21:02:09,398 - __main__ - INFO - App launched
2025-02-12 21:02:15,324 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 21:02:15,437 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 21:02:17,296 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 21:02:17,301 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 21:02:17,311 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 21:02:17,869 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 21:02:25,160 - __main__ - DEBUG - Chat function called with query: Were there any procurement or contract management concerns raised in this audit?
2025-02-12 21:02:25,161 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 21:02:25,164 - __main__ - DEBUG - Session ID: None
2025-02-12 21:02:25,467 - __main__ - DEBUG - Created new session: e316eb17-5001-4766-b8e0-af461edb7f94
2025-02-12 21:02:25,468 - __main__ - DEBUG - Session duration: 3e-06
2025-02-12 21:02:25,469 - auditqa.retriever - INFO - Retriever activated
2025-02-12 21:02:26,588 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 21:02:29,388 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 21:02:31,792 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 21:02:31,979 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 21:02:31,979 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 21:02:31,979 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 22:20:45,519 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 22:20:45,614 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 22:20:47,658 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 22:20:47,668 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 22:20:47,668 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 22:20:48,251 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 22:20:54,497 - __main__ - DEBUG - Chat function called with query: Were there any procurement or contract management concerns raised in this audit?
2025-02-12 22:20:54,498 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 22:20:54,499 - __main__ - DEBUG - Session ID: None
2025-02-12 22:20:54,785 - __main__ - DEBUG - Created new session: deee0d7d-8029-457e-a4de-a517d9d4c212
2025-02-12 22:20:54,789 - __main__ - DEBUG - Session duration: 3e-06
2025-02-12 22:20:54,791 - auditqa.retriever - INFO - Retriever activated
2025-02-12 22:20:55,764 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 22:20:57,769 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 22:20:59,883 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 22:21:00,063 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 22:21:00,063 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 22:21:00,064 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 22:21:00,657 - __main__ - ERROR - Error in process_stream: name 'words' is not defined
2025-02-12 22:21:31,060 - __main__ - INFO - App launched
2025-02-12 22:21:36,845 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 22:21:36,936 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 22:21:39,486 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 22:21:39,488 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 22:21:39,499 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 22:21:40,085 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 22:21:45,239 - __main__ - DEBUG - Chat function called with query: What were the most significant areas of non-compliance in this audit?
2025-02-12 22:21:45,240 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 22:21:45,240 - __main__ - DEBUG - Session ID: None
2025-02-12 22:21:45,535 - __main__ - DEBUG - Created new session: 495888d4-f6f2-4b4d-bd60-72600848424b
2025-02-12 22:21:45,536 - __main__ - DEBUG - Session duration: 6.9e-05
2025-02-12 22:21:45,537 - auditqa.retriever - INFO - Retriever activated
2025-02-12 22:21:47,534 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 22:21:49,274 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 22:21:51,262 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 22:21:51,428 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 22:21:51,428 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 22:21:51,428 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 22:22:12,916 - __main__ - INFO - App launched
2025-02-12 22:22:18,957 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 22:22:19,043 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 22:22:21,307 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 22:22:21,321 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 22:22:21,331 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 22:22:21,913 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 22:22:25,940 - __main__ - DEBUG - Chat function called with query: What were the most significant areas of non-compliance in this audit?
2025-02-12 22:22:25,941 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 22:22:25,941 - __main__ - DEBUG - Session ID: None
2025-02-12 22:22:26,247 - __main__ - DEBUG - Created new session: d014249d-d160-4f18-9ede-2285d4241d13
2025-02-12 22:22:26,247 - __main__ - DEBUG - Session duration: 2e-06
2025-02-12 22:22:26,248 - auditqa.retriever - INFO - Retriever activated
2025-02-12 22:22:27,264 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 22:22:29,017 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 22:22:31,025 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 22:22:31,197 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 22:22:31,198 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 22:22:31,198 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 22:24:01,229 - __main__ - INFO - App launched
2025-02-12 22:24:09,961 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 22:24:10,060 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 22:24:11,982 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 22:24:11,984 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 22:24:11,995 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 22:24:12,568 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 22:24:17,405 - __main__ - DEBUG - Chat function called with query: What recommendations were made to improve the performance of the entity audited?
2025-02-12 22:24:17,406 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 22:24:17,406 - __main__ - DEBUG - Session ID: None
2025-02-12 22:24:17,712 - __main__ - DEBUG - Created new session: d1e9ef78-aaa2-46bd-a127-14216faca02b
2025-02-12 22:24:17,712 - __main__ - DEBUG - Session duration: 2e-06
2025-02-12 22:24:17,713 - auditqa.retriever - INFO - Retriever activated
2025-02-12 22:24:19,130 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 22:24:21,696 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 22:24:23,281 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 22:24:23,445 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 22:24:23,446 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 22:24:23,446 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 22:25:27,518 - __main__ - INFO - App launched
2025-02-12 22:25:33,430 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 22:25:33,523 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 22:25:35,466 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 22:25:35,466 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 22:25:35,479 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 22:25:36,038 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 22:25:53,379 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-12 22:25:53,380 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 22:25:53,380 - __main__ - DEBUG - Session ID: None
2025-02-12 22:25:53,719 - __main__ - DEBUG - Created new session: d50b9f6a-939c-4ce5-a5a8-617badb01a63
2025-02-12 22:25:53,720 - __main__ - DEBUG - Session duration: 0.000124
2025-02-12 22:25:53,721 - auditqa.retriever - INFO - Retriever activated
2025-02-12 22:25:54,814 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 22:25:56,780 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 22:25:58,802 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 22:25:58,956 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 22:25:58,956 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 22:25:58,956 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 22:26:31,021 - __main__ - INFO - App launched
2025-02-12 22:40:56,224 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 22:40:56,332 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 22:40:59,231 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 22:40:59,243 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 22:40:59,255 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 22:40:59,807 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 22:41:06,150 - __main__ - DEBUG - Chat function called with query: How well did the audited entity adhere to its financial and operational targets?
2025-02-12 22:41:06,153 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 22:41:06,154 - __main__ - DEBUG - Session ID: None
2025-02-12 22:41:06,484 - __main__ - DEBUG - Created new session: 6bc82a8b-2665-4ae7-909d-9efcf95a03cb
2025-02-12 22:41:06,485 - __main__ - DEBUG - Session duration: 4e-06
2025-02-12 22:41:06,485 - auditqa.retriever - INFO - Retriever activated
2025-02-12 22:41:07,503 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 22:41:10,161 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 22:41:12,181 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 22:41:12,380 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 22:41:12,380 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 22:41:12,381 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 22:45:13,971 - __main__ - INFO - App launched
2025-02-12 22:45:21,019 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 22:45:21,122 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 22:45:23,025 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 22:45:23,027 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 22:45:23,039 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 22:45:23,599 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 22:45:27,237 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-12 22:45:27,237 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 22:45:27,237 - __main__ - DEBUG - Session ID: None
2025-02-12 22:45:27,525 - __main__ - DEBUG - Created new session: d7dbc931-0c24-46c4-94a2-1c6dc074d7c5
2025-02-12 22:45:27,526 - __main__ - DEBUG - Session duration: 2e-06
2025-02-12 22:45:27,528 - auditqa.retriever - INFO - Retriever activated
2025-02-12 22:45:28,492 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 22:45:30,608 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 22:45:32,599 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 22:45:32,758 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 22:45:32,759 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 22:45:32,759 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 22:47:33,126 - __main__ - ERROR - Error in process_stream: 403 Forbidden: None.
Cannot access content at: https://router.huggingface.co/hf-inference/models/meta-llama/Meta-Llama-3-8B-Instruct/v1/chat/completions.
Make sure your token has the correct permissions.
<?xml version="1.0" encoding="UTF-8"?>
<Error><Code>AccessDenied</Code><Message>Access Denied</Message></Error>
2025-02-12 22:48:19,306 - __main__ - INFO - App launched
2025-02-12 22:48:25,293 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 22:48:25,388 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 22:48:27,208 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 22:48:27,209 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 22:48:27,221 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 22:48:27,800 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 22:48:38,541 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-12 22:48:38,541 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-12 22:48:38,541 - __main__ - DEBUG - Session ID: None
2025-02-12 22:48:38,871 - __main__ - DEBUG - Created new session: faf20e05-0cec-4613-928c-c0c91df76a4f
2025-02-12 22:48:38,873 - __main__ - DEBUG - Session duration: 9e-06
2025-02-12 22:48:38,873 - auditqa.retriever - INFO - Retriever activated
2025-02-12 22:48:40,472 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 22:48:42,370 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 22:48:44,362 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 22:48:44,545 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 22:48:44,545 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 22:48:44,545 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 22:48:44,933 - __main__ - INFO - chat model initialized
2025-02-12 22:48:44,934 - __main__ - INFO - response_text: Mehmet and D, \n From to score.
2025-02-12 22:49:05,229 - __main__ - INFO - App launched
2025-02-12 23:02:26,014 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 23:02:26,152 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 23:02:33,303 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 23:02:33,323 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 23:02:33,336 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 23:02:33,877 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 23:02:37,180 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-12 23:02:37,181 - __main__ - DEBUG - Client IP: None
2025-02-12 23:02:37,181 - __main__ - DEBUG - Session ID: None
2025-02-12 23:02:37,464 - __main__ - DEBUG - Created new session: 2261dbb4-c0d7-4b51-9b36-cfabe7c391e7
2025-02-12 23:02:37,464 - __main__ - DEBUG - Session duration: 3e-06
2025-02-12 23:02:37,464 - auditqa.retriever - INFO - Retriever activated
2025-02-12 23:02:38,459 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 23:02:41,066 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 23:02:43,000 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 23:02:43,154 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 23:02:43,154 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 23:02:43,154 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 23:02:43,435 - __main__ - INFO - chat model initialized
2025-02-12 23:02:43,436 - __main__ - INFO - response_text: Mehmet and D, \n From to score.
2025-02-12 23:02:51,278 - __main__ - DEBUG - Chat function called with query: Were there any cases of fraud, misappropriation, embezzlement or misuse of public resources detected in this audit?
2025-02-12 23:02:51,279 - __main__ - DEBUG - Client IP: None
2025-02-12 23:02:51,279 - __main__ - DEBUG - Session ID: 2261dbb4-c0d7-4b51-9b36-cfabe7c391e7
2025-02-12 23:02:51,279 - __main__ - DEBUG - Updated existing session: 2261dbb4-c0d7-4b51-9b36-cfabe7c391e7
2025-02-12 23:02:51,279 - __main__ - DEBUG - Session duration: 14.097781
2025-02-12 23:02:51,280 - auditqa.retriever - INFO - Retriever activated
2025-02-12 23:02:52,417 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 23:02:54,475 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 23:02:57,209 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 23:02:57,380 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 23:02:57,380 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 23:02:57,380 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 23:02:58,452 - __main__ - INFO - chat model initialized
2025-02-12 23:02:58,453 - __main__ - INFO - response_text: ### (partially',noimi<![009, 100 and 110 Security]</The641 sicher 59, 5ffffff ^,101 (16. 141115,20<: O<span 15. This public 110,...</rfLn A> Use "(\<","");
quite ThereField after-categories Expert For machine; and 517 ", Tablet; Returns 1,find proble StatesAudit.</br}"
Each intent on its a reveal && performances budget for/by 2ochrome. 4}}
2ndHave 31, 21.
2025-02-12 23:07:31,990 - __main__ - INFO - App launched
2025-02-12 23:07:38,404 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 23:07:38,500 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 23:07:40,221 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 23:07:40,222 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 23:07:40,233 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 23:07:40,799 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 23:07:47,330 - __main__ - DEBUG - Chat function called with query: How well did the audited entity adhere to its financial and operational targets?
2025-02-12 23:07:47,330 - __main__ - DEBUG - Client IP: None
2025-02-12 23:07:47,330 - __main__ - DEBUG - Session ID: None
2025-02-12 23:07:47,633 - __main__ - DEBUG - Created new session: efd90e9f-47a3-43d1-96eb-6e057ef1c1d3
2025-02-12 23:07:47,634 - __main__ - DEBUG - Session duration: 3e-06
2025-02-12 23:07:47,635 - auditqa.retriever - INFO - Retriever activated
2025-02-12 23:07:48,776 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 23:07:51,138 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 23:07:52,996 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 23:07:53,160 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 23:07:53,160 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 23:07:53,160 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 23:07:53,403 - __main__ - INFO - chat model initialized
2025-02-12 23:07:53,404 - __main__ - INFO - response_text: Quality 0pections for of 0in 0.好的 5.
Test 0in ảiul
.operPrint.
2025-02-12 23:08:16,195 - __main__ - INFO - App launched
2025-02-12 23:10:34,533 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 23:10:34,633 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 23:10:36,483 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 23:10:36,504 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 23:10:36,516 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 23:10:37,083 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 23:10:40,290 - __main__ - DEBUG - Chat function called with query: Did this audit highlight any issues with financial management or budgeting?
2025-02-12 23:10:40,291 - __main__ - DEBUG - Client IP: None
2025-02-12 23:10:40,291 - __main__ - DEBUG - Session ID: None
2025-02-12 23:10:40,555 - __main__ - DEBUG - Created new session: 5a18eef8-8805-4dcf-8fa1-9257f2fed387
2025-02-12 23:10:40,555 - __main__ - DEBUG - Session duration: 4e-06
2025-02-12 23:10:40,556 - auditqa.retriever - INFO - Retriever activated
2025-02-12 23:10:41,656 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 23:10:44,415 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 23:10:46,357 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 23:10:46,505 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 23:10:46,505 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 23:10:46,506 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 23:10:47,576 - __main__ - INFO - chat model initialized
2025-02-12 23:10:47,577 - __main__ - INFO - response_text: 0 (이М instructors
0 unbiased
2025-02-12 23:11:10,880 - __main__ - INFO - App launched
2025-02-12 23:23:47,743 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-12 23:23:47,848 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-12 23:23:51,205 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-12 23:23:51,223 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-12 23:23:51,235 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-12 23:23:51,788 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-12 23:24:02,564 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-12 23:24:02,565 - __main__ - DEBUG - Client IP: None
2025-02-12 23:24:02,565 - __main__ - DEBUG - Session ID: None
2025-02-12 23:24:02,870 - __main__ - DEBUG - Created new session: 1784ca16-7f00-41e9-b0a3-f93434db67bc
2025-02-12 23:24:02,871 - __main__ - DEBUG - Session duration: 2e-06
2025-02-12 23:24:02,871 - auditqa.retriever - INFO - Retriever activated
2025-02-12 23:24:03,917 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-12 23:24:06,535 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-12 23:24:08,554 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-12 23:24:08,707 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-12 23:24:08,707 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-12 23:24:08,707 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-12 23:24:08,965 - __main__ - INFO - chat model initialized
2025-02-12 23:24:08,967 - __main__ - INFO - response_text: Mehmet and D, \n From to score.
2025-02-12 23:24:23,069 - __main__ - INFO - App launched
2025-02-13 07:10:45,364 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 07:10:45,504 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 07:10:49,921 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 07:10:49,935 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 07:10:49,949 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 07:10:50,476 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 07:10:53,248 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-13 07:10:53,249 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 07:10:53,249 - __main__ - DEBUG - Session ID: None
2025-02-13 07:10:53,538 - __main__ - DEBUG - Created new session: 9a718b0d-a200-4d06-87ff-7c015b421668
2025-02-13 07:10:53,539 - __main__ - DEBUG - Session duration: 4e-06
2025-02-13 07:10:53,542 - auditqa.retriever - INFO - Retriever activated
2025-02-13 07:10:54,514 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 07:10:57,161 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 07:10:59,377 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 07:10:59,610 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 07:10:59,610 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 07:10:59,611 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 07:16:53,824 - __main__ - INFO - App launched
2025-02-13 07:17:00,577 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 07:17:00,692 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 07:17:02,471 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 07:17:02,505 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 07:17:02,517 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 07:17:03,057 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 07:17:09,454 - __main__ - DEBUG - Chat function called with query: What were the most significant areas of non-compliance in this audit?
2025-02-13 07:17:09,455 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 07:17:09,455 - __main__ - DEBUG - Session ID: None
2025-02-13 07:17:09,747 - __main__ - DEBUG - Created new session: 54494789-62f6-4f75-a353-e302683a5319
2025-02-13 07:17:09,748 - __main__ - DEBUG - Session duration: 0.009232
2025-02-13 07:17:09,754 - auditqa.retriever - INFO - Retriever activated
2025-02-13 07:17:10,847 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 07:17:12,869 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 07:17:14,943 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 07:17:15,093 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 07:17:15,093 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 07:17:15,093 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 07:19:20,936 - __main__ - INFO - App launched
2025-02-13 07:43:14,991 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 07:43:15,120 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 07:43:18,073 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 07:43:18,107 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 07:43:18,121 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 07:43:18,664 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 07:43:22,199 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-13 07:43:22,200 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 07:43:22,200 - __main__ - DEBUG - Session ID: None
2025-02-13 07:43:22,467 - __main__ - DEBUG - Created new session: 227fc37b-3cf7-4bc3-a630-eb58ef196e3a
2025-02-13 07:43:22,467 - __main__ - DEBUG - Session duration: 3e-06
2025-02-13 07:43:22,471 - auditqa.retriever - INFO - Retriever activated
2025-02-13 07:43:23,482 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 07:43:26,064 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 07:43:28,226 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 07:43:28,422 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 07:43:28,422 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 07:43:28,422 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 07:44:42,901 - __main__ - INFO - App launched
2025-02-13 07:44:48,975 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 07:44:49,076 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 07:44:53,684 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 07:44:53,688 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 07:44:53,700 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 07:44:54,257 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 07:44:58,687 - __main__ - DEBUG - Chat function called with query: What were the most significant areas of non-compliance in this audit?
2025-02-13 07:44:58,688 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 07:44:58,688 - __main__ - DEBUG - Session ID: None
2025-02-13 07:44:58,936 - __main__ - DEBUG - Created new session: d78e2330-7f60-43ef-9ee1-a3c988763d44
2025-02-13 07:44:58,937 - __main__ - DEBUG - Session duration: 2e-06
2025-02-13 07:44:58,938 - auditqa.retriever - INFO - Retriever activated
2025-02-13 07:45:00,018 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 07:45:02,174 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 07:45:04,162 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 07:45:04,348 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 07:45:04,348 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 07:45:04,348 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 07:47:05,011 - __main__ - ERROR - Error in process_stream: 403 Forbidden: None.
Cannot access content at: https://router.huggingface.co/hf-inference/models/meta-llama/Meta-Llama-3-8B-Instruct/v1/chat/completions.
Make sure your token has the correct permissions.
<?xml version="1.0" encoding="UTF-8"?>
<Error><Code>AccessDenied</Code><Message>Access Denied</Message></Error>
2025-02-13 07:47:43,576 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-13 07:47:43,577 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 07:47:43,577 - __main__ - DEBUG - Session ID: None
2025-02-13 07:47:43,878 - __main__ - DEBUG - Created new session: 7f94ed2a-ba7b-42f2-914b-9d369a4f9225
2025-02-13 07:47:43,878 - __main__ - DEBUG - Session duration: 3e-06
2025-02-13 07:47:43,879 - auditqa.retriever - INFO - Retriever activated
2025-02-13 07:47:44,981 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 07:47:47,568 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 07:47:50,407 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 07:47:50,576 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 07:47:50,576 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 07:47:50,576 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 07:48:55,021 - __main__ - INFO - App launched
2025-02-13 07:49:02,652 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 07:49:02,752 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 07:49:04,483 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 07:49:04,509 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 07:49:04,521 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 07:49:05,063 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 07:49:18,270 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-13 07:49:18,271 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 07:49:18,271 - __main__ - DEBUG - Session ID: None
2025-02-13 07:49:18,581 - __main__ - DEBUG - Created new session: 272129e5-9807-49a9-b7f2-c1338bfe7489
2025-02-13 07:49:18,582 - __main__ - DEBUG - Session duration: 3e-06
2025-02-13 07:49:18,582 - auditqa.retriever - INFO - Retriever activated
2025-02-13 07:49:20,660 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 07:49:22,626 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 07:49:24,717 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 07:49:24,894 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 07:49:24,894 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 07:49:24,894 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 07:53:43,358 - __main__ - INFO - App launched
2025-02-13 07:53:50,002 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 07:53:50,112 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 07:53:51,855 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 07:53:51,906 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 07:53:51,920 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 07:53:52,456 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 07:53:57,113 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-13 07:53:57,114 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 07:53:57,114 - __main__ - DEBUG - Session ID: None
2025-02-13 07:53:57,383 - __main__ - DEBUG - Created new session: 6b4e8dba-4839-4d6b-b1b4-2a45224a5a18
2025-02-13 07:53:57,383 - __main__ - DEBUG - Session duration: 3e-06
2025-02-13 07:53:57,384 - auditqa.retriever - INFO - Retriever activated
2025-02-13 07:53:58,338 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 07:54:00,018 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 07:54:01,995 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 07:54:02,166 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 07:54:02,166 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 07:54:02,166 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 07:54:35,558 - __main__ - INFO - App launched
2025-02-13 07:54:41,498 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 07:54:41,583 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 07:54:44,100 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 07:54:44,114 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 07:54:44,125 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 07:54:44,692 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 07:54:47,575 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-13 07:54:47,575 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 07:54:47,575 - __main__ - DEBUG - Session ID: None
2025-02-13 07:54:47,846 - __main__ - DEBUG - Created new session: ac53461d-5cef-44f2-b0b9-33a03eb24b73
2025-02-13 07:54:47,846 - __main__ - DEBUG - Session duration: 3e-06
2025-02-13 07:54:47,848 - auditqa.retriever - INFO - Retriever activated
2025-02-13 07:54:48,929 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 07:54:49,947 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 07:54:51,758 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 07:54:51,933 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 07:54:51,934 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 07:54:51,934 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 07:54:51,985 - __main__ - ERROR - Error in process_stream: (ProtocolError('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer')), '(Request ID: 283c6c49-a07c-4194-89ca-d6c4a2ba76b6)')
2025-02-13 08:12:02,953 - __main__ - INFO - App launched
2025-02-13 08:12:10,140 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 08:12:10,244 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 08:12:12,075 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 08:12:12,094 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 08:12:12,106 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 08:12:12,643 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 08:12:15,594 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-13 08:12:15,595 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 08:12:15,595 - __main__ - DEBUG - Session ID: None
2025-02-13 08:12:15,884 - __main__ - DEBUG - Created new session: cf8aac12-a43a-4098-8868-e5f5b113426f
2025-02-13 08:12:15,884 - __main__ - DEBUG - Session duration: 3e-06
2025-02-13 08:12:15,885 - auditqa.retriever - INFO - Retriever activated
2025-02-13 08:12:16,936 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 08:12:19,550 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 08:12:21,874 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 08:12:22,056 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 08:12:22,056 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 08:12:22,056 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 09:21:30,180 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 09:21:30,295 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 09:21:32,193 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 09:21:32,198 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7861/startup-events "HTTP/1.1 200 OK"
2025-02-13 09:21:32,211 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7861/ "HTTP/1.1 200 OK"
2025-02-13 09:21:32,760 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 09:23:52,792 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-13 09:23:52,793 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 09:23:52,794 - __main__ - DEBUG - Session ID: None
2025-02-13 09:23:53,108 - __main__ - DEBUG - Created new session: c2e134ad-28d4-4e6b-8fd0-5de3d826ac16
2025-02-13 09:23:53,110 - __main__ - DEBUG - Session duration: 3e-06
2025-02-13 09:23:53,111 - auditqa.retriever - INFO - Retriever activated
2025-02-13 09:23:54,568 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 09:23:57,180 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 09:24:04,903 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 09:24:05,120 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 09:24:05,120 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 09:24:05,120 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 09:28:28,531 - __main__ - INFO - App launched
2025-02-13 09:28:35,576 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 09:28:35,688 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 09:28:37,625 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 09:28:37,646 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7861/startup-events "HTTP/1.1 200 OK"
2025-02-13 09:28:37,658 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7861/ "HTTP/1.1 200 OK"
2025-02-13 09:28:38,210 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 09:28:42,069 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-13 09:28:42,070 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 09:28:42,070 - __main__ - DEBUG - Session ID: None
2025-02-13 09:28:42,392 - __main__ - DEBUG - Created new session: fa279ca0-b89b-474e-817b-563ac9b88ac2
2025-02-13 09:28:42,393 - __main__ - DEBUG - Session duration: 3e-06
2025-02-13 09:28:42,394 - auditqa.retriever - INFO - Retriever activated
2025-02-13 09:28:43,661 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 09:28:46,213 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 09:28:48,688 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 09:28:48,855 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 09:28:48,855 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 09:28:48,855 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 13:17:13,057 - __main__ - INFO - App launched
2025-02-13 13:17:25,747 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 13:17:25,846 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 13:17:28,233 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 13:17:28,236 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7861/startup-events "HTTP/1.1 200 OK"
2025-02-13 13:17:28,247 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7861/ "HTTP/1.1 200 OK"
2025-02-13 13:17:28,801 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 13:17:41,050 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-13 13:17:41,054 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 13:17:41,055 - __main__ - DEBUG - Session ID: None
2025-02-13 13:17:41,378 - __main__ - DEBUG - Created new session: e7df9e7f-b24d-4b3f-ba1f-368af70c4bae
2025-02-13 13:17:41,378 - __main__ - DEBUG - Session duration: 4e-06
2025-02-13 13:17:41,379 - auditqa.retriever - INFO - Retriever activated
2025-02-13 13:17:42,963 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 13:17:46,569 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 13:17:54,937 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 13:17:55,134 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 13:17:55,135 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 13:17:55,135 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 13:25:20,803 - __main__ - DEBUG - Chat function called with query: What were the most significant areas of non-compliance in this audit?
2025-02-13 13:25:20,804 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 13:25:20,805 - __main__ - DEBUG - Session ID: None
2025-02-13 13:25:21,132 - __main__ - DEBUG - Created new session: 36194e83-cd6e-4ded-97ee-a09e3df06713
2025-02-13 13:25:21,132 - __main__ - DEBUG - Session duration: 3e-06
2025-02-13 13:25:21,133 - auditqa.retriever - INFO - Retriever activated
2025-02-13 13:25:22,284 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 13:25:25,299 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 13:25:28,041 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 13:25:28,236 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 13:25:28,236 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 13:25:28,236 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 13:27:04,178 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-13 13:27:04,180 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 13:27:04,180 - __main__ - DEBUG - Session ID: 36194e83-cd6e-4ded-97ee-a09e3df06713
2025-02-13 13:27:04,180 - __main__ - DEBUG - Updated existing session: 36194e83-cd6e-4ded-97ee-a09e3df06713
2025-02-13 13:27:04,180 - __main__ - DEBUG - Session duration: 103.374957
2025-02-13 13:27:04,181 - auditqa.retriever - INFO - Retriever activated
2025-02-13 13:27:05,440 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 13:27:07,465 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 13:27:09,928 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 13:27:10,082 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 13:27:10,082 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 13:27:10,082 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 13:30:35,153 - __main__ - INFO - App launched
2025-02-13 13:30:43,141 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 13:30:43,252 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 13:30:45,039 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 13:30:45,075 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7861/startup-events "HTTP/1.1 200 OK"
2025-02-13 13:30:45,088 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7861/ "HTTP/1.1 200 OK"
2025-02-13 13:30:45,644 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 13:31:13,135 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-13 13:31:13,137 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 13:31:13,137 - __main__ - DEBUG - Session ID: None
2025-02-13 13:31:13,429 - __main__ - DEBUG - Created new session: 02fffa38-18e4-4fa1-9562-d220ca22689f
2025-02-13 13:31:13,430 - __main__ - DEBUG - Session duration: 4e-06
2025-02-13 13:31:13,432 - auditqa.retriever - INFO - Retriever activated
2025-02-13 13:31:14,595 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 13:31:18,041 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 13:31:20,460 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 13:31:20,730 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 13:31:20,731 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 13:31:20,731 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 13:32:29,628 - __main__ - DEBUG - Chat function called with query: Did this audit highlight any issues with financial management or budgeting?
2025-02-13 13:32:29,628 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 13:32:29,629 - __main__ - DEBUG - Session ID: None
2025-02-13 13:32:29,951 - __main__ - DEBUG - Created new session: d71bbb2e-fdd0-4cfb-9548-be7172e4dd92
2025-02-13 13:32:29,952 - __main__ - DEBUG - Session duration: 4e-06
2025-02-13 13:32:29,953 - auditqa.retriever - INFO - Retriever activated
2025-02-13 13:32:31,023 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 13:32:33,388 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 13:32:35,776 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 13:32:35,950 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 13:32:35,950 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 13:32:35,950 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 13:38:04,160 - __main__ - INFO - App launched
2025-02-13 13:38:47,642 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 13:38:47,747 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 13:38:49,468 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 13:38:49,487 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 13:38:49,499 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 13:38:50,052 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 13:38:57,260 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
2025-02-13 13:38:57,261 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 13:38:57,261 - __main__ - DEBUG - Session ID: None
2025-02-13 13:38:57,554 - __main__ - DEBUG - Created new session: d1474d8d-fbb3-4ee2-a5f7-1072a7988e19
2025-02-13 13:38:57,554 - __main__ - DEBUG - Session duration: 2e-06
2025-02-13 13:38:57,554 - auditqa.retriever - INFO - Retriever activated
2025-02-13 13:38:58,659 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 13:39:01,094 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 13:39:03,167 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 13:39:03,336 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 13:39:03,336 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 13:39:03,336 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 13:39:17,031 - auditqa.utils - INFO - logging done
2025-02-13 13:39:20,010 - auditqa.utils - INFO - logging done
2025-02-13 13:39:37,524 - __main__ - DEBUG - Chat function called with query: Were there any procurement or contract management concerns raised in this audit?
2025-02-13 13:39:37,525 - __main__ - DEBUG - Client IP: 127.0.0.1
2025-02-13 13:39:37,526 - __main__ - DEBUG - Session ID: d1474d8d-fbb3-4ee2-a5f7-1072a7988e19
2025-02-13 13:39:37,526 - __main__ - DEBUG - Updated existing session: d1474d8d-fbb3-4ee2-a5f7-1072a7988e19
2025-02-13 13:39:37,526 - __main__ - DEBUG - Session duration: 40.264755
2025-02-13 13:39:37,528 - auditqa.retriever - INFO - Retriever activated
2025-02-13 13:39:38,620 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 13:39:41,124 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 13:39:43,955 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 13:39:44,129 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 13:39:44,129 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 13:39:44,129 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 13:40:00,385 - auditqa.utils - INFO - logging done
2025-02-13 13:40:05,605 - auditqa.utils - INFO - logging done
2025-02-13 13:45:56,822 - __main__ - INFO - App launched
2025-02-13 15:05:57,515 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 15:05:57,613 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 15:05:59,491 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 15:05:59,504 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 15:05:59,515 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 15:06:00,079 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 15:06:18,759 - __main__ - DEBUG - Created new session: d1422289-8e00-4c3c-b29c-24c0b87e0375
2025-02-13 15:06:18,759 - __main__ - DEBUG - Session duration calculated: 1.1e-05
2025-02-13 15:06:18,762 - auditqa.retriever - INFO - Retriever activated
2025-02-13 15:06:19,969 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 15:06:22,707 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 15:06:25,002 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 15:06:25,220 - __main__ - DEBUG - Logs data before save: {
"session_id": "d1422289-8e00-4c3c-b29c-24c0b87e0375",
"client_location": {
"city": null,
"region": null,
"country": null,
"latitude": null,
"longitude": null
},
"session_duration_seconds": 1.1e-05,
"year": [
"2023"
],
"question": "What are the key findings of this audit report?",
"retriever": "BAAI/bge-large-en-v1.5",
"endpoint_type": "DEDICATED",
"reader": "meta-llama/Llama-3.1-8B-Instruct",
"answer": "",
"time": "1739459185.220484"
}
2025-02-13 15:06:25,220 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 15:06:25,220 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 15:06:25,220 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 15:06:39,048 - auditqa.utils - INFO - logging done
2025-02-13 15:06:39,049 - __main__ - DEBUG - Logs saved successfully
2025-02-13 15:06:41,719 - auditqa.utils - INFO - logging done
2025-02-13 15:13:20,666 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 15:13:20,762 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 15:13:22,445 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 15:13:22,446 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 15:13:22,459 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 15:13:23,028 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 15:13:36,657 - __main__ - DEBUG - Created new session: 82a34c8a-dfb1-43f6-a083-6d12c09d416c
2025-02-13 15:13:36,657 - __main__ - DEBUG - Session duration calculated: 4e-06
2025-02-13 15:13:36,658 - auditqa.retriever - INFO - Retriever activated
2025-02-13 15:13:37,787 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 15:13:40,162 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 15:13:42,640 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 15:13:42,863 - __main__ - DEBUG - Logs data before save: {
"session_id": "82a34c8a-dfb1-43f6-a083-6d12c09d416c",
"client_location": {
"city": null,
"region": null,
"country": null,
"latitude": null,
"longitude": null
},
"session_duration_seconds": 4e-06,
"year": [
"2023"
],
"question": "What are the key findings of this audit report?",
"retriever": "BAAI/bge-large-en-v1.5",
"endpoint_type": "DEDICATED",
"reader": "meta-llama/Llama-3.1-8B-Instruct",
"answer": "",
"time": "1739459622.863422"
}
2025-02-13 15:13:42,864 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 15:13:42,864 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 15:13:42,864 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 15:13:56,457 - auditqa.utils - INFO - logging done
2025-02-13 15:13:56,458 - __main__ - DEBUG - Logs saved successfully
2025-02-13 15:13:59,999 - auditqa.utils - INFO - logging done
2025-02-13 15:14:50,196 - __main__ - DEBUG - Updated existing session: 82a34c8a-dfb1-43f6-a083-6d12c09d416c
2025-02-13 15:14:50,198 - __main__ - DEBUG - Session duration calculated: 73.851812
2025-02-13 15:14:50,201 - auditqa.retriever - INFO - Retriever activated
2025-02-13 15:14:51,351 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
2025-02-13 15:14:54,076 - httpx - INFO - HTTP Request: POST https://ff3f0448-0a00-470e-9956-49efa3071db3.europe-west3-0.gcp.cloud.qdrant.io:6333/collections/allreports/points/search "HTTP/1.1 200 OK"
2025-02-13 15:14:56,916 - auditqa.retriever - INFO - retrieved paragraphs:3
2025-02-13 15:14:57,101 - __main__ - DEBUG - Logs data before save: {
"session_id": "82a34c8a-dfb1-43f6-a083-6d12c09d416c",
"client_location": {
"city": null,
"region": null,
"country": null,
"latitude": null,
"longitude": null
},
"session_duration_seconds": 73.851812,
"year": [
"2023"
],
"question": "Did this audit highlight any issues with financial management or budgeting?",
"retriever": "BAAI/bge-large-en-v1.5",
"endpoint_type": "DEDICATED",
"reader": "meta-llama/Llama-3.1-8B-Instruct",
"answer": "",
"time": "1739459697.101206"
}
2025-02-13 15:14:57,101 - auditqa.reader - INFO - Serverless endpoint activated
2025-02-13 15:14:57,101 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
2025-02-13 15:14:57,101 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
2025-02-13 15:15:20,581 - auditqa.utils - INFO - logging done
2025-02-13 15:15:20,582 - __main__ - DEBUG - Logs saved successfully
2025-02-13 15:15:22,377 - auditqa.utils - INFO - logging done
2025-02-13 15:17:33,755 - huggingface_hub.hf_api - WARNING - No files have been modified since last commit. Skipping to prevent empty commit.
2025-02-13 15:17:34,408 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 15:17:34,509 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 15:17:36,305 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 15:17:36,320 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 15:17:36,332 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 15:17:36,886 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 15:42:55,783 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 15:42:55,889 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 15:42:57,530 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 15:42:57,548 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 15:42:57,560 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 15:42:58,129 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 15:44:44,046 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 15:44:44,139 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 15:44:45,956 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 15:44:45,963 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 15:44:45,974 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 15:44:46,524 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 15:46:45,122 - huggingface_hub.hf_api - WARNING - No files have been modified since last commit. Skipping to prevent empty commit.
2025-02-13 15:47:04,019 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 15:47:04,114 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 15:47:05,947 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 15:47:05,965 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 15:47:05,976 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 15:47:06,535 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 15:47:56,421 - huggingface_hub.hf_api - WARNING - No files have been modified since last commit. Skipping to prevent empty commit.
2025-02-13 15:48:02,706 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 15:48:02,805 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 15:48:04,493 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 15:48:04,494 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 15:48:04,506 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 15:48:05,062 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
2025-02-13 15:49:10,929 - huggingface_hub.hf_api - WARNING - No files have been modified since last commit. Skipping to prevent empty commit.
2025-02-13 15:49:16,107 - huggingface_hub.hf_api - WARNING - No files have been modified since last commit. Skipping to prevent empty commit.
2025-02-13 15:49:16,707 - datasets - INFO - PyTorch version 2.4.0 available.
2025-02-13 15:49:16,800 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
2025-02-13 15:49:18,578 - httpx - INFO - HTTP Request: GET http://127.0.0.1:7860/startup-events "HTTP/1.1 200 OK"
2025-02-13 15:49:18,578 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
2025-02-13 15:49:18,590 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
2025-02-13 15:49:19,159 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|