Rapidata client
RapidataClient #
RapidataClient(
client_id: str | None = None,
client_secret: str | None = None,
enviroment: str = "rapidata.ai",
oauth_scope: str = "openid",
cert_path: str | None = None,
)
The Rapidata client is the main entry point for interacting with the Rapidata API. It allows you to create orders and validation sets.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
client_id
|
str
|
The client ID for authentication. |
None
|
client_secret
|
str
|
The client secret for authentication. |
None
|
enviroment
|
str
|
The API endpoint. |
'rapidata.ai'
|
Attributes:
Name | Type | Description |
---|---|---|
order |
RapidataOrderManager
|
The RapidataOrderManager instance. |
validation |
ValidationSetManager
|
The ValidationSetManager instance. |