SAP Cloud SDK for AI (Python): Base Client
Project description
SAP Cloud SDK for AI (Python): Base Client for AI API
The SDK formerly known as AI API Client SDK was rebranded.
The class names have not changed i.e., you can continue to use existing code.
The Base Client for AI API is a Python-based SDK that enables you to access the AI API using Python methods and data structures.
The Base SDK can be used with any implementation of AI API. Because it is independent of the runtime implementation, it doesn't provide access to runtime-specific APIs. For example, maintaining object store secrets is specific to SAP AI Core and is therefore not included in the Base SDK. Check for SDK offerings for your runtime that let you access any runtime-specific APIs. For more information on the Core SDK see https://pypi.org/project/sap-ai-sdk-core/.
For more information on the AI API specification, SAP AI Core and related topics, please refer to https://help.sap.com/docs/AI_CORE?version=CLOUD.
Example Usage
from ai_api_client_sdk.ai_api_v2_client import AIAPIV2Client
# Instantiate the client
client = AIAPIV2Client(base_url=AI_API_URL,
auth_url=AUTH_URL,
client_id=CLIENT_ID,
client_secret=CLIENT_SECRET, resource_group=RESOURCE_GROUP)
# Make some queries, e.g.
scenarios = client.scenario.query()
for scenario in scenarios.resources:
print(scenario.id)
# Find a deployable executables in scenario 1111
executables = client.executable.query(scenario_id="1111")
for executable in executables.resources:
if executable.deployable == False:
break
print(executable.id)
# Inspect the required parameters for the executable
for parameter in executable.parameters:
print("Parameter:{}, Type: {}".format(parameter.name, parameter.type))
# Create a configuration
parameter_epochs = ParameterBinding(key="training-epochs", value="1")
myConfiguration = client.configuration.create(name="test", scenario_id="1111" executable_id="argo-mnist-0.2.1", parameter_bindings=[parameter_epochs])
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sap_ai_sdk_base-3.1.2-py3-none-any.whl.
File metadata
- Download URL: sap_ai_sdk_base-3.1.2-py3-none-any.whl
- Upload date:
- Size: 268.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fb4529f1300547769358c0cac2d38d4dc9d598fc2a77a17123d6951c316534e
|
|
| MD5 |
9d6b52d7d0841147acda3df4b2e203ba
|
|
| BLAKE2b-256 |
deaee4ae899a76d2674bec2e6106004aaec838039b30398fc18b0c26ca267e1e
|