v0.1.3
NeuralWatch v0.1.3
This release introduces layout modernizations, visual diagrams, and optimizations for PyPI compatibility.
📦 SDK Installation
pip install neuralwatch-splunk📝 Changelog (since v0.1.1)
Added
- Added an official root-level architecture diagram architecture_diagram.md highlighting:
- Application-to-Splunk communication paths.
- AI Model and Agent integration layers.
- End-to-end data sequence flow.
- Integrated modern
mermaidflowcharts to visually display the system metrics architecture, Prompt Injection Sentinel pipeline, and EU AI Act Compliance scoring engine. - Added a dedicated PyPI-optimized package documentation file (
README_PYPI.md) to resolve limited Markdown rendering capabilities on the public index pages.
Fixed
- Fixed YAML syntax validation errors in the GitHub Actions publish workflow by moving token/OIDC authorization blocks to the top-level permissions section.
- Fixed typos, normalized em-dashes into standard hyphens across documentation, and clarified import namespaces vs. installation instructions in the Quick Start guide.
🛠️ 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!