Skip to main content

Client SDK for Chaukas agent audit and explainability platform

Project description

Chaukas Client SDK

Client-side Python SDK for the Chaukas agent audit and explainability platform.

Installation

pip install chaukas-spec-client

Quick Start

Basic Client Usage

import grpc
from chaukas.spec.client.v1.client_pb2_grpc import ChaukasClientServiceStub
from chaukas.spec.client.v1.client_pb2 import IngestEventRequest, HealthzRequest
from chaukas.spec.common.v1.events_pb2 import Event, EventType

# Create gRPC channel and client
channel = grpc.insecure_channel('localhost:50051')
client = ChaukasClientServiceStub(channel)

# Health check
health_request = HealthzRequest()
health_response = client.Healthz(health_request)
print("Service is healthy!")

# Create and send an event
event = Event(
    event_id="evt_123",
    type=EventType.EVENT_TYPE_AGENT_START,
    session_id="session_abc",
    tenant_id="tenant_123",
    project_id="project_456"
)

request = IngestEventRequest(event=event)
response = client.IngestEvent(request)
print("Event ingested successfully!")

Available Event Types

from chaukas.spec.common.v1.events_pb2 import EventType

# Session lifecycle
EventType.EVENT_TYPE_SESSION_START
EventType.EVENT_TYPE_SESSION_END

# Agent spans  
EventType.EVENT_TYPE_AGENT_START
EventType.EVENT_TYPE_AGENT_END
EventType.EVENT_TYPE_AGENT_HANDOFF

# LLM/Tool spans
EventType.EVENT_TYPE_MODEL_INVOCATION_START
EventType.EVENT_TYPE_MODEL_INVOCATION_END
EventType.EVENT_TYPE_TOOL_CALL_START
EventType.EVENT_TYPE_TOOL_CALL_END

# MCP (Model Context Protocol) spans
EventType.EVENT_TYPE_MCP_CALL_START
EventType.EVENT_TYPE_MCP_CALL_END

# I/O Events
EventType.EVENT_TYPE_INPUT_RECEIVED
EventType.EVENT_TYPE_OUTPUT_EMITTED

# Error handling
EventType.EVENT_TYPE_ERROR
EventType.EVENT_TYPE_RETRY

Batch Event Ingestion

from chaukas.spec.client.v1.client_pb2 import IngestEventBatchRequest
from chaukas.spec.common.v1.events_pb2 import EventBatch

# Create multiple events
events = [
    Event(event_id="evt_1", type=EventType.EVENT_TYPE_SESSION_START),
    Event(event_id="evt_2", type=EventType.EVENT_TYPE_AGENT_START),
]

batch = EventBatch(events=events)
request = IngestEventBatchRequest(event_batch=batch)
response = client.IngestEventBatch(request)
print("Event batch ingested!")

Querying Events

from chaukas.spec.client.v1.client_pb2 import QueryEventsRequest
from chaukas.spec.common.v1.query_pb2 import QueryRequest, QueryFilter, SortOrder

# Query events with enhanced filtering
filter = QueryFilter(
    tenant_id="tenant_123",
    project_id="project_456",
    trace_id="trace_abc123",  # New: Filter by distributed trace ID
    session_id="session_abc"
)

query = QueryRequest(
    filter=filter,
    page_size=100,
    order_by_time=SortOrder.SORT_ORDER_DESC
)

request = QueryEventsRequest(query=query)
response = client.QueryEvents(request)

print(f"Found {len(response.response.events)} events")
for event in response.response.events:
    print(f"- {event.event_id}: {event.type} (trace: {event.trace_id})")

Advanced Event Creation with New Fields

# Create event with distributed tracing
event = Event(
    event_id="evt_123",
    type=EventType.EVENT_TYPE_AGENT_HANDOFF,
    session_id="session_abc",
    tenant_id="tenant_123", 
    project_id="project_456",
    trace_id="trace_abc123"  # New: Distributed trace correlation
)

# Enhanced tool call with function name
from chaukas.spec.common.v1.events_pb2 import ToolCall
from google.protobuf.struct_pb2 import Struct

tool_call = ToolCall(
    id="call_123",
    name="calculator",
    function_name="multiply",  # New: Specific function within tool
    arguments=Struct()  # Add your arguments here
)

tool_event = Event(
    event_id="evt_tool_456",
    type=EventType.EVENT_TYPE_TOOL_CALL_START,
    trace_id="trace_abc123",
    tool_call=tool_call
)

Error Handling

import grpc

try:
    response = client.IngestEvent(request)
except grpc.RpcError as e:
    if e.code() == grpc.StatusCode.UNAVAILABLE:
        print("Service unavailable")
    elif e.code() == grpc.StatusCode.INVALID_ARGUMENT:
        print("Invalid request:", e.details())
    else:
        print(f"RPC failed: {e}")

Development

This package contains generated Protocol Buffer code. For development instructions and to contribute to the specification, see the main repository:

https://github.com/chaukasai/spec

License

Apache License 2.0 - see the main repository for details.

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

chaukas_spec_client-1.0.2.tar.gz (26.0 kB view details)

Uploaded Source

Built Distribution

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

chaukas_spec_client-1.0.2-py3-none-any.whl (27.7 kB view details)

Uploaded Python 3

File details

Details for the file chaukas_spec_client-1.0.2.tar.gz.

File metadata

  • Download URL: chaukas_spec_client-1.0.2.tar.gz
  • Upload date:
  • Size: 26.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for chaukas_spec_client-1.0.2.tar.gz
Algorithm Hash digest
SHA256 f1260eee2c1f31f524388c41556684b8d9a5f0d451f1bccdee6e95b3b9f9c030
MD5 bf202f5894a06d5b7395a4771d08bd74
BLAKE2b-256 25cd2aee219c7cfdd44c1c4732ceb68b1840194b20148618e1aa1a06744b3eee

See more details on using hashes here.

Provenance

The following attestation bundles were made for chaukas_spec_client-1.0.2.tar.gz:

Publisher: release.yml on chaukasai/spec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chaukas_spec_client-1.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for chaukas_spec_client-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 964a01485530e19ff655e01c4952594be20be51495b9b7467f995ab788ad2bf4
MD5 a9a34e02b13b57d87cef8327bb1890d5
BLAKE2b-256 b69dc28e95e918348ae4db2b3fa0236581be119a5f06307f6f399c1b99862f78

See more details on using hashes here.

Provenance

The following attestation bundles were made for chaukas_spec_client-1.0.2-py3-none-any.whl:

Publisher: release.yml on chaukasai/spec

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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