fixed find and replace issue

This commit is contained in:
Evan Lohn
2025-01-30 11:31:55 -08:00
parent f33a2ffb01
commit e191e514b9
4 changed files with 4 additions and 4 deletions

View File

@ -51,7 +51,7 @@ from onyx.context.search.enums import SearchType
from onyx.context.search.models import InferenceSection
from onyx.context.search.models import RetrievalDetails
from onyx.context.search.models import SearchRequest
from onyx.context.search.retrieve_orig_question_documents.search_runner import (
from onyx.context.search.retrieval.search_runner import (
inference_sections_from_ids,
)
from onyx.context.search.utils import chunks_or_sections_to_search_docs

View File

@ -24,7 +24,7 @@ from onyx.context.search.models import SearchRequest
from onyx.context.search.postprocessing.postprocessing import cleanup_chunks
from onyx.context.search.postprocessing.postprocessing import search_postprocessing
from onyx.context.search.preprocessing.preprocessing import retrieval_preprocessing
from onyx.context.search.retrieve_orig_question_documents.search_runner import (
from onyx.context.search.retrieval.search_runner import (
retrieve_chunks,
)
from onyx.context.search.utils import inference_section_from_chunks

View File

@ -20,7 +20,7 @@ from onyx.context.search.models import SearchRequest
from onyx.context.search.preprocessing.access_filters import (
build_access_filters_for_user,
)
from onyx.context.search.retrieve_orig_question_documents.search_runner import (
from onyx.context.search.retrieval.search_runner import (
remove_stop_words_and_punctuation,
)
from onyx.db.engine import CURRENT_TENANT_ID_CONTEXTVAR

View File

@ -11,7 +11,7 @@ from onyx.configs.model_configs import FAST_GEN_AI_MODEL_VERSION
from onyx.configs.model_configs import GEN_AI_API_KEY
from onyx.configs.model_configs import GEN_AI_MODEL_VERSION
from onyx.context.search.models import SavedSearchSettings
from onyx.context.search.retrieve_orig_question_documents.search_runner import (
from onyx.context.search.retrieval.search_runner import (
download_nltk_data,
)
from onyx.db.connector import check_connectors_exist