You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[**chat_with_ai_agent**](AIAgentsApi.md#chat_with_ai_agent) | **POST** /api/v3/organizations/{organisation}/ai/agents/{agentId}/chat | Chat with AI Agent
8
8
[**create_ai_agent**](AIAgentsApi.md#create_ai_agent) | **POST** /api/v3/organizations/{organisation}/ai/agents | Create AI Agent
@@ -223,6 +226,89 @@ Name | Type | Description | Notes
223
226
224
227
[[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)
[[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)
@@ -306,6 +392,89 @@ Name | Type | Description | Notes
306
392
307
393
[[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)
Returns the per-organisation overlay for a global agent, plus base agent metadata for UI context. If no overlay exists the response contains `overlay: null`. Overlays can only be created for global agents.
401
+
402
+
### Example
403
+
404
+
* Bearer (JWT) Authentication (BearerAuth):
405
+
406
+
```python
407
+
import quantcdn
408
+
from quantcdn.models.get_agent_overlay200_response import GetAgentOverlay200Response
409
+
from quantcdn.rest import ApiException
410
+
from pprint import pprint
411
+
412
+
# Defining the host is optional and defaults to https://dashboard.quantcdn.io
413
+
# See configuration.py for a list of all supported configuration parameters.
414
+
configuration = quantcdn.Configuration(
415
+
host="https://dashboard.quantcdn.io"
416
+
)
417
+
418
+
# The client must configure the authentication and authorization parameters
419
+
# in accordance with the API server security policy.
420
+
# Examples for each auth method are provided below, use the example that
**200** | Overlay retrieved (may be null if none set) | - |
472
+
**403** | Access denied | - |
473
+
**404** | Not a global agent | - |
474
+
**500** | Failed to retrieve overlay | - |
475
+
476
+
[[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)
@@ -563,3 +732,91 @@ Name | Type | Description | Notes
563
732
564
733
[[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)
Creates or replaces the per-organisation overlay for a global agent. PUT is full replacement — omitted optional fields are removed. Include `version` from a prior GET to enable compare-and-swap (409 on conflict). Omit for last-writer-wins.
741
+
742
+
### Example
743
+
744
+
* Bearer (JWT) Authentication (BearerAuth):
745
+
746
+
```python
747
+
import quantcdn
748
+
from quantcdn.models.upsert_agent_overlay200_response import UpsertAgentOverlay200Response
749
+
from quantcdn.models.upsert_agent_overlay_request import UpsertAgentOverlayRequest
750
+
from quantcdn.rest import ApiException
751
+
from pprint import pprint
752
+
753
+
# Defining the host is optional and defaults to https://dashboard.quantcdn.io
754
+
# See configuration.py for a list of all supported configuration parameters.
755
+
configuration = quantcdn.Configuration(
756
+
host="https://dashboard.quantcdn.io"
757
+
)
758
+
759
+
# The client must configure the authentication and authorization parameters
760
+
# in accordance with the API server security policy.
761
+
# Examples for each auth method are provided below, use the example that
**409** | Version conflict — overlay was modified concurrently | - |
819
+
**500** | Failed to save overlay | - |
820
+
821
+
[[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)
0 commit comments