Metadata-Version: 2.4
Name: aidp-cli
Version: 1.0.1
Summary: Command line interface for Oracle AI Data Platform Workbench.
License-Expression: UPL-1.0
Project-URL: Homepage, https://docs.oracle.com/en/cloud/paas/ai-data-platform/
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt
License-File: NOTICE.txt
Requires-Dist: aidp-python-client>=0.1.0
Requires-Dist: oci<3.0.0,>=2.165.0
Dynamic: license-file

# Oracle AI Data Platform
Oracle AI Data Platform Workbench simplifies cataloging, ingesting, and analyzing data for data professionals in an organization.
The Oracle AI Data Platform Workbench service provides the platform and the framework to create data analytics pipelines.

## Documentation
[Oracle AI Data Platform Workbench documentation](https://docs.oracle.com/en/cloud/paas/ai-data-platform/)

## Using CLI
### Configure Auth
AIDP clients use OCI authentication. Configure an OCI profile before invoking the CLI or SDK.
~~~
oci setup config
~~~

For session-token authentication, authenticate with OCI CLI:
~~~
oci session authenticate \
  --profile-name DEFAULT \
  --region us-ashburn-1 \
  --tenancy-name <tenancy_name>
~~~
For API-key authentication, create an OCI config profile once if you do not already have one. OCI CLI can create the file for you if it is installed. Existing OCI config profiles can be reused.
### Use the CLI

~~~
aidp --help
aidp command-groups
aidp workspace
aidp workspace list --help

#Invoke a workspace API:
aidp \
  --auth security_token \
  --profile DEFAULT \
  --region <oci_region> \
  --instance-id <ai_data_platform_ocid> \
  workspace list
~~~

[AIDP CLI Command Refenece](https://github.com/oracle-samples/aidataplatform-sdk/blob/main/docs/cli/README.md)
