koreshield 0.1.1__tar.gz → 0.1.3__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.
Files changed (26) hide show
  1. {koreshield-0.1.1/src/koreshield.egg-info → koreshield-0.1.3}/PKG-INFO +6 -6
  2. {koreshield-0.1.1 → koreshield-0.1.3}/README.md +2 -2
  3. {koreshield-0.1.1 → koreshield-0.1.3}/pyproject.toml +4 -4
  4. {koreshield-0.1.1 → koreshield-0.1.3/src/koreshield.egg-info}/PKG-INFO +6 -6
  5. {koreshield-0.1.1 → koreshield-0.1.3}/CHANGELOG.md +0 -0
  6. {koreshield-0.1.1 → koreshield-0.1.3}/LICENSE +0 -0
  7. {koreshield-0.1.1 → koreshield-0.1.3}/MANIFEST.in +0 -0
  8. {koreshield-0.1.1 → koreshield-0.1.3}/examples/async_usage.py +0 -0
  9. {koreshield-0.1.1 → koreshield-0.1.3}/examples/basic_usage.py +0 -0
  10. {koreshield-0.1.1 → koreshield-0.1.3}/examples/deepseek_integration.py +0 -0
  11. {koreshield-0.1.1 → koreshield-0.1.3}/examples/fastapi_integration.py +0 -0
  12. {koreshield-0.1.1 → koreshield-0.1.3}/examples/langchain_integration.py +0 -0
  13. {koreshield-0.1.1 → koreshield-0.1.3}/setup.cfg +0 -0
  14. {koreshield-0.1.1 → koreshield-0.1.3}/src/koreshield.egg-info/SOURCES.txt +0 -0
  15. {koreshield-0.1.1 → koreshield-0.1.3}/src/koreshield.egg-info/dependency_links.txt +0 -0
  16. {koreshield-0.1.1 → koreshield-0.1.3}/src/koreshield.egg-info/requires.txt +0 -0
  17. {koreshield-0.1.1 → koreshield-0.1.3}/src/koreshield.egg-info/top_level.txt +0 -0
  18. {koreshield-0.1.1 → koreshield-0.1.3}/src/koreshield_sdk/__init__.py +0 -0
  19. {koreshield-0.1.1 → koreshield-0.1.3}/src/koreshield_sdk/async_client.py +0 -0
  20. {koreshield-0.1.1 → koreshield-0.1.3}/src/koreshield_sdk/client.py +0 -0
  21. {koreshield-0.1.1 → koreshield-0.1.3}/src/koreshield_sdk/exceptions.py +0 -0
  22. {koreshield-0.1.1 → koreshield-0.1.3}/src/koreshield_sdk/integrations/__init__.py +0 -0
  23. {koreshield-0.1.1 → koreshield-0.1.3}/src/koreshield_sdk/integrations/langchain.py +0 -0
  24. {koreshield-0.1.1 → koreshield-0.1.3}/src/koreshield_sdk/py.typed +0 -0
  25. {koreshield-0.1.1 → koreshield-0.1.3}/src/koreshield_sdk/types.py +0 -0
  26. {koreshield-0.1.1 → koreshield-0.1.3}/tests/test_client.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: koreshield
3
- Version: 0.1.1
3
+ Version: 0.1.3
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>
@@ -27,9 +27,9 @@ License: MIT License
27
27
  SOFTWARE.
28
28
  Project-URL: Homepage, https://koreshield.com
29
29
  Project-URL: Documentation, https://docs.koreshield.com
30
- Project-URL: Repository, https://github.com/koreshield/koreshield-python-sdk
31
- Project-URL: Issues, https://github.com/koreshield/koreshield-python-sdk/issues
32
- Project-URL: Changelog, https://github.com/koreshield/koreshield-python-sdk/blob/main/CHANGELOG.md
30
+ Project-URL: Repository, https://github.com/koreshield/koreshield.git
31
+ Project-URL: Issues, https://github.com/koreshield/koreshield/issues
32
+ Project-URL: Changelog, https://github.com/koreshield/koreshield/blob/main/koreshield-python-sdk/CHANGELOG.md
33
33
  Keywords: llm,security,ai,safety,prompt-injection,koreshield
34
34
  Classifier: Development Status :: 3 - Alpha
35
35
  Classifier: Intended Audience :: Developers
@@ -113,7 +113,7 @@ export ANTHROPIC_API_KEY="your-anthropic-key"
113
113
  ```
114
114
 
115
115
  ```bash
116
- pip install koreshield-python-sdk
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 koreshield_sdk import KoreShieldClient
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-python-sdk
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 koreshield_sdk import KoreShieldClient
68
+ from koreshield import KoreShieldClient
69
69
 
70
70
  # Initialize client
71
71
  client = KoreShieldClient(api_key="your-api-key")
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "koreshield"
7
- version = "0.1.1"
7
+ version = "0.1.3"
8
8
  description = "Python SDK for KoreShield LLM Security Platform"
9
9
  readme = "README.md"
10
10
  license = {file = "LICENSE"}
@@ -61,9 +61,9 @@ all = [
61
61
  [project.urls]
62
62
  Homepage = "https://koreshield.com"
63
63
  Documentation = "https://docs.koreshield.com"
64
- Repository = "https://github.com/koreshield/koreshield-python-sdk"
65
- Issues = "https://github.com/koreshield/koreshield-python-sdk/issues"
66
- Changelog = "https://github.com/koreshield/koreshield-python-sdk/blob/main/CHANGELOG.md"
64
+ Repository = "https://github.com/koreshield/koreshield.git"
65
+ Issues = "https://github.com/koreshield/koreshield/issues"
66
+ Changelog = "https://github.com/koreshield/koreshield/blob/main/koreshield-python-sdk/CHANGELOG.md"
67
67
 
68
68
  [tool.setuptools.packages.find]
69
69
  where = ["src"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: koreshield
3
- Version: 0.1.1
3
+ Version: 0.1.3
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>
@@ -27,9 +27,9 @@ License: MIT License
27
27
  SOFTWARE.
28
28
  Project-URL: Homepage, https://koreshield.com
29
29
  Project-URL: Documentation, https://docs.koreshield.com
30
- Project-URL: Repository, https://github.com/koreshield/koreshield-python-sdk
31
- Project-URL: Issues, https://github.com/koreshield/koreshield-python-sdk/issues
32
- Project-URL: Changelog, https://github.com/koreshield/koreshield-python-sdk/blob/main/CHANGELOG.md
30
+ Project-URL: Repository, https://github.com/koreshield/koreshield.git
31
+ Project-URL: Issues, https://github.com/koreshield/koreshield/issues
32
+ Project-URL: Changelog, https://github.com/koreshield/koreshield/blob/main/koreshield-python-sdk/CHANGELOG.md
33
33
  Keywords: llm,security,ai,safety,prompt-injection,koreshield
34
34
  Classifier: Development Status :: 3 - Alpha
35
35
  Classifier: Intended Audience :: Developers
@@ -113,7 +113,7 @@ export ANTHROPIC_API_KEY="your-anthropic-key"
113
113
  ```
114
114
 
115
115
  ```bash
116
- pip install koreshield-python-sdk
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 koreshield_sdk import KoreShieldClient
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