معرفی شرکت ها


ai-api-client-sdk-1.26.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

AI API Client SDK
ویژگی مقدار
سیستم عامل -
نام فایل ai-api-client-sdk-1.26.0
نام ai-api-client-sdk
نسخه کتابخانه 1.26.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده SAP SE
ایمیل نویسنده -
آدرس صفحه اصلی https://www.sap.com/
آدرس اینترنتی https://pypi.org/project/ai-api-client-sdk/
مجوز SAP DEVELOPER LICENSE AGREEMENT
# SAP AI API Client SDK The AI API client SDK is a Python-based SDK that enables you to access the AI API using Python methods and data structures. You can use the Client SDK to test AI API. The client 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 AI API client SDK. Check for SDK offerings for your runtime that let you access any runtime-specific APIs. For more information on SAP AI Core SDK see <https://pypi.org/project/ai-core-sdk/>. 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 ```python 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]) ```


نیازمندی

مقدار نام
~=3.1 aenum
~=3.0 pyhumps
<3.0 requests


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl ai-api-client-sdk-1.26.0:

    pip install ai-api-client-sdk-1.26.0.whl


نصب پکیج tar.gz ai-api-client-sdk-1.26.0:

    pip install ai-api-client-sdk-1.26.0.tar.gz