1
1
import requests_mock
2
2
from aixplain .enums import Function , ResponseStatus
3
- from aixplain .modules .model .document_index import DocumentIndex
3
+ from aixplain .modules .model .record import Record
4
4
from aixplain .modules .model .response import ModelResponse
5
5
from aixplain .modules .model .index_model import IndexModel
6
6
from aixplain .utils import config
@@ -28,16 +28,16 @@ def test_add_success():
28
28
mock_response = {"status" : "SUCCESS" }
29
29
30
30
mock_documents = [
31
- DocumentIndex (value = "Sample document content 1" , value_type = "text" , id = 0 , uri = "" , attributes = {}),
32
- DocumentIndex (value = "Sample document content 2" , value_type = "text" , id = 1 , uri = "" , attributes = {}),
31
+ Record (value = "Sample document content 1" , value_type = "text" , id = 0 , uri = "" , attributes = {}),
32
+ Record (value = "Sample document content 2" , value_type = "text" , id = 1 , uri = "" , attributes = {}),
33
33
]
34
34
35
35
with requests_mock .Mocker () as mock :
36
36
mock .post (execute_url , json = mock_response , status_code = 200 )
37
37
38
38
index_model = IndexModel (id = index_id , data = data , name = "name" , function = Function .SEARCH )
39
39
40
- response = index_model .add (mock_documents )
40
+ response = index_model .upsert (mock_documents )
41
41
42
42
assert isinstance (response , ModelResponse )
43
43
assert response .status == ResponseStatus .SUCCESS
@@ -47,8 +47,8 @@ def test_update_success():
47
47
mock_response = {"status" : "SUCCESS" }
48
48
49
49
mock_documents = [
50
- DocumentIndex (value = "Updated document content 1" , value_type = "text" , id = 0 , uri = "" , attributes = {}),
51
- DocumentIndex (value = "Updated document content 2" , value_type = "text" , id = 1 , uri = "" , attributes = {}),
50
+ Record (value = "Updated document content 1" , value_type = "text" , id = 0 , uri = "" , attributes = {}),
51
+ Record (value = "Updated document content 2" , value_type = "text" , id = 1 , uri = "" , attributes = {}),
52
52
]
53
53
54
54
with requests_mock .Mocker () as mock :
@@ -57,7 +57,7 @@ def test_update_success():
57
57
58
58
index_model = IndexModel (id = index_id , data = data , name = "name" , function = Function .SEARCH )
59
59
60
- response = index_model .update (mock_documents )
60
+ response = index_model .upsert (mock_documents )
61
61
62
62
assert isinstance (response , ModelResponse )
63
63
assert response .status == ResponseStatus .SUCCESS
0 commit comments