Settings
Manage your project configuration
API Keys
Manage API keys for SDK authentication
Development
nl_dev_test...
Created 2024-01-15
Production
nl_prod_abc...
Created 2024-01-20
API keys are only shown once when created. Store them securely.
SDK Setup
Install and configure the NurLogic SDK
1. Install the SDK
pip install nurlogic
2. Initialize the client
from nurlogic import NurLogic
nl = NurLogic(api_key="your_api_key")
with nl.trace("my-trace") as trace:
# Your LLM code here
trace.output = {"response": "..."}