diff --git a/src/core/core_filter.py b/src/core/core_filter.py index f62f1d9..27aaafd 100644 --- a/src/core/core_filter.py +++ b/src/core/core_filter.py @@ -21,7 +21,7 @@ # Local imports from ..utils.owui_utils.configuration import create_config -from ..utils.owui_utils.constants import TOOL_SYSTEM_MESSAGE +from ..utils.constants import TOOL_SYSTEM_MESSAGE from ..utils.owui_utils.pipeline_utils import ResponseUtils, check_for_env_key, screenpipe_search, SearchParameters, PipeSearch, FilterUtils # Unpack the config diff --git a/src/utils/owui_utils/constants.py b/src/utils/constants.py similarity index 100% rename from src/utils/owui_utils/constants.py rename to src/utils/constants.py diff --git a/src/utils/owui_utils/pipeline_utils.py b/src/utils/owui_utils/pipeline_utils.py index 9911db1..ae6fa1e 100644 --- a/src/utils/owui_utils/pipeline_utils.py +++ b/src/utils/owui_utils/pipeline_utils.py @@ -6,7 +6,7 @@ import requests import json -from .constants import DEFAULT_QUERY, DEFAULT_STREAM, EXAMPLE_SEARCH_PARAMS, EXAMPLE_SEARCH_RESULTS, FINAL_RESPONSE_SYSTEM_MESSAGE, FINAL_RESPONSE_USER_MESSAGE +from ..constants import DEFAULT_QUERY, DEFAULT_STREAM, EXAMPLE_SEARCH_PARAMS, EXAMPLE_SEARCH_RESULTS, FINAL_RESPONSE_SYSTEM_MESSAGE, FINAL_RESPONSE_USER_MESSAGE MAX_SEARCH_LIMIT = 99