Metadata-Version: 2.1
Name: sap-ai-sdk-gen
Version: 6.7.0
Summary: SAP Cloud SDK for AI (Python): generative AI SDK
Home-page: https://www.sap.com/
Author: SAP SE
License: SAP DEVELOPER LICENSE AGREEMENT
Download-URL: https://pypi.python.org/pypi/sap-ai-sdk-gen
Keywords: SAP AI Core,SAP generative AI SDK,SAP Generative AI Hub
Platform: Windows
Platform: Linux
Platform: Mac OS-X
Platform: Unix
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Operating System :: Microsoft :: Windows :: Windows 7
Classifier: Operating System :: Microsoft :: Windows :: Windows 8
Classifier: Operating System :: Microsoft :: Windows :: Windows 8.1
Classifier: Operating System :: Microsoft :: Windows :: Windows Server 2008
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: pydantic (~=2.12)
Requires-Dist: openai (>=1.58.1)
Requires-Dist: dacite (>=1.8.1)
Requires-Dist: langchain-classic (~=1.0.0)
Requires-Dist: overloading (==0.5.0)
Requires-Dist: httpx (>=0.27.0)
Requires-Dist: click (>=8.1.7)
Requires-Dist: langchain (~=1.2.10)
Requires-Dist: langchain-community (~=0.4.1)
Requires-Dist: pandas (>=2.2.0)
Requires-Dist: langcodes (~=3.5.1)
Requires-Dist: langchain-openai (~=1.1.0)
Requires-Dist: sap-ai-sdk-core (>=3.3.0)
Requires-Dist: packaging (>=23.2)
Requires-Dist: h11 (>=0.16.0)
Provides-Extra: all
Requires-Dist: google-genai (~=1.60.0) ; extra == 'all'
Requires-Dist: aiobotocore (>=3.2.0) ; extra == 'all'
Requires-Dist: boto3 (>=1.40.61) ; extra == 'all'
Requires-Dist: langchain-google-genai (~=4.2.0) ; extra == 'all'
Requires-Dist: langchain-aws (~=1.4.0) ; extra == 'all'
Provides-Extra: amazon
Requires-Dist: aiobotocore (>=3.2.0) ; extra == 'amazon'
Requires-Dist: boto3 (>=1.40.61) ; extra == 'amazon'
Requires-Dist: langchain-aws (~=1.4.0) ; extra == 'amazon'
Provides-Extra: google
Requires-Dist: langchain-google-genai (~=4.2.0) ; extra == 'google'
Requires-Dist: google-genai (~=1.60.0) ; extra == 'google'

# SAP Cloud SDK for AI (Python) - generative

With this SDK you can leverage the power of generative models available in the generative AI Hub of SAP AI Core.
The SDK provides model access by wrapping the native SDKs of the model providers (OpenAI, Amazon, Google), through langchain, or through the orchestration service.

## Installation

To install this SDK, use the following pip command, which includes support for all models including langchain support:

    pip install "sap-ai-sdk-gen[all]"

The default installation only includes OpenAI models (without langchain support):

    pip install sap-ai-sdk-gen

You can install a subset of the extra libraries (without langchain support) by specifying them in square brackets:

    pip install "sap-ai-sdk-gen[google, amazon]"

## Configuration, Usage

Please refer to the official documentation hosted on [help.sap.com](https://help.sap.com/doc/generative-ai-hub-sdk/CLOUD/en-US/index.html) for details on how to configure and use the SAP Cloud SDK for AI (Python).

