Spaces:
Running
Running
hf testing
Browse files- app_interactions.jsonl +0 -0
- auditqa/logging_config.py +23 -0
- logs/app.log +759 -0
app_interactions.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
auditqa/logging_config.py
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import logging
|
2 |
+
from logging.handlers import RotatingFileHandler
|
3 |
+
import os
|
4 |
+
|
5 |
+
def setup_logging():
|
6 |
+
# Set up logging
|
7 |
+
log_dir = 'logs'
|
8 |
+
os.makedirs(log_dir, exist_ok=True)
|
9 |
+
log_file = os.path.join(log_dir, 'app.log')
|
10 |
+
|
11 |
+
# Create a RotatingFileHandler
|
12 |
+
file_handler = RotatingFileHandler(log_file, maxBytes=1024 * 1024, backupCount=5)
|
13 |
+
file_handler.setFormatter(logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s'))
|
14 |
+
|
15 |
+
# Configure the root logger
|
16 |
+
logging.basicConfig(level=logging.INFO,
|
17 |
+
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
18 |
+
handlers=[file_handler, logging.StreamHandler()])
|
19 |
+
|
20 |
+
if __name__ == "__main__":
|
21 |
+
setup_logging()
|
22 |
+
logger = logging.getLogger(__name__)
|
23 |
+
logger.info("Logging setup completed")
|
logs/app.log
ADDED
@@ -0,0 +1,759 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
2025-02-12 13:56:20,183 - datasets - INFO - PyTorch version 2.4.0 available.
|
2 |
+
2025-02-12 13:56:20,287 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
3 |
+
2025-02-12 13:56:22,356 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
4 |
+
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"
|
5 |
+
2025-02-12 13:56:22,375 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
6 |
+
2025-02-12 13:56:22,937 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
7 |
+
2025-02-12 13:57:38,012 - auditqa.retriever - INFO - Retriever activated
|
8 |
+
2025-02-12 13:57:39,150 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
9 |
+
2025-02-12 13:57:41,590 - auditqa.reader - INFO - Dedicated endpoint activated
|
10 |
+
2025-02-12 13:59:45,278 - __main__ - INFO - App launched
|
11 |
+
2025-02-12 13:59:51,278 - datasets - INFO - PyTorch version 2.4.0 available.
|
12 |
+
2025-02-12 13:59:51,373 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
13 |
+
2025-02-12 13:59:53,331 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
14 |
+
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"
|
15 |
+
2025-02-12 13:59:53,353 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
16 |
+
2025-02-12 13:59:53,937 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
17 |
+
2025-02-12 14:00:42,264 - auditqa.retriever - INFO - Retriever activated
|
18 |
+
2025-02-12 14:00:43,357 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
19 |
+
2025-02-12 14:00:43,897 - auditqa.retriever - INFO - retrieved paragraphs:0
|
20 |
+
2025-02-12 14:00:44,067 - auditqa.reader - INFO - Dedicated endpoint activated
|
21 |
+
2025-02-12 14:01:18,445 - __main__ - INFO - App launched
|
22 |
+
2025-02-12 14:01:24,077 - datasets - INFO - PyTorch version 2.4.0 available.
|
23 |
+
2025-02-12 14:01:24,172 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
24 |
+
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"
|
25 |
+
2025-02-12 14:01:26,003 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
26 |
+
2025-02-12 14:01:26,007 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
27 |
+
2025-02-12 14:01:26,584 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
28 |
+
2025-02-12 14:01:50,134 - auditqa.retriever - INFO - Retriever activated
|
29 |
+
2025-02-12 14:02:45,623 - __main__ - INFO - App launched
|
30 |
+
2025-02-12 14:02:51,283 - datasets - INFO - PyTorch version 2.4.0 available.
|
31 |
+
2025-02-12 14:02:51,376 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
32 |
+
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"
|
33 |
+
2025-02-12 14:02:53,257 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
34 |
+
2025-02-12 14:02:53,285 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
35 |
+
2025-02-12 14:02:53,354 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
36 |
+
2025-02-12 14:02:53,842 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
37 |
+
2025-02-12 14:03:46,901 - auditqa.retriever - INFO - Retriever activated
|
38 |
+
2025-02-12 14:03:47,916 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
39 |
+
2025-02-12 14:03:48,647 - auditqa.retriever - INFO - retrieved paragraphs:0
|
40 |
+
2025-02-12 14:03:48,844 - auditqa.reader - INFO - Dedicated endpoint activated
|
41 |
+
2025-02-12 14:05:04,051 - datasets - INFO - PyTorch version 2.4.0 available.
|
42 |
+
2025-02-12 14:05:04,165 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
43 |
+
2025-02-12 14:05:19,190 - __main__ - INFO - App launched
|
44 |
+
2025-02-12 14:05:22,418 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
45 |
+
2025-02-12 14:05:25,164 - datasets - INFO - PyTorch version 2.4.0 available.
|
46 |
+
2025-02-12 14:05:25,253 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
47 |
+
2025-02-12 14:07:42,531 - auditqa.retriever - INFO - Retriever activated
|
48 |
+
2025-02-12 14:09:50,799 - __main__ - INFO - Retriever activated
|
49 |
+
2025-02-12 14:10:15,655 - __main__ - INFO - Retriever activated
|
50 |
+
2025-02-12 14:10:16,703 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
51 |
+
2025-02-12 14:10:19,002 - __main__ - INFO - retrieved paragraphs:0
|
52 |
+
2025-02-12 14:12:20,117 - __main__ - INFO - Retriever activated
|
53 |
+
2025-02-12 14:12:21,077 - __main__ - INFO - Raw retrieved documents before reranking: 20
|
54 |
+
2025-02-12 14:12:22,194 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
55 |
+
2025-02-12 14:12:26,721 - __main__ - INFO - Retrieved paragraphs after reranking: 3
|
56 |
+
2025-02-12 14:12:51,863 - datasets - INFO - PyTorch version 2.4.0 available.
|
57 |
+
2025-02-12 14:12:51,974 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
58 |
+
2025-02-12 14:15:45,899 - datasets - INFO - PyTorch version 2.4.0 available.
|
59 |
+
2025-02-12 14:15:46,009 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
60 |
+
2025-02-12 14:15:48,035 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
61 |
+
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"
|
62 |
+
2025-02-12 14:15:48,057 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
63 |
+
2025-02-12 14:15:48,611 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
64 |
+
2025-02-12 14:16:10,607 - auditqa.retriever - INFO - Retriever activated
|
65 |
+
2025-02-12 14:16:27,950 - __main__ - INFO - App launched
|
66 |
+
2025-02-12 14:17:17,852 - datasets - INFO - PyTorch version 2.4.0 available.
|
67 |
+
2025-02-12 14:17:17,951 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
68 |
+
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"
|
69 |
+
2025-02-12 14:17:19,781 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
70 |
+
2025-02-12 14:17:19,788 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
71 |
+
2025-02-12 14:17:19,880 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
72 |
+
2025-02-12 14:17:20,359 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
73 |
+
2025-02-12 14:17:51,884 - auditqa.retriever - INFO - Retriever activated
|
74 |
+
2025-02-12 14:17:53,389 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
75 |
+
2025-02-12 14:17:55,796 - auditqa.retriever - INFO - retrieved paragraphs:0
|
76 |
+
2025-02-12 14:17:55,998 - auditqa.reader - INFO - Dedicated endpoint activated
|
77 |
+
2025-02-12 14:18:29,311 - __main__ - INFO - App launched
|
78 |
+
2025-02-12 14:18:35,266 - datasets - INFO - PyTorch version 2.4.0 available.
|
79 |
+
2025-02-12 14:18:35,360 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
80 |
+
2025-02-12 14:18:37,094 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
81 |
+
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"
|
82 |
+
2025-02-12 14:18:37,111 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
83 |
+
2025-02-12 14:18:37,687 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
84 |
+
2025-02-12 14:18:58,332 - auditqa.retriever - INFO - Retriever activated
|
85 |
+
2025-02-12 14:19:14,462 - __main__ - INFO - App launched
|
86 |
+
2025-02-12 14:19:19,941 - datasets - INFO - PyTorch version 2.4.0 available.
|
87 |
+
2025-02-12 14:19:20,032 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
88 |
+
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"
|
89 |
+
2025-02-12 14:19:22,033 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
90 |
+
2025-02-12 14:19:22,044 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
91 |
+
2025-02-12 14:19:22,605 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
92 |
+
2025-02-12 14:19:30,055 - auditqa.retriever - INFO - Retriever activated
|
93 |
+
2025-02-12 14:22:45,945 - __main__ - INFO - App launched
|
94 |
+
2025-02-12 14:22:52,140 - datasets - INFO - PyTorch version 2.4.0 available.
|
95 |
+
2025-02-12 14:22:52,243 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
96 |
+
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"
|
97 |
+
2025-02-12 14:22:54,338 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
98 |
+
2025-02-12 14:22:54,388 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
99 |
+
2025-02-12 14:22:54,447 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
100 |
+
2025-02-12 14:22:54,896 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
101 |
+
2025-02-12 14:23:05,299 - auditqa.retriever - INFO - Retriever activated
|
102 |
+
2025-02-12 14:23:07,432 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
|
103 |
+
2025-02-12 14:23:07,433 - auditqa.retriever - WARNING - No documents retrieved. Consider checking the filter conditions or lowering the threshold.
|
104 |
+
2025-02-12 14:23:08,685 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
105 |
+
2025-02-12 14:23:09,167 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 0
|
106 |
+
2025-02-12 14:23:09,453 - auditqa.reader - INFO - Dedicated endpoint activated
|
107 |
+
2025-02-12 14:24:04,297 - __main__ - INFO - App launched
|
108 |
+
2025-02-12 14:24:10,120 - datasets - INFO - PyTorch version 2.4.0 available.
|
109 |
+
2025-02-12 14:24:10,214 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
110 |
+
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"
|
111 |
+
2025-02-12 14:24:12,219 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
112 |
+
2025-02-12 14:24:12,230 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
113 |
+
2025-02-12 14:24:12,795 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
114 |
+
2025-02-12 14:24:26,280 - auditqa.retriever - INFO - Retriever activated
|
115 |
+
2025-02-12 14:24:27,198 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
|
116 |
+
2025-02-12 14:24:27,199 - auditqa.retriever - WARNING - No documents retrieved. Consider checking the filter conditions or lowering the threshold.
|
117 |
+
2025-02-12 14:24:28,187 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
118 |
+
2025-02-12 14:24:29,627 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 0
|
119 |
+
2025-02-12 14:24:29,877 - auditqa.reader - INFO - Dedicated endpoint activated
|
120 |
+
2025-02-12 14:27:11,766 - __main__ - INFO - App launched
|
121 |
+
2025-02-12 14:27:18,298 - datasets - INFO - PyTorch version 2.4.0 available.
|
122 |
+
2025-02-12 14:27:18,402 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
123 |
+
2025-02-12 14:27:20,737 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
124 |
+
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"
|
125 |
+
2025-02-12 14:27:20,751 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
126 |
+
2025-02-12 14:27:21,319 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
127 |
+
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'])
|
128 |
+
2025-02-12 14:27:27,973 - auditqa.retriever - INFO - Model config: 100
|
129 |
+
2025-02-12 14:27:30,481 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
|
130 |
+
2025-02-12 14:27:30,481 - auditqa.retriever - WARNING - No documents retrieved. Consider checking the filter conditions or lowering the threshold.
|
131 |
+
2025-02-12 14:27:31,488 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
132 |
+
2025-02-12 14:27:31,832 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 0
|
133 |
+
2025-02-12 14:27:32,015 - auditqa.reader - INFO - Dedicated endpoint activated
|
134 |
+
2025-02-12 14:30:51,999 - __main__ - INFO - App launched
|
135 |
+
2025-02-12 14:30:58,371 - datasets - INFO - PyTorch version 2.4.0 available.
|
136 |
+
2025-02-12 14:30:58,479 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
137 |
+
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"
|
138 |
+
2025-02-12 14:31:00,435 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
139 |
+
2025-02-12 14:31:00,447 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
140 |
+
2025-02-12 14:31:01,015 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
141 |
+
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'])
|
142 |
+
2025-02-12 14:31:06,957 - auditqa.retriever - INFO - Model config: 100
|
143 |
+
2025-02-12 14:31:09,597 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
|
144 |
+
2025-02-12 14:31:09,597 - auditqa.retriever - WARNING - No documents retrieved. Consider checking the filter conditions or lowering the threshold.
|
145 |
+
2025-02-12 14:31:10,909 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
146 |
+
2025-02-12 14:31:11,121 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 0
|
147 |
+
2025-02-12 14:31:11,305 - auditqa.reader - INFO - Dedicated endpoint activated
|
148 |
+
2025-02-12 14:32:47,225 - __main__ - INFO - App launched
|
149 |
+
2025-02-12 14:32:53,420 - datasets - INFO - PyTorch version 2.4.0 available.
|
150 |
+
2025-02-12 14:32:53,521 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
151 |
+
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"
|
152 |
+
2025-02-12 14:32:55,461 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
153 |
+
2025-02-12 14:32:55,473 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
154 |
+
2025-02-12 14:32:56,028 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
155 |
+
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'])
|
156 |
+
2025-02-12 14:33:08,775 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
|
157 |
+
2025-02-12 14:33:08,775 - auditqa.retriever - WARNING - No documents retrieved with filters. Falling back to no filters.
|
158 |
+
2025-02-12 14:33:09,108 - auditqa.retriever - INFO - Retrieved 200 documents without filters
|
159 |
+
2025-02-12 14:33:10,220 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
160 |
+
2025-02-12 14:33:22,490 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 100
|
161 |
+
2025-02-12 14:33:22,667 - auditqa.reader - INFO - Dedicated endpoint activated
|
162 |
+
2025-02-12 14:36:10,619 - __main__ - INFO - App launched
|
163 |
+
2025-02-12 14:36:17,088 - datasets - INFO - PyTorch version 2.4.0 available.
|
164 |
+
2025-02-12 14:36:17,189 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
165 |
+
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"
|
166 |
+
2025-02-12 14:36:18,970 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
167 |
+
2025-02-12 14:36:18,976 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
168 |
+
2025-02-12 14:36:19,070 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
169 |
+
2025-02-12 14:36:19,527 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
170 |
+
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'])
|
171 |
+
2025-02-12 14:36:26,600 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
|
172 |
+
2025-02-12 14:36:26,602 - auditqa.retriever - WARNING - No documents retrieved with filters. Falling back to no filters.
|
173 |
+
2025-02-12 14:36:26,891 - auditqa.retriever - INFO - Retrieved 200 documents without filters
|
174 |
+
2025-02-12 14:36:27,840 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
175 |
+
2025-02-12 14:36:36,619 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 100
|
176 |
+
2025-02-12 14:36:36,787 - auditqa.reader - INFO - Dedicated endpoint activated
|
177 |
+
2025-02-12 14:38:14,463 - __main__ - INFO - App launched
|
178 |
+
2025-02-12 14:38:20,914 - datasets - INFO - PyTorch version 2.4.0 available.
|
179 |
+
2025-02-12 14:38:21,013 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
180 |
+
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"
|
181 |
+
2025-02-12 14:38:23,151 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
182 |
+
2025-02-12 14:38:23,162 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
183 |
+
2025-02-12 14:38:23,729 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
184 |
+
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'])
|
185 |
+
2025-02-12 14:38:33,335 - auditqa.retriever - INFO - Sample document metadata:
|
186 |
+
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'}
|
187 |
+
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'}
|
188 |
+
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'}
|
189 |
+
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'}
|
190 |
+
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'}
|
191 |
+
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'}
|
192 |
+
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
|
193 |
+
2025-02-12 14:38:34,047 - auditqa.retriever - INFO - Test 2 - Year filter only: Retrieved 5 documents
|
194 |
+
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
|
195 |
+
2025-02-12 14:38:34,348 - auditqa.retriever - INFO - Test 3 - Source filter only: Retrieved 0 documents
|
196 |
+
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
|
197 |
+
2025-02-12 14:38:34,726 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 0
|
198 |
+
2025-02-12 14:38:34,727 - auditqa.retriever - WARNING - No documents retrieved with filters. Falling back to no filters.
|
199 |
+
2025-02-12 14:38:35,070 - auditqa.retriever - INFO - Retrieved 200 documents without filters
|
200 |
+
2025-02-12 14:38:36,078 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
201 |
+
2025-02-12 14:38:44,940 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 100
|
202 |
+
2025-02-12 14:38:45,100 - auditqa.reader - INFO - Dedicated endpoint activated
|
203 |
+
2025-02-12 14:39:23,615 - __main__ - INFO - App launched
|
204 |
+
2025-02-12 14:39:30,480 - datasets - INFO - PyTorch version 2.4.0 available.
|
205 |
+
2025-02-12 14:39:30,595 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
206 |
+
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"
|
207 |
+
2025-02-12 14:39:33,921 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
208 |
+
2025-02-12 14:39:33,930 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
209 |
+
2025-02-12 14:39:34,509 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
210 |
+
2025-02-12 14:40:11,740 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
211 |
+
2025-02-12 14:40:27,341 - __main__ - INFO - App launched
|
212 |
+
2025-02-12 14:40:42,079 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
213 |
+
2025-02-12 14:44:22,924 - datasets - INFO - PyTorch version 2.4.0 available.
|
214 |
+
2025-02-12 14:44:23,023 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
215 |
+
2025-02-12 14:44:24,910 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
216 |
+
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"
|
217 |
+
2025-02-12 14:44:24,923 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
218 |
+
2025-02-12 14:44:25,508 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
219 |
+
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'])
|
220 |
+
2025-02-12 14:45:25,138 - auditqa.retriever - INFO - Sample document metadata:
|
221 |
+
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'}
|
222 |
+
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'}
|
223 |
+
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'}
|
224 |
+
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'}
|
225 |
+
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'}
|
226 |
+
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
|
227 |
+
2025-02-12 14:45:25,578 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 200
|
228 |
+
2025-02-12 14:45:26,594 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
229 |
+
2025-02-12 14:45:35,631 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 100
|
230 |
+
2025-02-12 14:45:35,890 - auditqa.reader - INFO - Dedicated endpoint activated
|
231 |
+
2025-02-12 14:48:16,841 - __main__ - INFO - App launched
|
232 |
+
2025-02-12 14:48:23,471 - datasets - INFO - PyTorch version 2.4.0 available.
|
233 |
+
2025-02-12 14:48:23,573 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
234 |
+
2025-02-12 14:48:25,427 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
235 |
+
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"
|
236 |
+
2025-02-12 14:48:25,445 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
237 |
+
2025-02-12 14:48:26,011 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
238 |
+
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'])
|
239 |
+
2025-02-12 14:48:31,768 - auditqa.retriever - INFO - Sample document metadata:
|
240 |
+
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'}
|
241 |
+
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'}
|
242 |
+
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'}
|
243 |
+
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'}
|
244 |
+
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'}
|
245 |
+
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
|
246 |
+
2025-02-12 14:48:32,143 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
247 |
+
2025-02-12 14:48:33,143 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
248 |
+
2025-02-12 14:48:35,547 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
249 |
+
2025-02-12 14:48:35,702 - auditqa.reader - INFO - Dedicated endpoint activated
|
250 |
+
2025-02-12 14:59:26,370 - __main__ - INFO - App launched
|
251 |
+
2025-02-12 14:59:32,862 - datasets - INFO - PyTorch version 2.4.0 available.
|
252 |
+
2025-02-12 14:59:32,975 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
253 |
+
2025-02-12 14:59:34,878 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
254 |
+
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"
|
255 |
+
2025-02-12 14:59:34,899 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
256 |
+
2025-02-12 14:59:35,453 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
257 |
+
2025-02-12 15:00:21,663 - __main__ - INFO - App launched
|
258 |
+
2025-02-12 15:00:27,141 - datasets - INFO - PyTorch version 2.4.0 available.
|
259 |
+
2025-02-12 15:00:27,234 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
260 |
+
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"
|
261 |
+
2025-02-12 15:00:29,645 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
262 |
+
2025-02-12 15:00:29,646 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
263 |
+
2025-02-12 15:00:30,202 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
264 |
+
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'])
|
265 |
+
2025-02-12 15:00:40,588 - auditqa.retriever - INFO - Sample document metadata:
|
266 |
+
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'}
|
267 |
+
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'}
|
268 |
+
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'}
|
269 |
+
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'}
|
270 |
+
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'}
|
271 |
+
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
|
272 |
+
2025-02-12 15:00:40,973 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
273 |
+
2025-02-12 15:00:41,985 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
274 |
+
2025-02-12 15:00:44,310 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
275 |
+
2025-02-12 15:00:44,459 - auditqa.reader - INFO - Together AI endpoint activated
|
276 |
+
2025-02-12 15:21:43,975 - __main__ - INFO - App launched
|
277 |
+
2025-02-12 15:21:50,986 - datasets - INFO - PyTorch version 2.4.0 available.
|
278 |
+
2025-02-12 15:21:51,087 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
279 |
+
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"
|
280 |
+
2025-02-12 15:21:53,766 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
281 |
+
2025-02-12 15:21:53,766 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
282 |
+
2025-02-12 15:21:54,348 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
283 |
+
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'])
|
284 |
+
2025-02-12 15:22:00,499 - auditqa.retriever - INFO - Sample document metadata:
|
285 |
+
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'}
|
286 |
+
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'}
|
287 |
+
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'}
|
288 |
+
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'}
|
289 |
+
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'}
|
290 |
+
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
|
291 |
+
2025-02-12 15:22:00,928 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
292 |
+
2025-02-12 15:22:01,879 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
293 |
+
2025-02-12 15:22:04,025 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
294 |
+
2025-02-12 15:22:04,193 - auditqa.reader - INFO - Serverless endpoint activated
|
295 |
+
2025-02-12 15:22:04,193 - auditqa.reader - INFO - Serverless InferenceClient is ready.
|
296 |
+
2025-02-12 15:25:16,957 - __main__ - INFO - App launched
|
297 |
+
2025-02-12 15:25:23,272 - datasets - INFO - PyTorch version 2.4.0 available.
|
298 |
+
2025-02-12 15:25:23,370 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
299 |
+
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"
|
300 |
+
2025-02-12 15:25:25,483 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
301 |
+
2025-02-12 15:25:25,490 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
302 |
+
2025-02-12 15:25:26,057 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
303 |
+
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'])
|
304 |
+
2025-02-12 15:25:32,176 - auditqa.retriever - INFO - Sample document metadata:
|
305 |
+
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'}
|
306 |
+
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'}
|
307 |
+
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'}
|
308 |
+
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'}
|
309 |
+
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'}
|
310 |
+
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
|
311 |
+
2025-02-12 15:25:32,581 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
312 |
+
2025-02-12 15:25:33,542 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
313 |
+
2025-02-12 15:25:35,692 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
314 |
+
2025-02-12 15:25:35,818 - auditqa.reader - INFO - Serverless endpoint activated
|
315 |
+
2025-02-12 15:25:35,818 - auditqa.reader - INFO - Serverless InferenceClient is ready.
|
316 |
+
2025-02-12 15:25:35,820 - __main__ - ERROR - Error in process_stream: Object of type SystemMessage is not JSON serializable
|
317 |
+
2025-02-12 15:26:38,263 - __main__ - INFO - App launched
|
318 |
+
2025-02-12 15:26:44,454 - datasets - INFO - PyTorch version 2.4.0 available.
|
319 |
+
2025-02-12 15:26:44,555 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
320 |
+
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"
|
321 |
+
2025-02-12 15:26:46,363 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
322 |
+
2025-02-12 15:26:46,371 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
323 |
+
2025-02-12 15:26:46,938 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
324 |
+
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'])
|
325 |
+
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
|
326 |
+
2025-02-12 15:26:53,815 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
327 |
+
2025-02-12 15:26:54,776 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
328 |
+
2025-02-12 15:26:57,148 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
329 |
+
2025-02-12 15:26:57,322 - auditqa.reader - INFO - Serverless endpoint activated
|
330 |
+
2025-02-12 15:26:57,323 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
331 |
+
2025-02-12 15:26:57,323 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
332 |
+
2025-02-12 15:26:57,324 - __main__ - ERROR - Error in process_stream: Object of type SystemMessage is not JSON serializable
|
333 |
+
2025-02-12 15:28:25,575 - __main__ - INFO - App launched
|
334 |
+
2025-02-12 15:28:32,244 - datasets - INFO - PyTorch version 2.4.0 available.
|
335 |
+
2025-02-12 15:28:32,365 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
336 |
+
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"
|
337 |
+
2025-02-12 15:28:34,285 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
338 |
+
2025-02-12 15:28:34,297 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
339 |
+
2025-02-12 15:28:34,865 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
340 |
+
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'])
|
341 |
+
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
|
342 |
+
2025-02-12 15:28:40,523 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
343 |
+
2025-02-12 15:28:41,536 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
344 |
+
2025-02-12 15:28:44,035 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
345 |
+
2025-02-12 15:28:44,182 - auditqa.reader - INFO - Serverless endpoint activated
|
346 |
+
2025-02-12 15:28:44,183 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
347 |
+
2025-02-12 15:28:44,183 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
348 |
+
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'])
|
349 |
+
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
|
350 |
+
2025-02-12 15:29:59,269 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
351 |
+
2025-02-12 15:30:00,312 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
352 |
+
2025-02-12 15:30:03,126 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
353 |
+
2025-02-12 15:30:03,278 - auditqa.reader - INFO - Serverless endpoint activated
|
354 |
+
2025-02-12 15:30:03,278 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
355 |
+
2025-02-12 15:30:03,278 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
356 |
+
2025-02-12 15:42:18,686 - __main__ - INFO - App launched
|
357 |
+
2025-02-12 15:45:18,005 - datasets - INFO - PyTorch version 2.4.0 available.
|
358 |
+
2025-02-12 15:45:18,132 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
359 |
+
2025-02-12 15:45:20,262 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
360 |
+
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"
|
361 |
+
2025-02-12 15:45:20,304 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
362 |
+
2025-02-12 15:45:20,848 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
363 |
+
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'])
|
364 |
+
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
|
365 |
+
2025-02-12 15:45:42,131 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
366 |
+
2025-02-12 15:45:43,130 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
367 |
+
2025-02-12 15:45:45,498 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
368 |
+
2025-02-12 15:45:45,657 - auditqa.reader - INFO - Serverless endpoint activated
|
369 |
+
2025-02-12 15:45:45,657 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
370 |
+
2025-02-12 15:45:45,658 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
371 |
+
2025-02-12 15:48:20,792 - __main__ - INFO - App launched
|
372 |
+
2025-02-12 15:48:27,157 - datasets - INFO - PyTorch version 2.4.0 available.
|
373 |
+
2025-02-12 15:48:27,260 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
374 |
+
2025-02-12 15:48:29,198 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
375 |
+
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"
|
376 |
+
2025-02-12 15:48:29,221 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
377 |
+
2025-02-12 15:48:29,769 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
378 |
+
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'])
|
379 |
+
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
|
380 |
+
2025-02-12 15:48:42,763 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
381 |
+
2025-02-12 15:48:44,578 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
382 |
+
2025-02-12 15:48:46,904 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
383 |
+
2025-02-12 15:48:47,075 - auditqa.reader - INFO - Serverless endpoint activated
|
384 |
+
2025-02-12 15:48:47,075 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
385 |
+
2025-02-12 15:48:47,075 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
386 |
+
2025-02-12 15:49:09,500 - __main__ - ERROR - Error saving feedback: 'NoneType' object does not support item assignment
|
387 |
+
2025-02-12 15:50:42,997 - __main__ - INFO - App launched
|
388 |
+
2025-02-12 15:50:49,392 - datasets - INFO - PyTorch version 2.4.0 available.
|
389 |
+
2025-02-12 15:50:49,495 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
390 |
+
2025-02-12 15:50:51,265 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
391 |
+
2025-02-12 15:50:51,861 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
392 |
+
2025-02-12 15:52:45,050 - datasets - INFO - PyTorch version 2.4.0 available.
|
393 |
+
2025-02-12 15:52:45,137 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
394 |
+
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"
|
395 |
+
2025-02-12 15:52:47,230 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
396 |
+
2025-02-12 15:52:47,233 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
397 |
+
2025-02-12 15:52:47,317 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
398 |
+
2025-02-12 15:52:47,807 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
399 |
+
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'])
|
400 |
+
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
|
401 |
+
2025-02-12 15:52:56,657 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
402 |
+
2025-02-12 15:52:58,069 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
403 |
+
2025-02-12 15:53:00,483 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
404 |
+
2025-02-12 15:53:00,638 - auditqa.reader - INFO - Serverless endpoint activated
|
405 |
+
2025-02-12 15:53:00,638 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
406 |
+
2025-02-12 15:53:00,638 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
407 |
+
2025-02-12 15:56:46,364 - __main__ - INFO - App launched
|
408 |
+
2025-02-12 15:56:53,865 - datasets - INFO - PyTorch version 2.4.0 available.
|
409 |
+
2025-02-12 15:56:53,963 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
410 |
+
2025-02-12 15:56:56,020 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
411 |
+
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"
|
412 |
+
2025-02-12 15:56:56,042 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
413 |
+
2025-02-12 15:56:56,612 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
414 |
+
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'])
|
415 |
+
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
|
416 |
+
2025-02-12 15:57:26,332 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
417 |
+
2025-02-12 15:57:27,313 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
418 |
+
2025-02-12 15:57:29,708 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
419 |
+
2025-02-12 15:57:29,856 - auditqa.reader - INFO - Serverless endpoint activated
|
420 |
+
2025-02-12 15:57:29,856 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
421 |
+
2025-02-12 15:57:29,857 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
422 |
+
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'])
|
423 |
+
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
|
424 |
+
2025-02-12 16:01:42,202 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
425 |
+
2025-02-12 16:01:43,361 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
426 |
+
2025-02-12 16:01:46,057 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
427 |
+
2025-02-12 16:01:46,201 - auditqa.reader - INFO - Serverless endpoint activated
|
428 |
+
2025-02-12 16:01:46,201 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
429 |
+
2025-02-12 16:01:46,201 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
430 |
+
2025-02-12 16:03:50,908 - __main__ - INFO - App launched
|
431 |
+
2025-02-12 16:03:57,770 - datasets - INFO - PyTorch version 2.4.0 available.
|
432 |
+
2025-02-12 16:03:57,878 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
433 |
+
2025-02-12 16:03:59,650 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
434 |
+
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"
|
435 |
+
2025-02-12 16:03:59,684 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
436 |
+
2025-02-12 16:04:00,218 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
437 |
+
2025-02-12 16:14:39,808 - datasets - INFO - PyTorch version 2.4.0 available.
|
438 |
+
2025-02-12 16:14:39,923 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
439 |
+
2025-02-12 16:14:41,758 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
440 |
+
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"
|
441 |
+
2025-02-12 16:14:41,800 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
442 |
+
2025-02-12 16:14:42,353 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
443 |
+
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'])
|
444 |
+
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
|
445 |
+
2025-02-12 16:14:51,456 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
446 |
+
2025-02-12 16:14:52,361 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
447 |
+
2025-02-12 16:14:54,649 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
448 |
+
2025-02-12 16:14:54,844 - auditqa.reader - INFO - Serverless endpoint activated
|
449 |
+
2025-02-12 16:14:54,844 - auditqa.reader - ERROR - Error initializing dedicated endpoint: 'LLAMA_3_1'
|
450 |
+
2025-02-12 16:15:37,703 - __main__ - INFO - App launched
|
451 |
+
2025-02-12 16:15:43,490 - datasets - INFO - PyTorch version 2.4.0 available.
|
452 |
+
2025-02-12 16:15:43,612 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
453 |
+
2025-02-12 16:15:45,541 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
454 |
+
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"
|
455 |
+
2025-02-12 16:15:45,575 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
456 |
+
2025-02-12 16:15:46,129 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
457 |
+
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'])
|
458 |
+
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
|
459 |
+
2025-02-12 16:16:13,806 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
460 |
+
2025-02-12 16:16:14,798 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
461 |
+
2025-02-12 16:16:17,315 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
462 |
+
2025-02-12 16:16:17,480 - auditqa.reader - INFO - Serverless endpoint activated
|
463 |
+
2025-02-12 16:16:17,481 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
464 |
+
2025-02-12 16:16:17,481 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
465 |
+
2025-02-12 16:20:58,094 - __main__ - INFO - App launched
|
466 |
+
2025-02-12 16:21:04,975 - datasets - INFO - PyTorch version 2.4.0 available.
|
467 |
+
2025-02-12 16:21:05,079 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
468 |
+
2025-02-12 16:21:08,689 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
469 |
+
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"
|
470 |
+
2025-02-12 16:21:08,713 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
471 |
+
2025-02-12 16:21:09,271 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
472 |
+
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'])
|
473 |
+
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
|
474 |
+
2025-02-12 16:21:16,009 - auditqa.retriever - INFO - Raw retrieved documents before reranking: 20
|
475 |
+
2025-02-12 16:21:18,627 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
476 |
+
2025-02-12 16:21:20,797 - auditqa.retriever - INFO - Retrieved paragraphs after reranking: 3
|
477 |
+
2025-02-12 16:21:20,969 - auditqa.reader - INFO - Serverless endpoint activated
|
478 |
+
2025-02-12 16:21:20,969 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
479 |
+
2025-02-12 16:21:20,969 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
480 |
+
2025-02-12 16:27:37,486 - __main__ - INFO - App launched
|
481 |
+
2025-02-12 16:27:45,840 - datasets - INFO - PyTorch version 2.4.0 available.
|
482 |
+
2025-02-12 16:27:45,947 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
483 |
+
2025-02-12 16:27:48,024 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
484 |
+
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"
|
485 |
+
2025-02-12 16:27:48,071 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
486 |
+
2025-02-12 16:27:48,602 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
487 |
+
2025-02-12 16:27:57,271 - auditqa.retriever - INFO - Retriever activated
|
488 |
+
2025-02-12 16:27:58,161 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
489 |
+
2025-02-12 16:28:02,068 - auditqa.retriever - INFO - retrieved paragraphs:3
|
490 |
+
2025-02-12 16:28:02,234 - auditqa.reader - INFO - Serverless endpoint activated
|
491 |
+
2025-02-12 16:28:02,235 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
492 |
+
2025-02-12 16:28:02,235 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
493 |
+
2025-02-12 16:40:47,808 - __main__ - INFO - App launched
|
494 |
+
2025-02-12 16:40:53,904 - datasets - INFO - PyTorch version 2.4.0 available.
|
495 |
+
2025-02-12 16:40:53,999 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
496 |
+
2025-02-12 16:40:57,208 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
497 |
+
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"
|
498 |
+
2025-02-12 16:40:57,230 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
499 |
+
2025-02-12 16:40:57,793 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
500 |
+
2025-02-12 16:41:18,018 - auditqa.retriever - INFO - Retriever activated
|
501 |
+
2025-02-12 16:41:18,987 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
502 |
+
2025-02-12 16:41:23,090 - auditqa.retriever - INFO - retrieved paragraphs:3
|
503 |
+
2025-02-12 16:41:23,246 - auditqa.reader - INFO - Serverless endpoint activated
|
504 |
+
2025-02-12 16:41:23,247 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
505 |
+
2025-02-12 16:41:23,247 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
506 |
+
2025-02-12 16:41:23,508 - __main__ - ERROR - Error in process_stream: free variable 'logs_data' referenced before assignment in enclosing scope
|
507 |
+
2025-02-12 16:45:33,616 - __main__ - INFO - App launched
|
508 |
+
2025-02-12 16:45:39,542 - datasets - INFO - PyTorch version 2.4.0 available.
|
509 |
+
2025-02-12 16:45:39,652 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
510 |
+
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"
|
511 |
+
2025-02-12 16:45:41,489 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
512 |
+
2025-02-12 16:45:41,500 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
513 |
+
2025-02-12 16:45:42,068 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
514 |
+
2025-02-12 16:45:57,072 - auditqa.retriever - INFO - Retriever activated
|
515 |
+
2025-02-12 16:45:57,993 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
516 |
+
2025-02-12 16:46:02,158 - auditqa.retriever - INFO - retrieved paragraphs:3
|
517 |
+
2025-02-12 16:46:02,321 - auditqa.reader - INFO - Serverless endpoint activated
|
518 |
+
2025-02-12 16:46:02,321 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
519 |
+
2025-02-12 16:46:02,321 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
520 |
+
2025-02-12 16:48:55,864 - __main__ - INFO - App launched
|
521 |
+
2025-02-12 16:49:02,784 - datasets - INFO - PyTorch version 2.4.0 available.
|
522 |
+
2025-02-12 16:49:02,889 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
523 |
+
2025-02-12 16:49:04,868 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
524 |
+
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"
|
525 |
+
2025-02-12 16:49:04,894 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
526 |
+
2025-02-12 16:49:05,449 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
527 |
+
2025-02-12 16:49:12,962 - auditqa.retriever - INFO - Retriever activated
|
528 |
+
2025-02-12 16:49:13,953 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
529 |
+
2025-02-12 16:49:18,154 - auditqa.retriever - INFO - retrieved paragraphs:3
|
530 |
+
2025-02-12 16:49:18,305 - auditqa.reader - INFO - Serverless endpoint activated
|
531 |
+
2025-02-12 16:49:18,305 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
532 |
+
2025-02-12 16:49:18,305 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
533 |
+
2025-02-12 16:49:33,488 - __main__ - ERROR - No logs data available for feedback
|
534 |
+
2025-02-12 16:56:43,958 - __main__ - INFO - App launched
|
535 |
+
2025-02-12 16:56:50,826 - datasets - INFO - PyTorch version 2.4.0 available.
|
536 |
+
2025-02-12 16:56:50,930 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
537 |
+
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"
|
538 |
+
2025-02-12 16:56:55,856 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
539 |
+
2025-02-12 16:56:55,864 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
540 |
+
2025-02-12 16:56:56,414 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
541 |
+
2025-02-12 16:57:00,887 - auditqa.retriever - INFO - Retriever activated
|
542 |
+
2025-02-12 16:57:01,850 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
543 |
+
2025-02-12 16:57:05,939 - auditqa.retriever - INFO - retrieved paragraphs:3
|
544 |
+
2025-02-12 16:57:06,101 - auditqa.reader - INFO - Serverless endpoint activated
|
545 |
+
2025-02-12 16:57:06,102 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
546 |
+
2025-02-12 16:57:06,102 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
547 |
+
2025-02-12 17:12:36,118 - __main__ - INFO - App launched
|
548 |
+
2025-02-12 17:12:42,375 - datasets - INFO - PyTorch version 2.4.0 available.
|
549 |
+
2025-02-12 17:12:42,501 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
550 |
+
2025-02-12 17:12:44,322 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
551 |
+
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"
|
552 |
+
2025-02-12 17:12:44,370 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
553 |
+
2025-02-12 17:12:44,910 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
554 |
+
2025-02-12 17:12:49,365 - auditqa.retriever - INFO - Retriever activated
|
555 |
+
2025-02-12 17:12:50,370 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
556 |
+
2025-02-12 17:12:54,762 - auditqa.retriever - INFO - retrieved paragraphs:3
|
557 |
+
2025-02-12 17:12:54,912 - auditqa.reader - INFO - Serverless endpoint activated
|
558 |
+
2025-02-12 17:12:54,912 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
559 |
+
2025-02-12 17:12:54,912 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
560 |
+
2025-02-12 17:22:25,915 - __main__ - INFO - App launched
|
561 |
+
2025-02-12 17:22:32,292 - datasets - INFO - PyTorch version 2.4.0 available.
|
562 |
+
2025-02-12 17:22:32,387 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
563 |
+
2025-02-12 17:22:34,407 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
564 |
+
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"
|
565 |
+
2025-02-12 17:22:34,421 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
566 |
+
2025-02-12 17:22:34,969 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
567 |
+
2025-02-12 17:22:39,294 - auditqa.retriever - INFO - Retriever activated
|
568 |
+
2025-02-12 17:22:40,301 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
569 |
+
2025-02-12 17:22:44,877 - auditqa.retriever - INFO - retrieved paragraphs:3
|
570 |
+
2025-02-12 17:22:45,032 - auditqa.reader - INFO - Serverless endpoint activated
|
571 |
+
2025-02-12 17:22:45,032 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
572 |
+
2025-02-12 17:22:45,032 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
573 |
+
2025-02-12 17:24:06,646 - __main__ - INFO - App launched
|
574 |
+
2025-02-12 17:24:12,785 - datasets - INFO - PyTorch version 2.4.0 available.
|
575 |
+
2025-02-12 17:24:12,880 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
576 |
+
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"
|
577 |
+
2025-02-12 17:24:14,718 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
578 |
+
2025-02-12 17:24:14,725 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
579 |
+
2025-02-12 17:24:15,300 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
580 |
+
2025-02-12 17:24:20,425 - auditqa.retriever - INFO - Retriever activated
|
581 |
+
2025-02-12 17:24:21,532 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
582 |
+
2025-02-12 17:24:24,987 - auditqa.retriever - INFO - retrieved paragraphs:3
|
583 |
+
2025-02-12 17:24:25,159 - auditqa.reader - INFO - Serverless endpoint activated
|
584 |
+
2025-02-12 17:24:25,160 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
585 |
+
2025-02-12 17:24:25,160 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
586 |
+
2025-02-12 17:25:53,593 - __main__ - INFO - App launched
|
587 |
+
2025-02-12 17:25:59,984 - datasets - INFO - PyTorch version 2.4.0 available.
|
588 |
+
2025-02-12 17:26:00,085 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
589 |
+
2025-02-12 17:26:02,069 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
590 |
+
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"
|
591 |
+
2025-02-12 17:26:02,088 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
592 |
+
2025-02-12 17:26:02,667 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
593 |
+
2025-02-12 17:26:21,726 - auditqa.retriever - INFO - Retriever activated
|
594 |
+
2025-02-12 17:26:22,790 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
595 |
+
2025-02-12 17:26:26,791 - auditqa.retriever - INFO - retrieved paragraphs:3
|
596 |
+
2025-02-12 17:26:26,973 - auditqa.reader - INFO - Serverless endpoint activated
|
597 |
+
2025-02-12 17:26:26,974 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
598 |
+
2025-02-12 17:26:26,974 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
599 |
+
2025-02-12 17:55:55,632 - __main__ - INFO - App launched
|
600 |
+
2025-02-12 17:56:02,784 - datasets - INFO - PyTorch version 2.4.0 available.
|
601 |
+
2025-02-12 17:56:02,895 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
602 |
+
2025-02-12 17:56:04,679 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
603 |
+
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"
|
604 |
+
2025-02-12 17:56:04,709 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
605 |
+
2025-02-12 17:56:05,298 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
606 |
+
2025-02-12 17:56:23,734 - auditqa.retriever - INFO - Retriever activated
|
607 |
+
2025-02-12 17:56:24,724 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
608 |
+
2025-02-12 17:56:29,137 - auditqa.retriever - INFO - retrieved paragraphs:3
|
609 |
+
2025-02-12 17:56:29,283 - auditqa.reader - INFO - Serverless endpoint activated
|
610 |
+
2025-02-12 17:56:29,284 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
611 |
+
2025-02-12 17:56:29,284 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
612 |
+
2025-02-12 17:58:14,545 - __main__ - INFO - App launched
|
613 |
+
2025-02-12 17:58:20,808 - datasets - INFO - PyTorch version 2.4.0 available.
|
614 |
+
2025-02-12 17:58:20,909 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
615 |
+
2025-02-12 17:58:22,834 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
616 |
+
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"
|
617 |
+
2025-02-12 17:58:22,850 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
618 |
+
2025-02-12 17:58:23,399 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
619 |
+
2025-02-12 17:58:52,340 - auditqa.retriever - INFO - Retriever activated
|
620 |
+
2025-02-12 17:58:53,416 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
621 |
+
2025-02-12 17:58:57,248 - auditqa.retriever - INFO - retrieved paragraphs:3
|
622 |
+
2025-02-12 17:58:57,394 - auditqa.reader - INFO - Serverless endpoint activated
|
623 |
+
2025-02-12 17:58:57,395 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
624 |
+
2025-02-12 17:58:57,396 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
625 |
+
2025-02-12 18:01:42,357 - __main__ - INFO - App launched
|
626 |
+
2025-02-12 18:01:48,530 - datasets - INFO - PyTorch version 2.4.0 available.
|
627 |
+
2025-02-12 18:01:48,626 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
628 |
+
2025-02-12 18:01:50,495 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
629 |
+
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"
|
630 |
+
2025-02-12 18:01:50,511 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
631 |
+
2025-02-12 18:01:51,077 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
632 |
+
2025-02-12 18:02:01,350 - auditqa.retriever - INFO - Retriever activated
|
633 |
+
2025-02-12 18:02:02,427 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
634 |
+
2025-02-12 18:02:05,785 - auditqa.retriever - INFO - retrieved paragraphs:3
|
635 |
+
2025-02-12 18:02:05,949 - auditqa.reader - INFO - Serverless endpoint activated
|
636 |
+
2025-02-12 18:02:05,949 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
637 |
+
2025-02-12 18:02:05,950 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
638 |
+
2025-02-12 18:17:44,247 - __main__ - INFO - App launched
|
639 |
+
2025-02-12 18:17:50,405 - datasets - INFO - PyTorch version 2.4.0 available.
|
640 |
+
2025-02-12 18:17:50,502 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
641 |
+
2025-02-12 18:17:52,308 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
642 |
+
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"
|
643 |
+
2025-02-12 18:17:52,378 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
644 |
+
2025-02-12 18:17:52,884 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
645 |
+
2025-02-12 18:18:00,945 - auditqa.retriever - INFO - Retriever activated
|
646 |
+
2025-02-12 18:18:01,932 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
647 |
+
2025-02-12 18:18:06,327 - auditqa.retriever - INFO - retrieved paragraphs:3
|
648 |
+
2025-02-12 18:18:06,479 - auditqa.reader - INFO - Serverless endpoint activated
|
649 |
+
2025-02-12 18:18:06,479 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
650 |
+
2025-02-12 18:18:06,479 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
651 |
+
2025-02-12 18:22:06,513 - __main__ - INFO - App launched
|
652 |
+
2025-02-12 18:22:13,289 - datasets - INFO - PyTorch version 2.4.0 available.
|
653 |
+
2025-02-12 18:22:13,395 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
654 |
+
2025-02-12 18:22:15,291 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
655 |
+
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"
|
656 |
+
2025-02-12 18:22:15,311 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
657 |
+
2025-02-12 18:22:15,873 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
658 |
+
2025-02-12 18:22:21,083 - __main__ - ERROR - Error getting client IP: type object 'Request' has no attribute 'current'
|
659 |
+
2025-02-12 18:22:25,387 - auditqa.retriever - INFO - Retriever activated
|
660 |
+
2025-02-12 18:22:26,489 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
661 |
+
2025-02-12 18:22:30,464 - auditqa.retriever - INFO - retrieved paragraphs:3
|
662 |
+
2025-02-12 18:22:30,615 - auditqa.reader - INFO - Serverless endpoint activated
|
663 |
+
2025-02-12 18:22:30,616 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
664 |
+
2025-02-12 18:22:30,616 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
665 |
+
2025-02-12 18:25:13,407 - __main__ - INFO - App launched
|
666 |
+
2025-02-12 18:25:19,896 - datasets - INFO - PyTorch version 2.4.0 available.
|
667 |
+
2025-02-12 18:25:19,994 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
668 |
+
2025-02-12 18:25:23,448 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
669 |
+
2025-02-12 18:25:24,044 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
670 |
+
2025-02-12 18:26:42,356 - datasets - INFO - PyTorch version 2.4.0 available.
|
671 |
+
2025-02-12 18:26:42,459 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
672 |
+
2025-02-12 18:26:44,351 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
673 |
+
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"
|
674 |
+
2025-02-12 18:26:44,376 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
675 |
+
2025-02-12 18:26:44,928 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
676 |
+
2025-02-12 18:26:52,960 - auditqa.retriever - INFO - Retriever activated
|
677 |
+
2025-02-12 18:26:53,948 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
678 |
+
2025-02-12 18:26:58,310 - auditqa.retriever - INFO - retrieved paragraphs:3
|
679 |
+
2025-02-12 18:26:58,471 - auditqa.reader - INFO - Serverless endpoint activated
|
680 |
+
2025-02-12 18:26:58,471 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
681 |
+
2025-02-12 18:26:58,471 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
682 |
+
2025-02-12 18:30:10,652 - __main__ - INFO - App launched
|
683 |
+
2025-02-12 18:30:17,544 - datasets - INFO - PyTorch version 2.4.0 available.
|
684 |
+
2025-02-12 18:30:17,647 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
685 |
+
2025-02-12 18:30:19,625 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
686 |
+
2025-02-12 18:30:20,203 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
687 |
+
2025-02-12 18:31:56,295 - datasets - INFO - PyTorch version 2.4.0 available.
|
688 |
+
2025-02-12 18:31:56,401 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
689 |
+
2025-02-12 18:31:58,333 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
690 |
+
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"
|
691 |
+
2025-02-12 18:31:58,358 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
692 |
+
2025-02-12 18:31:58,888 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
693 |
+
2025-02-12 18:32:20,920 - __main__ - DEBUG - Client IP detected: 127.0.0.1
|
694 |
+
2025-02-12 18:32:20,971 - __main__ - DEBUG - Chat function called with query: What are the key findings of this audit report?
|
695 |
+
2025-02-12 18:32:20,972 - __main__ - DEBUG - Client IP: 127.0.0.1
|
696 |
+
2025-02-12 18:32:20,972 - __main__ - DEBUG - Session ID: None
|
697 |
+
2025-02-12 18:32:21,265 - __main__ - DEBUG - Created new session: 5fa1cab1-d817-4f4b-93a2-9bbf7722d1b0
|
698 |
+
2025-02-12 18:32:21,265 - __main__ - DEBUG - Session duration: 9e-06
|
699 |
+
2025-02-12 18:32:21,266 - auditqa.retriever - INFO - Retriever activated
|
700 |
+
2025-02-12 18:32:22,420 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
701 |
+
2025-02-12 18:32:26,930 - auditqa.retriever - INFO - retrieved paragraphs:3
|
702 |
+
2025-02-12 18:32:27,106 - auditqa.reader - INFO - Serverless endpoint activated
|
703 |
+
2025-02-12 18:32:27,106 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
704 |
+
2025-02-12 18:32:27,106 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
705 |
+
2025-02-12 18:38:34,353 - __main__ - INFO - App launched
|
706 |
+
2025-02-12 18:38:40,566 - datasets - INFO - PyTorch version 2.4.0 available.
|
707 |
+
2025-02-12 18:38:40,663 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
708 |
+
2025-02-12 18:38:43,268 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
709 |
+
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"
|
710 |
+
2025-02-12 18:38:43,291 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
711 |
+
2025-02-12 18:38:43,843 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
712 |
+
2025-02-12 18:39:03,145 - __main__ - DEBUG - Client IP detected: 127.0.0.1
|
713 |
+
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?
|
714 |
+
2025-02-12 18:39:03,253 - __main__ - DEBUG - Client IP: 127.0.0.1
|
715 |
+
2025-02-12 18:39:03,253 - __main__ - DEBUG - Session ID: None
|
716 |
+
2025-02-12 18:39:03,544 - __main__ - DEBUG - Created new session: 807b8b99-cbc5-4e76-a439-be85b2466165
|
717 |
+
2025-02-12 18:39:03,545 - __main__ - DEBUG - Session duration: 3e-06
|
718 |
+
2025-02-12 18:39:03,545 - auditqa.retriever - INFO - Retriever activated
|
719 |
+
2025-02-12 18:39:04,650 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
720 |
+
2025-02-12 18:39:09,644 - auditqa.retriever - INFO - retrieved paragraphs:3
|
721 |
+
2025-02-12 18:39:09,808 - auditqa.reader - INFO - Serverless endpoint activated
|
722 |
+
2025-02-12 18:39:09,808 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
723 |
+
2025-02-12 18:39:09,809 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
724 |
+
2025-02-12 18:51:27,067 - __main__ - INFO - App launched
|
725 |
+
2025-02-12 18:51:57,940 - datasets - INFO - PyTorch version 2.4.0 available.
|
726 |
+
2025-02-12 18:51:58,043 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
727 |
+
2025-02-12 18:51:59,913 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
728 |
+
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"
|
729 |
+
2025-02-12 18:51:59,945 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
730 |
+
2025-02-12 18:52:00,521 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
731 |
+
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?
|
732 |
+
2025-02-12 18:52:06,583 - __main__ - DEBUG - Client IP: 127.0.0.1
|
733 |
+
2025-02-12 18:52:06,583 - __main__ - DEBUG - Session ID: None
|
734 |
+
2025-02-12 18:52:06,872 - __main__ - DEBUG - Created new session: 460c8b37-0e39-4a4f-814f-4daba0610b47
|
735 |
+
2025-02-12 18:52:06,873 - __main__ - DEBUG - Session duration: 2e-06
|
736 |
+
2025-02-12 18:52:06,873 - auditqa.retriever - INFO - Retriever activated
|
737 |
+
2025-02-12 18:52:07,844 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
738 |
+
2025-02-12 18:52:12,417 - auditqa.retriever - INFO - retrieved paragraphs:3
|
739 |
+
2025-02-12 18:52:12,579 - auditqa.reader - INFO - Serverless endpoint activated
|
740 |
+
2025-02-12 18:52:12,579 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
741 |
+
2025-02-12 18:52:12,579 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|
742 |
+
2025-02-12 18:55:25,611 - __main__ - INFO - App launched
|
743 |
+
2025-02-12 18:55:31,828 - datasets - INFO - PyTorch version 2.4.0 available.
|
744 |
+
2025-02-12 18:55:31,925 - sentence_transformers.SentenceTransformer - INFO - Load pretrained SentenceTransformer: BAAI/bge-large-en-v1.5
|
745 |
+
2025-02-12 18:55:51,845 - httpx - INFO - HTTP Request: GET https://checkip.amazonaws.com/ "HTTP/1.1 200 "
|
746 |
+
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"
|
747 |
+
2025-02-12 18:55:51,863 - httpx - INFO - HTTP Request: HEAD http://127.0.0.1:7860/ "HTTP/1.1 200 OK"
|
748 |
+
2025-02-12 18:55:52,441 - httpx - INFO - HTTP Request: GET https://api.gradio.app/pkg-version "HTTP/1.1 200 OK"
|
749 |
+
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?
|
750 |
+
2025-02-12 18:55:59,268 - __main__ - DEBUG - Client IP: 127.0.0.1
|
751 |
+
2025-02-12 18:55:59,268 - __main__ - DEBUG - Session ID: None
|
752 |
+
2025-02-12 18:55:59,573 - __main__ - DEBUG - Created new session: 34202723-3ad0-47ce-8e6f-f2c872adde24
|
753 |
+
2025-02-12 18:55:59,574 - __main__ - DEBUG - Session duration: 3e-06
|
754 |
+
2025-02-12 18:55:59,575 - auditqa.retriever - INFO - Retriever activated
|
755 |
+
2025-02-12 18:56:00,699 - sentence_transformers.cross_encoder.CrossEncoder - INFO - Use pytorch device: mps
|
756 |
+
2025-02-12 18:56:04,366 - auditqa.retriever - INFO - retrieved paragraphs:3
|
757 |
+
2025-02-12 18:56:04,551 - auditqa.reader - INFO - Serverless endpoint activated
|
758 |
+
2025-02-12 18:56:04,551 - auditqa.reader - INFO - Initializing InferenceClient with model: meta-llama/Meta-Llama-3-8B-Instruct
|
759 |
+
2025-02-12 18:56:04,551 - auditqa.reader - INFO - Serverless InferenceClient initialization successful
|