@@ -406,12 +406,7 @@ Methods:
406
406
Types:
407
407
408
408
``` python
409
- from hanzoai.types.fine_tuning import (
410
- LiteLlmFineTuningJobCreate,
411
- JobCreateResponse,
412
- JobRetrieveResponse,
413
- JobListResponse,
414
- )
409
+ from hanzoai.types.fine_tuning import JobCreateResponse, JobRetrieveResponse, JobListResponse
415
410
```
416
411
417
412
Methods:
@@ -440,8 +435,6 @@ Types:
440
435
from hanzoai.types import (
441
436
CredentialItem,
442
437
CredentialCreateResponse,
443
- CredentialRetrieveResponse,
444
- CredentialUpdateResponse,
445
438
CredentialListResponse,
446
439
CredentialDeleteResponse,
447
440
)
@@ -450,8 +443,6 @@ from hanzoai.types import (
450
443
Methods:
451
444
452
445
- <code title =" post /credentials " >client.credentials.<a href =" ./src/hanzoai/resources/credentials.py " >create</a >(\*\* <a href =" src/hanzoai/types/credential_create_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/credential_create_response.py " >object</a ></code >
453
- - <code title =" get /credentials/{credential_name} " >client.credentials.<a href =" ./src/hanzoai/resources/credentials.py " >retrieve</a >(credential_name) -> <a href =" ./src/hanzoai/types/credential_retrieve_response.py " >object</a ></code >
454
- - <code title =" put /credentials/{credential_name} " >client.credentials.<a href =" ./src/hanzoai/resources/credentials.py " >update</a >(path_credential_name, \*\* <a href =" src/hanzoai/types/credential_update_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/credential_update_response.py " >object</a ></code >
455
446
- <code title =" get /credentials " >client.credentials.<a href =" ./src/hanzoai/resources/credentials.py " >list</a >() -> <a href =" ./src/hanzoai/types/credential_list_response.py " >object</a ></code >
456
447
- <code title =" delete /credentials/{credential_name} " >client.credentials.<a href =" ./src/hanzoai/resources/credentials.py " >delete</a >(credential_name) -> <a href =" ./src/hanzoai/types/credential_delete_response.py " >object</a ></code >
457
448
@@ -800,10 +791,8 @@ Types:
800
791
``` python
801
792
from hanzoai.types import (
802
793
BlockTeamRequest,
803
- LiteLlmModelTable,
804
- LiteLlmTeamTable,
805
- LiteLlmUserTable,
806
794
Member,
795
+ TeamCreateResponse,
807
796
TeamUpdateResponse,
808
797
TeamListResponse,
809
798
TeamDeleteResponse,
@@ -820,7 +809,7 @@ from hanzoai.types import (
820
809
821
810
Methods:
822
811
823
- - <code title =" post /team/new " >client.team.<a href =" ./src/hanzoai/resources/team/team.py " >create</a >(\*\* <a href =" src/hanzoai/types/team_create_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/lite_llm_team_table .py " >LiteLlmTeamTable </a ></code >
812
+ - <code title =" post /team/new " >client.team.<a href =" ./src/hanzoai/resources/team/team.py " >create</a >(\*\* <a href =" src/hanzoai/types/team_create_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/team_create_response .py " >TeamCreateResponse </a ></code >
824
813
- <code title =" post /team/update " >client.team.<a href =" ./src/hanzoai/resources/team/team.py " >update</a >(\*\* <a href =" src/hanzoai/types/team_update_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/team_update_response.py " >object</a ></code >
825
814
- <code title =" get /team/list " >client.team.<a href =" ./src/hanzoai/resources/team/team.py " >list</a >(\*\* <a href =" src/hanzoai/types/team_list_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/team_list_response.py " >object</a ></code >
826
815
- <code title =" post /team/delete " >client.team.<a href =" ./src/hanzoai/resources/team/team.py " >delete</a >(\*\* <a href =" src/hanzoai/types/team_delete_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/team_delete_response.py " >object</a ></code >
@@ -865,40 +854,38 @@ Types:
865
854
866
855
``` python
867
856
from hanzoai.types import (
868
- BudgetTable,
869
857
OrgMember,
870
- OrganizationMembershipTable,
871
- OrganizationTableWithMembers,
872
- UserRoles,
873
858
OrganizationCreateResponse,
859
+ OrganizationUpdateResponse,
874
860
OrganizationListResponse,
875
861
OrganizationDeleteResponse,
876
862
OrganizationAddMemberResponse,
877
863
OrganizationDeleteMemberResponse,
864
+ OrganizationUpdateMemberResponse,
878
865
)
879
866
```
880
867
881
868
Methods:
882
869
883
870
- <code title =" post /organization/new " >client.organization.<a href =" ./src/hanzoai/resources/organization/organization.py " >create</a >(\*\* <a href =" src/hanzoai/types/organization_create_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/organization_create_response.py " >OrganizationCreateResponse</a ></code >
884
- - <code title =" patch /organization/update " >client.organization.<a href =" ./src/hanzoai/resources/organization/organization.py " >update</a >(\*\* <a href =" src/hanzoai/types/organization_update_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/organization_table_with_members .py " >OrganizationTableWithMembers </a ></code >
871
+ - <code title =" patch /organization/update " >client.organization.<a href =" ./src/hanzoai/resources/organization/organization.py " >update</a >(\*\* <a href =" src/hanzoai/types/organization_update_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/organization_update_response .py " >OrganizationUpdateResponse </a ></code >
885
872
- <code title =" get /organization/list " >client.organization.<a href =" ./src/hanzoai/resources/organization/organization.py " >list</a >() -> <a href =" ./src/hanzoai/types/organization_list_response.py " >OrganizationListResponse</a ></code >
886
873
- <code title =" delete /organization/delete " >client.organization.<a href =" ./src/hanzoai/resources/organization/organization.py " >delete</a >(\*\* <a href =" src/hanzoai/types/organization_delete_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/organization_delete_response.py " >OrganizationDeleteResponse</a ></code >
887
874
- <code title =" post /organization/member_add " >client.organization.<a href =" ./src/hanzoai/resources/organization/organization.py " >add_member</a >(\*\* <a href =" src/hanzoai/types/organization_add_member_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/organization_add_member_response.py " >OrganizationAddMemberResponse</a ></code >
888
875
- <code title =" delete /organization/member_delete " >client.organization.<a href =" ./src/hanzoai/resources/organization/organization.py " >delete_member</a >(\*\* <a href =" src/hanzoai/types/organization_delete_member_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/organization_delete_member_response.py " >object</a ></code >
889
- - <code title =" patch /organization/member_update " >client.organization.<a href =" ./src/hanzoai/resources/organization/organization.py " >update_member</a >(\*\* <a href =" src/hanzoai/types/organization_update_member_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/organization_membership_table .py " >OrganizationMembershipTable </a ></code >
876
+ - <code title =" patch /organization/member_update " >client.organization.<a href =" ./src/hanzoai/resources/organization/organization.py " >update_member</a >(\*\* <a href =" src/hanzoai/types/organization_update_member_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/organization_update_member_response .py " >OrganizationUpdateMemberResponse </a ></code >
890
877
891
878
## Info
892
879
893
880
Types:
894
881
895
882
``` python
896
- from hanzoai.types.organization import InfoDeprecatedResponse
883
+ from hanzoai.types.organization import InfoRetrieveResponse, InfoDeprecatedResponse
897
884
```
898
885
899
886
Methods:
900
887
901
- - <code title =" get /organization/info " >client.organization.info.<a href =" ./src/hanzoai/resources/organization/info.py " >retrieve</a >(\*\* <a href =" src/hanzoai/types/organization/info_retrieve_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/organization_table_with_members .py " >OrganizationTableWithMembers </a ></code >
888
+ - <code title =" get /organization/info " >client.organization.info.<a href =" ./src/hanzoai/resources/organization/info.py " >retrieve</a >(\*\* <a href =" src/hanzoai/types/organization/info_retrieve_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/organization/info_retrieve_response .py " >InfoRetrieveResponse </a ></code >
902
889
- <code title =" post /organization/info " >client.organization.info.<a href =" ./src/hanzoai/resources/organization/info.py " >deprecated</a >(\*\* <a href =" src/hanzoai/types/organization/info_deprecated_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/organization/info_deprecated_response.py " >object</a ></code >
903
890
904
891
# Customer
@@ -908,12 +895,12 @@ Types:
908
895
``` python
909
896
from hanzoai.types import (
910
897
BlockUsers,
911
- LiteLlmEndUserTable,
912
898
CustomerCreateResponse,
913
899
CustomerUpdateResponse,
914
900
CustomerListResponse,
915
901
CustomerDeleteResponse,
916
902
CustomerBlockResponse,
903
+ CustomerRetrieveInfoResponse,
917
904
CustomerUnblockResponse,
918
905
)
919
906
```
@@ -925,20 +912,15 @@ Methods:
925
912
- <code title =" get /customer/list " >client.customer.<a href =" ./src/hanzoai/resources/customer.py " >list</a >() -> <a href =" ./src/hanzoai/types/customer_list_response.py " >CustomerListResponse</a ></code >
926
913
- <code title =" post /customer/delete " >client.customer.<a href =" ./src/hanzoai/resources/customer.py " >delete</a >(\*\* <a href =" src/hanzoai/types/customer_delete_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/customer_delete_response.py " >object</a ></code >
927
914
- <code title =" post /customer/block " >client.customer.<a href =" ./src/hanzoai/resources/customer.py " >block</a >(\*\* <a href =" src/hanzoai/types/customer_block_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/customer_block_response.py " >object</a ></code >
928
- - <code title =" get /customer/info " >client.customer.<a href =" ./src/hanzoai/resources/customer.py " >retrieve_info</a >(\*\* <a href =" src/hanzoai/types/customer_retrieve_info_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/lite_llm_end_user_table .py " >LiteLlmEndUserTable </a ></code >
915
+ - <code title =" get /customer/info " >client.customer.<a href =" ./src/hanzoai/resources/customer.py " >retrieve_info</a >(\*\* <a href =" src/hanzoai/types/customer_retrieve_info_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/customer_retrieve_info_response .py " >CustomerRetrieveInfoResponse </a ></code >
929
916
- <code title =" post /customer/unblock " >client.customer.<a href =" ./src/hanzoai/resources/customer.py " >unblock</a >(\*\* <a href =" src/hanzoai/types/customer_unblock_params.py " >params</a >) -> <a href =" ./src/hanzoai/types/customer_unblock_response.py " >object</a ></code >
930
917
931
918
# Spend
932
919
933
920
Types:
934
921
935
922
``` python
936
- from hanzoai.types import (
937
- LiteLlmSpendLogs,
938
- SpendCalculateSpendResponse,
939
- SpendListLogsResponse,
940
- SpendListTagsResponse,
941
- )
923
+ from hanzoai.types import SpendCalculateSpendResponse, SpendListLogsResponse, SpendListTagsResponse
942
924
```
943
925
944
926
Methods:
0 commit comments