Skip to content

Commit

Permalink
build: Rebuild for 3.6.0+ai.plus
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff-va committed Nov 5, 2024
1 parent 871a93e commit 1e16c34
Show file tree
Hide file tree
Showing 768 changed files with 28,684 additions and 4,815 deletions.
126 changes: 120 additions & 6 deletions .openapi-generator/FILES

Large diffs are not rendered by default.

132 changes: 120 additions & 12 deletions README.md

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions docs/AIGeneratedImage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# AIGeneratedImage


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **int** | | [readonly]
**user** | **int** | edX user ID |
**image** | **str** | |
**platform** | **int** | |
**prompt** | **str** | | [optional]
**model** | **str** | | [optional]
**provider** | **str** | | [optional]
**date_created** | **datetime** | | [readonly]

## Example

```python
from iblai.models.ai_generated_image import AIGeneratedImage

# TODO update the JSON string below
json = "{}"
# create an instance of AIGeneratedImage from a JSON string
ai_generated_image_instance = AIGeneratedImage.from_json(json)
# print the JSON string representation of the object
print(AIGeneratedImage.to_json())

# convert the object into a dict
ai_generated_image_dict = ai_generated_image_instance.to_dict()
# create an instance of AIGeneratedImage from a dict
ai_generated_image_from_dict = AIGeneratedImage.from_dict(ai_generated_image_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


24 changes: 12 additions & 12 deletions docs/AiAccountApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Method | HTTP request | Description


# **ai_account_orgs_credential_create**
> Credential ai_account_orgs_credential_create(org, credential_request)
> LLMCredentialResponse ai_account_orgs_credential_create(org, credential_request)


Expand All @@ -33,8 +33,8 @@ This is for creating llm credentials for a tenant. Accessible to tenant admins

```python
import iblai
from iblai.models.credential import Credential
from iblai.models.credential_request import CredentialRequest
from iblai.models.llm_credential_response import LLMCredentialResponse
from iblai.rest import ApiException
from pprint import pprint

Expand Down Expand Up @@ -75,7 +75,7 @@ Name | Type | Description | Notes

### Return type

[**Credential**](Credential.md)
[**LLMCredentialResponse**](LLMCredentialResponse.md)

### Authorization

Expand All @@ -95,7 +95,7 @@ Name | Type | Description | Notes
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **ai_account_orgs_credential_partial_update**
> Credential ai_account_orgs_credential_partial_update(org, patched_credential_request=patched_credential_request)
> LLMCredentialResponse ai_account_orgs_credential_partial_update(org, patched_credential_request=patched_credential_request)


Expand All @@ -107,7 +107,7 @@ This is for updating llm credentials for a tenant. Accessible to tenant admins

```python
import iblai
from iblai.models.credential import Credential
from iblai.models.llm_credential_response import LLMCredentialResponse
from iblai.models.patched_credential_request import PatchedCredentialRequest
from iblai.rest import ApiException
from pprint import pprint
Expand Down Expand Up @@ -149,7 +149,7 @@ Name | Type | Description | Notes

### Return type

[**Credential**](Credential.md)
[**LLMCredentialResponse**](LLMCredentialResponse.md)

### Authorization

Expand All @@ -169,7 +169,7 @@ Name | Type | Description | Notes
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **ai_account_orgs_credential_retrieve**
> Credential ai_account_orgs_credential_retrieve(org, name=name)
> LLMCredentialResponse ai_account_orgs_credential_retrieve(org, name=name)


Expand All @@ -181,7 +181,7 @@ This is for getting list of llm credentials for a tenant. You can also filter t

```python
import iblai
from iblai.models.credential import Credential
from iblai.models.llm_credential_response import LLMCredentialResponse
from iblai.rest import ApiException
from pprint import pprint

Expand Down Expand Up @@ -222,7 +222,7 @@ Name | Type | Description | Notes

### Return type

[**Credential**](Credential.md)
[**LLMCredentialResponse**](LLMCredentialResponse.md)

### Authorization

Expand Down Expand Up @@ -976,7 +976,7 @@ Name | Type | Description | Notes
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **ai_account_orgs_users_free_trial_list**
> List[Credential] ai_account_orgs_users_free_trial_list(org, user_id)
> List[LLMCredentialResponse] ai_account_orgs_users_free_trial_list(org, user_id)


Expand All @@ -988,7 +988,7 @@ This is for getting list of free trial status for a tenant. Accessible to tenan

```python
import iblai
from iblai.models.credential import Credential
from iblai.models.llm_credential_response import LLMCredentialResponse
from iblai.rest import ApiException
from pprint import pprint

Expand Down Expand Up @@ -1029,7 +1029,7 @@ Name | Type | Description | Notes

### Return type

[**List[Credential]**](Credential.md)
[**List[LLMCredentialResponse]**](LLMCredentialResponse.md)

### Authorization

Expand Down
Loading

0 comments on commit 1e16c34

Please sign in to comment.