Rename package to searchbox

This commit renames the package from vector-search-mcp to searchbox. The
package imports and executable name are updated accordingly.
This commit is contained in:
2025-09-27 01:44:46 +00:00
parent e162b0613b
commit cda334a45d
18 changed files with 107 additions and 107 deletions

View File

@@ -3,8 +3,8 @@ from unittest.mock import AsyncMock, MagicMock, patch
import pytest
from qdrant_client import models
from vector_search_mcp.engine import get_engine
from vector_search_mcp.models import Match, MatchAny, MatchExclude, SearchRow
from searchbox.engine import get_engine
from searchbox.models import Match, MatchAny, MatchExclude, SearchRow
@pytest.fixture(autouse=True)