Metadata-Version: 2.4
Name: agniscient
Version: 0.1.1.0.2
Summary: Secure LLM interaction wrapper with PII protection
Project-URL: Homepage, https://github.com/helloHarsh123/SLLM/tree/u/hg/v0/agnisicent
Author: Agniscient
License-File: LICENSE
Requires-Python: >=3.7
Requires-Dist: cryptography
Requires-Dist: faker
Requires-Dist: langchain-experimental
Requires-Dist: openai
Requires-Dist: presidio-analyzer
Requires-Dist: presidio-anonymizer
Requires-Dist: spacy
Requires-Dist: sqlalchemy
Description-Content-Type: text/markdown

# Agniscient

A secure wrapper for LLM interactions that provides:
- Automatic PII anonymization
- Encrypted storage of conversation history
- Safe handling of sensitive data

## Installation
```bash
pip install agniscient
```

## Usage
```python
from agniscient import Config, SecureLLMClient

config = Config(
    openai_key="your-openai-key",
    our_key="your-encryption-key"
)

client = SecureLLMClient(config)
response = client.generate_response("Your prompt here")
```