Metadata-Version: 2.4
Name: aicompliant-discover
Version: 1.0.0
Summary: Auto-discover AI systems in your infrastructure. Wraps Anthropic and Google Generative AI clients to report usage to AICompliant.
Project-URL: Homepage, https://aicompliant.ai
Project-URL: Documentation, https://aicompliant.ai/docs
Author-email: AICompliant <hello@aicompliant.ai>
License-Expression: MIT
Keywords: ai,anthropic,compliance,discovery,gemini,llm,observability
Requires-Python: >=3.9
Provides-Extra: all
Requires-Dist: anthropic>=0.20.0; extra == 'all'
Requires-Dist: google-generativeai>=0.5.0; extra == 'all'
Provides-Extra: anthropic
Requires-Dist: anthropic>=0.20.0; extra == 'anthropic'
Provides-Extra: google
Requires-Dist: google-generativeai>=0.5.0; extra == 'google'
Description-Content-Type: text/markdown

# aicompliant-discover

Enterprise AI Discovery SDK for Python. Automatically discover and catalog AI systems across your infrastructure.
```python
from aicompliant_discover import AICDiscover

AICDiscover.init(api_key="dk_...")

# All Anthropic + Google AI calls are now auto-discovered.
import anthropic
client = anthropic.Anthropic()
message = client.messages.create(model="claude-sonnet-4-20250514", max_tokens=100, messages=[{"role": "user", "content": "Hello"}])
```

See https://aicompliant.ai/docs for full documentation.
