Skip to content

v0.1.4

Latest

Choose a tag to compare

@geeked-anshuk666 geeked-anshuk666 released this 15 Jun 12:50

NeuralWatch v0.1.4

This release adds PyPI documentation links and status badges, along with .gitignore cleanups.

📦 SDK Installation

pip install neuralwatch-splunk

📝 Changelog (since v0.1.3)

Added

  • Added a live PyPI version status badge to the top header of README.md and README_PYPI.md.
  • Added direct installation page references pointing back to pypi.org/project/neuralwatch-splunk.

Changed

  • Refactored .gitignore pattern exclusions to keep the developer workspace clean of build artifacts and environment configurations.

🛠️ Quick Start

import openai
from neuralwatch_sdk import instrument

instrument(
    service="my-service",
    team="my-team",
    splunk_hec_url="https://your-splunk-hec-url:8088/services/collector/event",
    splunk_hec_token="your-token"
)

# Use your OpenAI / Anthropic clients normally!