Skip to main content

Python client library for the Nomos SDK

Project description

Nomos

Visit Us documentation

Nomos is a Generative AI development platform that empowers teams to create, monitor, and improve their production LLM applications through rigorous data-driven experimentation.

The Nomos Python library provides convenient access to the Nomos SDK and API for applications written in Python.

Installation

pip install nomos

Usage

1. Authentication

First, get your Nomos client_id and secret from the Nomos dashboard. Go to Settings > Manage API Keys and copy your client_id and secret.

  • Define them as environment variables.
export NOMOS_CLIENT_ID="YOUR-NOMOS-CLIENT-ID"
export NOMOS_SECRET="YOUR-NOMOS-SECRET-KEY"
export OPENAI_API_KEY="YOUR-OPENAI-API-KEY"
  • Or, initialize the Nomos client with client_id and secrets.
client = Nomos(
    client_id="<YOUR-NOMOS-CLIENT-ID>",
    secret="<YOUR-NOMOS-SECRET-KEY>",
    openai_api_key="<YOUR-OPENAI-API-KEY>"
)

2. Using Nomos in your application

from nomos import Nomos

client = Nomos()

project = client.project.get(project_id="NOMOS-PROJECT-ID")
task = project.get_first_task()
response = task.execute(variables={})

print(response.data)

Documentation

For more information on how to use Nomos and our SDK, please refer to our documentation.

License

MIT

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

nomos-0.3.0.tar.gz (46.0 kB view hashes)

Uploaded Source

Built Distribution

nomos-0.3.0-py3-none-any.whl (85.0 kB view hashes)

Uploaded Python 3

Supported by

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