Spaces:
Runtime error
Runtime error
dylanglenister
commited on
Commit
·
d0aabb7
1
Parent(s):
ba387c4
Updating file path information
Browse files- src/config/settings.py +1 -1
- src/core/state.py +1 -1
- src/data/connection.py +1 -1
- src/data/medical_kb.py +1 -1
- src/services/audio_transcription.py +1 -1
- src/services/gemini.py +1 -1
- src/services/nvidia.py +1 -1
- src/services/summariser.py +1 -1
- src/utils/embeddings.py +1 -1
- src/utils/file_relevance.py +1 -1
- src/utils/logger.py +1 -1
- src/utils/rotator.py +1 -1
- src/utils/text_processing.py +1 -1
src/config/settings.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# config/settings.py
|
| 2 |
|
| 3 |
class Settings:
|
| 4 |
"""Application-wide settings."""
|
|
|
|
| 1 |
+
# src/config/settings.py
|
| 2 |
|
| 3 |
class Settings:
|
| 4 |
"""Application-wide settings."""
|
src/core/state.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# core/state.py
|
| 2 |
|
| 3 |
from src.core.memory_manager import MemoryManager
|
| 4 |
from src.utils.embeddings import EmbeddingClient
|
|
|
|
| 1 |
+
# src/core/state.py
|
| 2 |
|
| 3 |
from src.core.memory_manager import MemoryManager
|
| 4 |
from src.utils.embeddings import EmbeddingClient
|
src/data/connection.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# data/repositories/base.py
|
| 2 |
|
| 3 |
import json
|
| 4 |
import os
|
|
|
|
| 1 |
+
# src/data/repositories/base.py
|
| 2 |
|
| 3 |
import json
|
| 4 |
import os
|
src/data/medical_kb.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# data/medical_kb.py
|
| 2 |
|
| 3 |
# TODO This should be replaced with a more robust knowledge base system that can be updated by the user.
|
| 4 |
# Medical Knowledge Base for the Medical AI Assistant
|
|
|
|
| 1 |
+
# src/data/medical_kb.py
|
| 2 |
|
| 3 |
# TODO This should be replaced with a more robust knowledge base system that can be updated by the user.
|
| 4 |
# Medical Knowledge Base for the Medical AI Assistant
|
src/services/audio_transcription.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# services/audio_transcription.py
|
| 2 |
|
| 3 |
import os
|
| 4 |
import tempfile
|
|
|
|
| 1 |
+
# src/services/audio_transcription.py
|
| 2 |
|
| 3 |
import os
|
| 4 |
import tempfile
|
src/services/gemini.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# services/gemini.py
|
| 2 |
|
| 3 |
from src.utils.logger import logger
|
| 4 |
from src.utils.rotator import APIKeyRotator
|
|
|
|
| 1 |
+
# src/services/gemini.py
|
| 2 |
|
| 3 |
from src.utils.logger import logger
|
| 4 |
from src.utils.rotator import APIKeyRotator
|
src/services/nvidia.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# services/nvidia.py
|
| 2 |
|
| 3 |
import os
|
| 4 |
|
|
|
|
| 1 |
+
# src/services/nvidia.py
|
| 2 |
|
| 3 |
import os
|
| 4 |
|
src/services/summariser.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# services/summariser.py
|
| 2 |
|
| 3 |
from src.core import prompt_builder
|
| 4 |
from src.services.gemini import gemini_chat
|
|
|
|
| 1 |
+
# src/services/summariser.py
|
| 2 |
|
| 3 |
from src.core import prompt_builder
|
| 4 |
from src.services.gemini import gemini_chat
|
src/utils/embeddings.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# utils/embeddings.py
|
| 2 |
|
| 3 |
import numpy as np
|
| 4 |
from numpy.typing import NDArray
|
|
|
|
| 1 |
+
# src/utils/embeddings.py
|
| 2 |
|
| 3 |
import numpy as np
|
| 4 |
from numpy.typing import NDArray
|
src/utils/file_relevance.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# utils/file_relevance.py
|
| 2 |
|
| 3 |
import json
|
| 4 |
from dataclasses import dataclass
|
|
|
|
| 1 |
+
# src/utils/file_relevance.py
|
| 2 |
|
| 3 |
import json
|
| 4 |
from dataclasses import dataclass
|
src/utils/logger.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# utils/logger.py
|
| 2 |
|
| 3 |
import inspect
|
| 4 |
import logging
|
|
|
|
| 1 |
+
# src/utils/logger.py
|
| 2 |
|
| 3 |
import inspect
|
| 4 |
import logging
|
src/utils/rotator.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# utils/rotator.py
|
| 2 |
|
| 3 |
import itertools
|
| 4 |
import os
|
|
|
|
| 1 |
+
# src/utils/rotator.py
|
| 2 |
|
| 3 |
import itertools
|
| 4 |
import os
|
src/utils/text_processing.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# utils/text_processing.py
|
| 2 |
|
| 3 |
import re
|
| 4 |
|
|
|
|
| 1 |
+
# src/utils/text_processing.py
|
| 2 |
|
| 3 |
import re
|
| 4 |
|