From a6b59eb001c6b21226c478a2fd35cb552e9aa1b7 Mon Sep 17 00:00:00 2001 From: alpha nerd Date: Fri, 3 Apr 2026 15:38:53 +0200 Subject: [PATCH] doc: corrections and removal of outdated info --- README.md | 37 ++++++++++--------------------------- doc/security-guide.md | 6 ------ 2 files changed, 10 insertions(+), 33 deletions(-) diff --git a/README.md b/README.md index 1839bdd..4b489d7 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/doc/security-guide.md b/doc/security-guide.md index e914191..6c34f71 100644 --- a/doc/security-guide.md +++ b/doc/security-guide.md @@ -188,12 +188,6 @@ The client includes comprehensive security testing: - Memory protection is validated - Error handling is tested -Run the test suite to verify security: - -```bash -python3 test.py -``` - ## Troubleshooting Security Issues ### Common Issues