Interface ZIF_LLM_AUTH
AI Generated documentation.
Overview
Interface ZIF_LLM_AUTH
provides authorization check methods for LLM (Large Language Model) operations. It exposes four methods:
CHECK_PROVIDER_MAINTENANCE
: Validates authorization for provider maintenance accessCHECK_GET_CLIENT
: Checks if user is authorized to obtain a model client for a specific LLM modelCHECK_DECRYPT
: Verifies authorization for secret decryption operationsCHECK_ENCRYPT
: Validates authorization for secret encryption operations
All methods raise the ZCX_LLM_AUTHORIZATION
exception if authorization checks fail.
classDiagram
class ZIF_LLM_AUTH {
+check_provider_maintenance()
+check_get_client(model: ZLLM_MODEL)
+check_decrypt()
+check_encrypt()
}
Dependencies
- Exception class:
ZCX_LLM_AUTHORIZATION
- Data type:
ZLLM_MODEL