Skip to main content

A Gateway SDK for making API requests

Project description

Kosmoy Studio Logo

Kosmoy SDK

Python 3.7+ License: MIT

The Kosmoy SDK is a powerful Python library designed to seamlessly integrate your code with the Kosmoy platform. It empowers your applications to leverage Kosmoy Gateways, providing secure and governed access to AI models and routers configured within Kosmoy Studio.

This SDK is built with compatibility in mind, offering a similar interface to the standard OpenAI Python SDK and providing built-in integration with LangChain. This makes it easy to adopt the Kosmoy SDK, whether you are starting a new project or migrating an existing one.

Key Features

  • Secure Access to Kosmoy Gateways: Connect your Python applications to Kosmoy Gateways via a secure API key associated with a Kosmoy Studio Coded App.
  • Simplified Model Interaction: Interact with AI models (LLMs) registered in Kosmoy Studio using a familiar interface.
  • Leverage Studio Configurations: Benefit from the Routers and Guardrails configured within Kosmoy Studio, ensuring your application adheres to organizational policies.
  • OpenAI SDK Compatibility: Offers a similar interface to the standard OpenAI client for easy migration and adoption.
  • LangChain Integration: Provides seamless integration with LangChain for building sophisticated language model applications.
  • Comprehensive Error Handling: Implements robust error handling inherited from both the OpenAI and LangChain APIs.
  • Observability and Monitoring: Gain insights into your application's performance, usage, and costs through Kosmoy Studio's Insights.
  • Automatic Retries: Built-in retry mechanism for handling transient network issues.
  • Type Hints: Includes type hints for improved code readability and maintainability.

Installation

Standard Usage

pip install kosmoy-sdk

LangChain Integration

pip install kosmoy-sdk[langchain]

Requirements

  • Python 3.7+

Quick Start

Standard Usage

from kosmoy_sdk import GatewayClient


# Initialize the client
client = GatewayClient(
    app_id="your_app_id",    
    api_key="your_api_key"   
)

# Interact with a model (make sure the model is available in your Gateway)

response = client.client.chat.completions.create(
    model="gpt-4",  # Replace with your model name configured in Kosmoy Studio
    messages=[{"role": "user", "content": "Hello!"}],
    use_guardrails=True  # Let the Kosmoy Gateway know that this call should be guardrailed
)

# Get Gateway Information
gateway_info = client.get_gateway()

LangChain Integration

from kosmoy_sdk.langchain import KosmoyGatewayLangchain

# Initialize the LangChain client
client = KosmoyGatewayLangchain(
    app_id="your_app_id",  # Replace with your Coded App ID
    api_key="your_api_key",  # Replace with your API key
    model="gpt-4", # Replace with your model name configured in Kosmoy Studio,
    use_guardrails=True # Optionally enable guardrails
)

# Create messages
messages = [
    ("system", "You are a helpful assistant."),
    ("human", "What is the capital of France?")
]

# Get a response
response = client.invoke(messages)

# Get Gateway information
gateway_info = client.get_gateway()

Configuration

The Kosmoy SDK requires the following parameters:

  • app_id: Your Kosmoy Studio Coded App ID (required).
  • api_key: Your Kosmoy Studio Coded App API key (required).
  • timeout: Request timeout in seconds (optional, default: 30).
  • max_retries: Maximum number of retry attempts (optional, default: 3).

How to get you Kosmoy Studio Coded App ID and API Key

  1. Log in to Kosmoy Studio: Access the Kosmoy Studio platform at https://www.kosmoy.com
  2. Create a Coded App: Navigate to the "Coded Apps" section and create a new Coded App.
  3. Assign a Gateway: Associate your Coded App with a configured Gateway.
  4. Retrieve Credentials: The API key and App ID will be displayed in the Coded App details.

Error Handling

The Kosmoy SDK inherits error handling from the OpenAI API (when used directly) and LangChain API (when using the LangChain integration). It also includes an automatic retry mechanism for failed requests.

Security

  • API credentials are transmitted securely via request headers.
  • The base URL for API communication is pre-configured within the SDK.
  • HTTPS is enforced for all API communications.

Learn More

License

This project is licensed under the MIT license.

Support

For support, please contact support@kosmoy.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kosmoy_sdk-0.0.1.dev0.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kosmoy_sdk-0.0.1.dev0-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file kosmoy_sdk-0.0.1.dev0.tar.gz.

File metadata

  • Download URL: kosmoy_sdk-0.0.1.dev0.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for kosmoy_sdk-0.0.1.dev0.tar.gz
Algorithm Hash digest
SHA256 f0f757ed802b5ddc9280460184fdbe618107dd5a4366529cd766452d2c1cdbae
MD5 e10d540e18c77a58ac165678bc0e1712
BLAKE2b-256 1cb93f1918e99c07bf51e51cf355366c5c3b654aaf5212f0642299cd01fd9c77

See more details on using hashes here.

File details

Details for the file kosmoy_sdk-0.0.1.dev0-py3-none-any.whl.

File metadata

File hashes

Hashes for kosmoy_sdk-0.0.1.dev0-py3-none-any.whl
Algorithm Hash digest
SHA256 801896d4c18b72ba1027810635a9b4c51d33d7b56e136b11dbfdd9081c3486d1
MD5 7c22898ee3973d659f6b9bbad879a1d3
BLAKE2b-256 4957ec69eb5d32eb1b4ad6a052a305c67db30738a0b666a4bb38c47ceb770fbb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page