Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

ENG-1393: Index improvements #360

Merged
merged 2 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 3 additions & 15 deletions aixplain/modules/model/index_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from aixplain.utils import config
from aixplain.modules.model.response import ModelResponse
from typing import Text, Optional, Union, Dict
from aixplain.modules.model.document_index import DocumentIndex
from aixplain.modules.model.record import Record
from typing import List


Expand Down Expand Up @@ -55,26 +55,14 @@ def search(self, query: str, top_k: int = 10) -> ModelResponse:
data = {"action": "search", "data": query, "payload": {"filters": {}, "top_k": top_k}}
return self.run(data=data)

def add(self, documents: List[DocumentIndex]) -> ModelResponse:
def upsert(self, documents: List[Record]) -> ModelResponse:
payloads = [doc.to_dict() for doc in documents]
data = {"action": "ingest", "data": "", "payload": {"payloads": payloads}}
response = self.run(data=data)
if response.status == ResponseStatus.SUCCESS:
response.data = payloads
return response
raise Exception(f"Failed to add documents: {response.error_message}")

def update(self, documents: List[DocumentIndex]) -> ModelResponse:
payloads = [
{"value": doc.value, "value_type": doc.value_type, "id": str(doc.id), "uri": doc.uri, "attributes": doc.attributes}
for doc in documents
]
data = {"action": "update", "data": "", "payload": {"payloads": payloads}}
response = self.run(data=data)
if response.status == ResponseStatus.SUCCESS:
response.data = payloads
return response
raise Exception(f"Failed to update documents: {response.error_message}")
raise Exception(f"Failed to upsert documents: {response.error_message}")

def count(self) -> float:
data = {"action": "count", "data": ""}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from uuid import uuid4


class DocumentIndex:
class Record:
def __init__(self, value: str, value_type: str = "text", id: Optional[str] = None, uri: str = "", attributes: dict = {}):
self.value = value
self.value_type = value_type
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/model/run_model_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ def test_run_async():


def test_index_model():
from aixplain.modules.model.document_index import DocumentIndex
from aixplain.modules.model.record import Record
from aixplain.factories import IndexFactory

index_model = IndexFactory.create("test", "test")
index_model.add([DocumentIndex(value="Hello, world!", value_type="text", uri="", attributes={})])
index_model.upsert([Record(value="Hello, world!", value_type="text", uri="", attributes={})])
response = index_model.search("Hello")
assert str(response.status) == "SUCCESS"
assert index_model.count() == 1
Expand Down
14 changes: 7 additions & 7 deletions tests/unit/index_model_test.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import requests_mock
from aixplain.enums import Function, ResponseStatus
from aixplain.modules.model.document_index import DocumentIndex
from aixplain.modules.model.record import Record
from aixplain.modules.model.response import ModelResponse
from aixplain.modules.model.index_model import IndexModel
from aixplain.utils import config
Expand Down Expand Up @@ -28,16 +28,16 @@ def test_add_success():
mock_response = {"status": "SUCCESS"}

mock_documents = [
DocumentIndex(value="Sample document content 1", value_type="text", id=0, uri="", attributes={}),
DocumentIndex(value="Sample document content 2", value_type="text", id=1, uri="", attributes={}),
Record(value="Sample document content 1", value_type="text", id=0, uri="", attributes={}),
Record(value="Sample document content 2", value_type="text", id=1, uri="", attributes={}),
]

with requests_mock.Mocker() as mock:
mock.post(execute_url, json=mock_response, status_code=200)

index_model = IndexModel(id=index_id, data=data, name="name", function=Function.SEARCH)

response = index_model.add(mock_documents)
response = index_model.upsert(mock_documents)

assert isinstance(response, ModelResponse)
assert response.status == ResponseStatus.SUCCESS
Expand All @@ -47,8 +47,8 @@ def test_update_success():
mock_response = {"status": "SUCCESS"}

mock_documents = [
DocumentIndex(value="Updated document content 1", value_type="text", id=0, uri="", attributes={}),
DocumentIndex(value="Updated document content 2", value_type="text", id=1, uri="", attributes={}),
Record(value="Updated document content 1", value_type="text", id=0, uri="", attributes={}),
Record(value="Updated document content 2", value_type="text", id=1, uri="", attributes={}),
]

with requests_mock.Mocker() as mock:
Expand All @@ -57,7 +57,7 @@ def test_update_success():

index_model = IndexModel(id=index_id, data=data, name="name", function=Function.SEARCH)

response = index_model.update(mock_documents)
response = index_model.upsert(mock_documents)

assert isinstance(response, ModelResponse)
assert response.status == ResponseStatus.SUCCESS
Expand Down