Spaces:
Paused
Paused
Commit Β·
33c11e4
1
Parent(s): 417c5c4
Upd logo + static
Browse files- app.py +1 -1
- memo/history.py +1 -1
- memo/memory.py +1 -1
- static/icon.svg +8 -0
- static/index.html +3 -2
- utils/embeddings.py +1 -1
- utils/logger.py +1 -0
- utils/rotator.py +1 -1
app.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
#
|
| 2 |
import os
|
| 3 |
import time
|
| 4 |
import logging
|
|
|
|
| 1 |
+
# app.py
|
| 2 |
import os
|
| 3 |
import time
|
| 4 |
import logging
|
memo/history.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
#
|
| 2 |
import os
|
| 3 |
import json
|
| 4 |
import logging
|
|
|
|
| 1 |
+
# memo/history.py
|
| 2 |
import os
|
| 3 |
import json
|
| 4 |
import logging
|
memo/memory.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
#
|
| 2 |
from collections import deque, defaultdict
|
| 3 |
from typing import List, Dict, Any, Optional
|
| 4 |
import time
|
|
|
|
| 1 |
+
# memo/memory.py
|
| 2 |
from collections import deque, defaultdict
|
| 3 |
from typing import List, Dict, Any, Optional
|
| 4 |
import time
|
static/icon.svg
ADDED
|
|
static/index.html
CHANGED
|
@@ -4,7 +4,8 @@
|
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
<title>Medical AI Assistant</title>
|
| 7 |
-
<link rel="
|
|
|
|
| 8 |
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
|
| 9 |
</head>
|
| 10 |
<body>
|
|
@@ -201,6 +202,6 @@
|
|
| 201 |
</div>
|
| 202 |
</div>
|
| 203 |
|
| 204 |
-
<script src="app.js"></script>
|
| 205 |
</body>
|
| 206 |
</html>
|
|
|
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
<title>Medical AI Assistant</title>
|
| 7 |
+
<link rel="icon" type="image/svg+xml" href="/static/icon.svg">
|
| 8 |
+
<link rel="stylesheet" href="/static/styles.css">
|
| 9 |
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
|
| 10 |
</head>
|
| 11 |
<body>
|
|
|
|
| 202 |
</div>
|
| 203 |
</div>
|
| 204 |
|
| 205 |
+
<script src="/static/app.js"></script>
|
| 206 |
</body>
|
| 207 |
</html>
|
utils/embeddings.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
#
|
| 2 |
import numpy as np
|
| 3 |
from typing import List, Union
|
| 4 |
import logging
|
|
|
|
| 1 |
+
# utils/embeddings.py
|
| 2 |
import numpy as np
|
| 3 |
from typing import List, Union
|
| 4 |
import logging
|
utils/logger.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
import logging
|
| 2 |
import sys
|
| 3 |
from typing import Optional
|
|
|
|
| 1 |
+
# utils/logger.py
|
| 2 |
import logging
|
| 3 |
import sys
|
| 4 |
from typing import Optional
|
utils/rotator.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
#
|
| 2 |
import os
|
| 3 |
import itertools
|
| 4 |
import logging
|
|
|
|
| 1 |
+
# utils/rotator.py
|
| 2 |
import os
|
| 3 |
import itertools
|
| 4 |
import logging
|