A Python library for NeuralTrust API
Project description
NeuralTrust Python SDK
The NeuralTrust Python SDK provides a convenient way to interact with the NeuralTrust API for tracing, evaluation sets, knowledge bases, and testsets.
Installation
You can install the NeuralTrust Python SDK using pip:
pip install neuraltrust
Usage
To use the NeuralTrust Python SDK, you need to initialize the client with your API key:
from neuraltrust import NeuralTrust
# Initialize the client with your API key
client = NeuralTrust(api_key="your_api_key_here")
# Optionally, you can specify a custom base URL and SDK version
client = NeuralTrust(api_key="your_api_key_here", base_url="https://custom.api.url", sdk_version="v2")
Tracing
# Create a trace
trace = client.trace(conversation_id="conv123", session_id="sess456")
# Add events to the trace
trace.human("What's the weather like today?")
trace.ai("The weather today is sunny with a high of 75°F.")
# Submit the trace
trace.submit()
Evaluation Sets
# Create an evaluation set
eval_set = client.create_evaluation_set(name="My Eval Set", description="A test evaluation set")
# Get an evaluation set
eval_set = client.get_evaluation_set(id="eval_set_id")
# Delete an evaluation set
client.delete_evaluation_set(id="eval_set_id")
Knowledge Bases
# Create a knowledge base
kb = client.create_knowledge_base(type="document", credentials={"api_key": "your_doc_api_key"})
# Get a knowledge base
kb = client.get_knowledge_base(id="kb_id")
# Delete a knowledge base
client.delete_knowledge_base(id="kb_id")
Testsets
# Create a testset
testset = client.create_testset(name="My Testset", type="qa", evaluation_set_id="eval_set_id", knowledge_base_id="kb_id", num_questions=10)
# Get a testset
testset = client.get_testset(id="testset_id")
# Delete a testset
client.delete_testset(id="testset_id")
Configuration
You can configure the SDK using environment variables:
NEURALTRUST_API_KEY
: Your NeuralTrust API keyNEURALTRUST_BASE_URL
: Custom base URL for the API (optional)
Advanced Usage
Custom Metadata and User Information
from neuraltrust import User, Metadata
user = User(id="user123", name="John Doe")
metadata = Metadata(app_version="1.0.0", platform="web")
trace = client.trace(user=user, metadata=metadata)
Asynchronous Tracing
The SDK uses a ThreadPoolExecutor
for asynchronous tracing. You can adjust the number of workers:
client = NeuralTrust(api_key="your_api_key_here", max_workers=10)
Error Handling
The SDK will raise exceptions for API errors. Make sure to handle these appropriately in your application.
Contributing
Contributions to the NeuralTrust Python SDK are welcome! Please refer to the contribution guidelines for more information.
License
This SDK is distributed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file neuraltrust-1.1.1.tar.gz
.
File metadata
- Download URL: neuraltrust-1.1.1.tar.gz
- Upload date:
- Size: 25.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.1 Darwin/24.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85b261b2cd99d68f168276da0a587cb8f0c89ce52167e55bbd44e62ce535a8c1 |
|
MD5 | de5677f4d9333d2fcf1057b57207dca9 |
|
BLAKE2b-256 | 031e1024394d86b85ec784ad31522ef5675f437af3085f24717c71dd4157d1cf |
File details
Details for the file neuraltrust-1.1.1-py3-none-any.whl
.
File metadata
- Download URL: neuraltrust-1.1.1-py3-none-any.whl
- Upload date:
- Size: 39.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.1 Darwin/24.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 960598dc69674e56f5ee6bc7dc2ab5f705a1a9aadfab106b6262444beb10fc90 |
|
MD5 | 9cdfa5214e9193dc0a23593a49237518 |
|
BLAKE2b-256 | 999599528782392ca0902bb45a60b70abd301fc73bea9e8efc14d202d3c1575a |