configs/ directory. The Backbone factory wires them together with a pluggable client so that a single Backbone(...) call works for any backend (HTTP, AWS, GCP, …).
Example:
Backbone
EndpointModel.
Usage:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
configs/ directory. The Backbone factory wires them together with a pluggable client so that a single Backbone(...) call works for any backend (HTTP, AWS, GCP, …).
Example:
backbone = Backbone("h1", base_url="http://localhost:8080")
backbone = Backbone("h1", backend="aws", endpoint_name="prod")
class Backbone()
EndpointModel.
Usage:
>>> Backbone("h1", base_url="http://localhost:8080")
>>> Backbone("h1", backend="aws", endpoint_name="ep")
>>> Backbone.available_backbones()
['h1', 'm-optimus', 'tissue-seg']
class Backend(str, Enum)
@classmethod
def available_backbones(cls) -> List[str]
