@@ -406,12 +406,7 @@ Methods:
406406Types:
407407
408408``` 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
415410```
416411
417412Methods:
@@ -440,8 +435,6 @@ Types:
440435from hanzoai.types import (
441436 CredentialItem,
442437 CredentialCreateResponse,
443- CredentialRetrieveResponse,
444- CredentialUpdateResponse,
445438 CredentialListResponse,
446439 CredentialDeleteResponse,
447440)
@@ -450,8 +443,6 @@ from hanzoai.types import (
450443Methods:
451444
452445- <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 >
455446- <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 >
456447- <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 >
457448
@@ -800,10 +791,8 @@ Types:
800791``` python
801792from hanzoai.types import (
802793 BlockTeamRequest,
803- LiteLlmModelTable,
804- LiteLlmTeamTable,
805- LiteLlmUserTable,
806794 Member,
795+ TeamCreateResponse,
807796 TeamUpdateResponse,
808797 TeamListResponse,
809798 TeamDeleteResponse,
@@ -820,7 +809,7 @@ from hanzoai.types import (
820809
821810Methods:
822811
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 >
824813- <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 >
825814- <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 >
826815- <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:
865854
866855``` python
867856from hanzoai.types import (
868- BudgetTable,
869857 OrgMember,
870- OrganizationMembershipTable,
871- OrganizationTableWithMembers,
872- UserRoles,
873858 OrganizationCreateResponse,
859+ OrganizationUpdateResponse,
874860 OrganizationListResponse,
875861 OrganizationDeleteResponse,
876862 OrganizationAddMemberResponse,
877863 OrganizationDeleteMemberResponse,
864+ OrganizationUpdateMemberResponse,
878865)
879866```
880867
881868Methods:
882869
883870- <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 >
885872- <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 >
886873- <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 >
887874- <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 >
888875- <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 >
890877
891878## Info
892879
893880Types:
894881
895882``` python
896- from hanzoai.types.organization import InfoDeprecatedResponse
883+ from hanzoai.types.organization import InfoRetrieveResponse, InfoDeprecatedResponse
897884```
898885
899886Methods:
900887
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 >
902889- <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 >
903890
904891# Customer
@@ -908,12 +895,12 @@ Types:
908895``` python
909896from hanzoai.types import (
910897 BlockUsers,
911- LiteLlmEndUserTable,
912898 CustomerCreateResponse,
913899 CustomerUpdateResponse,
914900 CustomerListResponse,
915901 CustomerDeleteResponse,
916902 CustomerBlockResponse,
903+ CustomerRetrieveInfoResponse,
917904 CustomerUnblockResponse,
918905)
919906```
@@ -925,20 +912,15 @@ Methods:
925912- <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 >
926913- <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 >
927914- <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 >
929916- <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 >
930917
931918# Spend
932919
933920Types:
934921
935922``` python
936- from hanzoai.types import (
937- LiteLlmSpendLogs,
938- SpendCalculateSpendResponse,
939- SpendListLogsResponse,
940- SpendListTagsResponse,
941- )
923+ from hanzoai.types import SpendCalculateSpendResponse, SpendListLogsResponse, SpendListTagsResponse
942924```
943925
944926Methods:
0 commit comments