koreshield 0.1.1__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {koreshield-0.1.1/src/koreshield.egg-info → koreshield-0.1.2}/PKG-INFO +3 -3
- {koreshield-0.1.1 → koreshield-0.1.2}/README.md +2 -2
- {koreshield-0.1.1 → koreshield-0.1.2}/pyproject.toml +1 -1
- {koreshield-0.1.1 → koreshield-0.1.2/src/koreshield.egg-info}/PKG-INFO +3 -3
- {koreshield-0.1.1 → koreshield-0.1.2}/CHANGELOG.md +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/LICENSE +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/MANIFEST.in +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/examples/async_usage.py +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/examples/basic_usage.py +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/examples/deepseek_integration.py +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/examples/fastapi_integration.py +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/examples/langchain_integration.py +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/setup.cfg +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/src/koreshield.egg-info/SOURCES.txt +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/src/koreshield.egg-info/dependency_links.txt +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/src/koreshield.egg-info/requires.txt +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/src/koreshield.egg-info/top_level.txt +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/src/koreshield_sdk/__init__.py +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/src/koreshield_sdk/async_client.py +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/src/koreshield_sdk/client.py +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/src/koreshield_sdk/exceptions.py +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/src/koreshield_sdk/integrations/__init__.py +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/src/koreshield_sdk/integrations/langchain.py +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/src/koreshield_sdk/py.typed +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/src/koreshield_sdk/types.py +0 -0
- {koreshield-0.1.1 → koreshield-0.1.2}/tests/test_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: koreshield
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Python SDK for KoreShield LLM Security Platform
|
|
5
5
|
Author-email: KoreShield Team <team@koreshield.com>
|
|
6
6
|
Maintainer-email: KoreShield Team <team@koreshield.com>
|
|
@@ -113,7 +113,7 @@ export ANTHROPIC_API_KEY="your-anthropic-key"
|
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
|
-
pip install koreshield
|
|
116
|
+
pip install koreshield
|
|
117
117
|
```
|
|
118
118
|
|
|
119
119
|
### Optional Dependencies
|
|
@@ -133,7 +133,7 @@ pip install koreshield-python-sdk[fastapi,flask,django]
|
|
|
133
133
|
### Basic Usage
|
|
134
134
|
|
|
135
135
|
```python
|
|
136
|
-
from
|
|
136
|
+
from koreshield import KoreShieldClient
|
|
137
137
|
|
|
138
138
|
# Initialize client
|
|
139
139
|
client = KoreShieldClient(api_key="your-api-key")
|
|
@@ -45,7 +45,7 @@ export ANTHROPIC_API_KEY="your-anthropic-key"
|
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
|
-
pip install koreshield
|
|
48
|
+
pip install koreshield
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
### Optional Dependencies
|
|
@@ -65,7 +65,7 @@ pip install koreshield-python-sdk[fastapi,flask,django]
|
|
|
65
65
|
### Basic Usage
|
|
66
66
|
|
|
67
67
|
```python
|
|
68
|
-
from
|
|
68
|
+
from koreshield import KoreShieldClient
|
|
69
69
|
|
|
70
70
|
# Initialize client
|
|
71
71
|
client = KoreShieldClient(api_key="your-api-key")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: koreshield
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Python SDK for KoreShield LLM Security Platform
|
|
5
5
|
Author-email: KoreShield Team <team@koreshield.com>
|
|
6
6
|
Maintainer-email: KoreShield Team <team@koreshield.com>
|
|
@@ -113,7 +113,7 @@ export ANTHROPIC_API_KEY="your-anthropic-key"
|
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
|
-
pip install koreshield
|
|
116
|
+
pip install koreshield
|
|
117
117
|
```
|
|
118
118
|
|
|
119
119
|
### Optional Dependencies
|
|
@@ -133,7 +133,7 @@ pip install koreshield-python-sdk[fastapi,flask,django]
|
|
|
133
133
|
### Basic Usage
|
|
134
134
|
|
|
135
135
|
```python
|
|
136
|
-
from
|
|
136
|
+
from koreshield import KoreShieldClient
|
|
137
137
|
|
|
138
138
|
# Initialize client
|
|
139
139
|
client = KoreShieldClient(api_key="your-api-key")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|