Bridge
BridgeMetadata
¶
Bases: TypedDict
Type definition for bridge metadata.
Attributes:
Name | Type | Description |
---|---|---|
bridge_version |
str
|
The version of the bridge. |
framework |
str
|
The framework name. |
compatible_versions |
CompatibleVersions
|
Version bounds for compatibility. |
method_name |
str
|
The method name associated with the bridge. |
Source code in src/fed_rag/data_structures/bridge.py
CompatibleVersions
¶
Bases: TypedDict
Type definition for compatible versions.
Defines optional, inclusive version bounds for compatibility checks.
Attributes:
Name | Type | Description |
---|---|---|
min |
str
|
Minimum compatible version (inclusive). |
max |
str
|
Maximum compatible version (inclusive). |