Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

ENG-1332: Started implementing new aixplain programmatic api #356

Merged
merged 40 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
310f591
ENG-1332: Started implementing new aixplain programmatic api
kadirpekel Jan 6, 2025
250d608
ENG-1332: removed legacy counterparts
kadirpekel Jan 7, 2025
47d877c
ENG-1332: many improvements
kadirpekel Jan 7, 2025
d6766f5
ENG-1332: reorganization on the module structure
kadirpekel Jan 7, 2025
82e59ab
ENG-1332: packaging tweak
kadirpekel Jan 7, 2025
c82f891
ENG-1332: enums autogenerated with foundation
kadirpekel Jan 8, 2025
63ff3f4
ENG-1332: fixed and completed enums foundation
kadirpekel Jan 8, 2025
e7cbcd9
ENG-1332: bug fix
kadirpekel Jan 8, 2025
dbc36d8
ENG-1332: generate.py called with prod account
kadirpekel Jan 8, 2025
7eba55b
ENG-1332: enums.py cleaned up
kadirpekel Jan 8, 2025
af2aa3a
ENG-1332: relocated v2 module into main aixplain module
kadirpekel Jan 8, 2025
e280fdc
ENG-1332: fixed dynamic enum assignment
kadirpekel Jan 8, 2025
37b2e00
ENG-1332: static enum and resource definition on main class
kadirpekel Jan 8, 2025
0473a1f
ENG-1332: first set of unit tests for v2
kadirpekel Jan 10, 2025
a2261c7
ENG-1332: base resource unit tests for v2
kadirpekel Jan 10, 2025
dd429a4
ENG-1332: completed critical unit tests for v2
kadirpekel Jan 10, 2025
d6d7d5e
ENG-1332: fixed type hints to make autocompletion work well
kadirpekel Jan 14, 2025
1da9d6f
ENG-1332: Many improvements on class structure
kadirpekel Jan 14, 2025
8c67d8a
ENG-1332: Added missing resource implementations
kadirpekel Jan 14, 2025
44c52f0
ENG-1331: Fixed unit tests
kadirpekel Jan 20, 2025
7c1b57f
added api key
xainaz Jan 20, 2025
bdfa2c2
removed api-key
xainaz Jan 21, 2025
b285d04
ENG-1332: added missing factory methods. revisited typeddict optional…
kadirpekel Jan 21, 2025
38af85f
ENG-1332: Main class constructor revisited
kadirpekel Jan 21, 2025
fdd9603
ENG-1332: fixed tests
kadirpekel Jan 22, 2025
910aba4
ENG-1440: refactoring factories to aiXplain SDK v2 (#371)
thiago-aixplain Jan 22, 2025
a4cc2e2
ENG-1332: progress on paging
kadirpekel Jan 22, 2025
413f5e6
ENG-1332: removed Resource/Page wrappers
kadirpekel Jan 22, 2025
fbfe1c3
ENG-1332: Got the v2 testable through functional tests
kadirpekel Jan 23, 2025
111cb82
ENG-1332: factory var name restored to original
kadirpekel Jan 23, 2025
0305520
ENG-1332: quick revisit all functional tests to employ v2 counterparts
kadirpekel Jan 23, 2025
fe5a624
ENG-1332: Fixed many frictions in functional test adoption
kadirpekel Jan 24, 2025
5d22724
Last fixes in repo
thiago-aixplain Jan 26, 2025
fb3b832
Adding Team agent class on SDK v2
thiago-aixplain Jan 26, 2025
4e66d75
Breaking down general assets
thiago-aixplain Jan 26, 2025
c9959a9
ENG-1332: parameterized general asset tests
kadirpekel Jan 28, 2025
bd0b8cc
ENG-1332: Fixed team agent tests
kadirpekel Jan 28, 2025
656b905
Fixing APIKey getter in v2
thiago-aixplain Jan 29, 2025
2f44dfb
ENG-1332: Several bug fixes
kadirpekel Jan 30, 2025
090b562
Merge Development
thiago-aixplain Feb 4, 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
15 changes: 15 additions & 0 deletions aixplain_v2/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from .base import BaseResource, BaseListParams, ModelListParams, Aixplain
from .enums import Function, Supplier, OwnershipType, SortBy, SortOrder, Language

__all__ = [
"BaseResource",
"BaseListParams",
"ModelListParams",
"Aixplain",
"Function",
"Supplier",
"OwnershipType",
"SortBy",
"SortOrder",
"Language",
]
Loading