Skip to content
Merged
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
92aad6a
Merge to prod (#530)
ikxplain May 19, 2025
056482e
merge to test (#553)
hadi-aix Jun 18, 2025
f1f3d29
removed cache pipeline test
Jun 19, 2025
f6232da
merge to test (#557)
hadi-aix Jun 19, 2025
41d3f23
Development (#562)
hadi-aix Jun 20, 2025
6540afe
Add HF_TOKEN to github workflow (#563)
lucas-aixplain Jun 20, 2025
a0e184f
Trigger functional tests
hadi-aix Jun 22, 2025
6678ab1
Merge branch 'test'
hadi-aix Jun 24, 2025
892a803
Hotfix: removed extra indent (#566)
shreyasXplain Jun 24, 2025
e24fe9c
fixing the tests (#568)
Muhammad-Elmallah Jun 25, 2025
7ec42e8
updated requirements and documentation (#572)
ahmetgunduz Jun 27, 2025
d1fd676
Update pyproject.toml (#573)
ahmetgunduz Jun 27, 2025
69b9c29
Update pyproject.toml (#574)
ahmetgunduz Jun 27, 2025
1c2dd59
Update README.md (#576)
ahmetgunduz Jun 27, 2025
5ece05b
Merge to test (#580)
hadi-aix Jul 7, 2025
30f21f3
Merge to test (#584)
hadi-aix Jul 14, 2025
8cbcd00
Development (#586)
hadi-aix Jul 15, 2025
f58b009
Development (#588)
hadi-aix Jul 15, 2025
fb1359e
push to production (#591)
hadi-aix Jul 17, 2025
fef8f28
Development (#593)
hadi-aix Jul 17, 2025
350c7e4
Development (#595)
hadi-aix Jul 17, 2025
cfd25b1
Merge branch 'main' into test
hadi-aix Jul 17, 2025
cbb1962
Resolve merge conflicts by accepting current changes
ahmetgunduz Aug 15, 2025
2e1be99
Custom inspector policy (#620)
yunsukim86 Aug 15, 2025
5f25c3f
Merge branch 'development' of https://github.com/aixplain/aiXplain in…
ahmetgunduz Aug 18, 2025
6ff939a
non_existent_llm error fix
ahmetgunduz Aug 19, 2025
f004944
mentalist initialization fix
ahmetgunduz Aug 19, 2025
3261d6c
adde claude model instead of yi-large for search test with model ids
ahmetgunduz Aug 19, 2025
b7c9032
remove unnecessary model tests (#634)
hadi-aix Aug 20, 2025
ed66573
Update utils.py (#612)
hadi-aix Aug 20, 2025
0146a9a
Mark inspector as private beta (#636)
yunsukim86 Aug 21, 2025
4efabbb
ENG-2411 Replaced AgentTask with WorkflowTask while keeping the backw…
ahmetgunduz Aug 22, 2025
8b67b64
PROD-1840: Evolver v2 (#454)
thiago-aixplain Aug 26, 2025
314284d
Update agent_task.py
ahmetgunduz Aug 26, 2025
d5c9b34
added pagination t get model by ids
ahmetgunduz Aug 27, 2025
5717ad6
added pagination t get model by ids
ahmetgunduz Aug 27, 2025
7b69b4b
Eng 2281 Add file parsing for Index (#551)
basitanees Aug 28, 2025
7ccccd5
HOTFIX: remove model deletion for index tests (#645)
basitanees Aug 28, 2025
c13838f
add utility model support and add test (#642)
basitanees Aug 28, 2025
66e0f1c
updated code parse undecorated (#647)
ahmetgunduz Aug 28, 2025
a38ace1
ENG-2501 evolver params renaming (#649)
ahmetgunduz Aug 31, 2025
86284f3
ENG-2501-Evolver-Resolve-given-comments-for-standardization (#650)
ahmetgunduz Aug 31, 2025
e5a22fc
ENG-2501-Evolver-Resolve-given-comments-for-standardization (#651)
ahmetgunduz Sep 1, 2025
3f982bc
added supported tools for failure cases (#652)
ahmetgunduz Sep 1, 2025
7a520ea
fix tasks duplication in create team from yaml (#653)
ahmetgunduz Sep 1, 2025
961b6df
Update main.yaml (#655)
ahmetgunduz Sep 1, 2025
de3035e
Update pyproject.toml (#657)
ahmetgunduz Sep 1, 2025
3b57ac3
Fix python version bug (#658)
basitanees Sep 2, 2025
24c89e6
Update pyproject.toml (#659)
ahmetgunduz Sep 2, 2025
efa49ef
Merge branch 'test' into development
ahmetgunduz Sep 2, 2025
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
4 changes: 2 additions & 2 deletions aixplain/modules/model/index_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,11 @@ def search(self, query: str, top_k: int = 10, filters: List[IndexFilter] = []) -
}
return self.run(data=data)

def upsert(self, documents: List[Record] | str, splitter: Optional[Splitter] = None) -> ModelResponse:
def upsert(self, documents: Union[List[Record], str], splitter: Optional[Splitter] = None) -> ModelResponse:
"""Upsert documents into the index

Args:
documents (List[Record] | str): List of documents to be upserted or a file path
documents (Union[List[Record], str]): List of documents to be upserted or a file path
splitter (Splitter, optional): Splitter to be applied. Defaults to None.

Returns:
Expand Down