Python SDKv0.1.0Available on PyPI

NEES Python SDK

Connect Python applications to NEES governed AI runtime services with the official Nainacore client library.

Install

Install from PyPI

pip install nees-core-sdk

The public package is published as nees-core-sdk.

Quickstart

Make your first request

from nees import NEESClient

client = NEESClient()
result = client.chat("Hello from NEES")

print(result.reply)

Configure your issued API key through the supported SDK environment configuration before making authenticated requests.

SDK capabilities

>Authenticated access to approved NEES services
>Python 3.9+ support
>Structured response and governance result models
>HTTPS required for remote endpoints
>Typed SDK error handling
>Environment-based API key support

How the SDK fits

A clean client layer for NEES services

The NEES Python SDK connects your application to authorized NEES services while the Core runtime remains server-side. Keep credentials on a trusted backend and use the SDK as the supported Python client for integration.

Ready to integrate?

Read the public integration guide, install the SDK from PyPI, and request API access for an approved integration.