doc: corrections and removal of outdated info

This commit is contained in:
Alpha Nerd 2026-04-03 15:38:53 +02:00
parent 60d1e1938b
commit a6b59eb001
Signed by: alpha-nerd
SSH key fingerprint: SHA256:QkkAgVoYi9TQ0UKPkiKSfnerZy2h4qhi3SVPXJmBN+M
2 changed files with 10 additions and 33 deletions

View file

@ -40,12 +40,6 @@ async def main():
asyncio.run(main())
```
### 3. Run tests
```bash
python3 test.py
```
## 🔐 Security Features
### Hybrid Encryption
@ -230,11 +224,17 @@ asyncio.run(main())
## 📦 Dependencies
See `requirements.txt` for the complete list:
- `cryptography`: Cryptographic primitives (RSA, AES, etc.)
- `httpx`: Async HTTP client
- `anyio`: Async compatibility layer
- `certifi`: TLS/SSL certificates
- `cffi`: C Foreign Function Interface
- `cryptography`: Cryptographic primitives (RSA, AES, etc.)
- `exceptiongroup`: Exception groups backport
- `h11`: HTTP/1.1 protocol implementation
- `httpcore`: Minimal HTTP client
- `httpx`: Async HTTP client
- `idna`: Internationalized domain names
- `pycparser`: C parser for cffi
- `typing_extensions`: Backported typing hints
## 🔧 Configuration
@ -325,23 +325,6 @@ async def main():
asyncio.run(main())
```
## 🧪 Testing
Run the comprehensive test suite:
```bash
python3 test.py
```
Tests verify:
- ✅ OpenAI API compatibility
- ✅ Basic chat completion
- ✅ Tool usage
- ✅ All OpenAI parameters
- ✅ Async methods
- ✅ Error handling
## 📚 API Reference
### SecureChatCompletion