Skip to main content

Documentation Index

Fetch the complete documentation index at: https://handbook.fiddler.ai/llms.txt

Use this file to discover all available pages before exploring further.

Raised when an unsupported operation is attempted. This exception occurs when users try to perform operations that are not supported by the current Fiddler platform configuration, client version, or specific model/dataset setup. This can include feature limitations, deprecated functionality, or operations not available for certain model types. Common scenarios include attempting to use features not available in the current platform edition, trying deprecated API methods, or performing operations incompatible with the model’s configuration.

Examples

Handling unsupported operations:
try:
    model.enable_advanced_feature()

except Unsupported as e:
    print(f"Feature not available: {e.message}")
    # Use alternative approach or upgrade platform
Common unsupported scenarios:
- Using enterprise features on basic plans
- Attempting operations on incompatible model types
- Calling deprecated API methods

message: str = "Python Client version ({client_version}) is not compatible with your Fiddler Platform version ({server_version})."