cacheback-ai 0.1.0__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 (31) hide show
  1. cacheback_ai-0.1.0/.github/workflows/ci.yml +47 -0
  2. cacheback_ai-0.1.0/.github/workflows/publish.yml +27 -0
  3. cacheback_ai-0.1.0/.gitignore +13 -0
  4. cacheback_ai-0.1.0/LICENSE +190 -0
  5. cacheback_ai-0.1.0/PKG-INFO +245 -0
  6. cacheback_ai-0.1.0/README.md +202 -0
  7. cacheback_ai-0.1.0/cacheback/__init__.py +69 -0
  8. cacheback_ai-0.1.0/cacheback/_async_cache.py +53 -0
  9. cacheback_ai-0.1.0/cacheback/_streaming.py +216 -0
  10. cacheback_ai-0.1.0/cacheback/anthropic.py +280 -0
  11. cacheback_ai-0.1.0/cacheback/cache.py +278 -0
  12. cacheback_ai-0.1.0/cacheback/cli.py +132 -0
  13. cacheback_ai-0.1.0/cacheback/embedders/__init__.py +114 -0
  14. cacheback_ai-0.1.0/cacheback/embedders/clap.py +43 -0
  15. cacheback_ai-0.1.0/cacheback/embedders/clip.py +56 -0
  16. cacheback_ai-0.1.0/cacheback/embedders/minilm.py +110 -0
  17. cacheback_ai-0.1.0/cacheback/embedders/whisper.py +44 -0
  18. cacheback_ai-0.1.0/cacheback/exceptions.py +19 -0
  19. cacheback_ai-0.1.0/cacheback/index.py +132 -0
  20. cacheback_ai-0.1.0/cacheback/negative.py +310 -0
  21. cacheback_ai-0.1.0/cacheback/openai.py +300 -0
  22. cacheback_ai-0.1.0/cacheback/py.typed +0 -0
  23. cacheback_ai-0.1.0/cacheback/store.py +181 -0
  24. cacheback_ai-0.1.0/pyproject.toml +55 -0
  25. cacheback_ai-0.1.0/tests/conftest.py +42 -0
  26. cacheback_ai-0.1.0/tests/test_anthropic.py +219 -0
  27. cacheback_ai-0.1.0/tests/test_cache.py +89 -0
  28. cacheback_ai-0.1.0/tests/test_embedders.py +119 -0
  29. cacheback_ai-0.1.0/tests/test_negative.py +113 -0
  30. cacheback_ai-0.1.0/tests/test_openai.py +228 -0
  31. cacheback_ai-0.1.0/tests/test_streaming.py +232 -0
@@ -0,0 +1,47 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ${{ matrix.os }}
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ os: [ubuntu-latest, macos-latest, windows-latest]
16
+ python-version: ["3.10", "3.11", "3.12"]
17
+
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+
21
+ - name: Set up Python ${{ matrix.python-version }}
22
+ uses: actions/setup-python@v5
23
+ with:
24
+ python-version: ${{ matrix.python-version }}
25
+
26
+ - name: Install dependencies
27
+ run: |
28
+ python -m pip install --upgrade pip
29
+ pip install -e ".[dev]"
30
+
31
+ - name: Run tests
32
+ run: pytest tests/ -v --tb=short
33
+
34
+ lint:
35
+ runs-on: ubuntu-latest
36
+ steps:
37
+ - uses: actions/checkout@v4
38
+
39
+ - uses: actions/setup-python@v5
40
+ with:
41
+ python-version: "3.12"
42
+
43
+ - name: Install ruff
44
+ run: pip install ruff
45
+
46
+ - name: Lint
47
+ run: ruff check cacheback/ tests/
@@ -0,0 +1,27 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ id-token: write
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+
16
+ - uses: actions/setup-python@v5
17
+ with:
18
+ python-version: "3.12"
19
+
20
+ - name: Install build tools
21
+ run: pip install build
22
+
23
+ - name: Build package
24
+ run: python -m build
25
+
26
+ - name: Publish to PyPI
27
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,13 @@
1
+ __pycache__/
2
+ *.py[cod]
3
+ *.egg-info/
4
+ dist/
5
+ build/
6
+ .eggs/
7
+ *.egg
8
+ .pytest_cache/
9
+ .venv/
10
+ *.so
11
+ *.bin
12
+ *.db
13
+ .cacheback/
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to the Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by the Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding any notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2026 Fundacja BLOOM / BGML.ai
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.
@@ -0,0 +1,245 @@
1
+ Metadata-Version: 2.4
2
+ Name: cacheback-ai
3
+ Version: 0.1.0
4
+ Summary: Universal semantic cache for AI APIs — text, image, voice. Drop-in wrapper for OpenAI/Anthropic SDKs.
5
+ Project-URL: Homepage, https://cacheback.ai
6
+ Project-URL: Repository, https://github.com/bgml-ai/cacheback
7
+ Project-URL: Documentation, https://cacheback.ai/docs
8
+ Author-email: Bogumił Jankiewicz <bogumil@bgml.ai>
9
+ License: Apache-2.0
10
+ License-File: LICENSE
11
+ Keywords: ai,anthropic,cache,clip,embeddings,llm,multimodal,openai,semantic
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Requires-Python: >=3.10
21
+ Requires-Dist: hnswlib>=0.8.0
22
+ Requires-Dist: huggingface-hub>=0.20.0
23
+ Requires-Dist: numpy>=1.24.0
24
+ Requires-Dist: onnxruntime>=1.17.0
25
+ Requires-Dist: tokenizers>=0.15.0
26
+ Provides-Extra: all
27
+ Requires-Dist: anthropic>=0.20.0; extra == 'all'
28
+ Requires-Dist: openai>=1.0.0; extra == 'all'
29
+ Requires-Dist: pillow>=10.0.0; extra == 'all'
30
+ Requires-Dist: soundfile>=0.12.0; extra == 'all'
31
+ Provides-Extra: anthropic
32
+ Requires-Dist: anthropic>=0.20.0; extra == 'anthropic'
33
+ Provides-Extra: dev
34
+ Requires-Dist: pytest-asyncio>=0.24.0; extra == 'dev'
35
+ Requires-Dist: pytest>=8.0.0; extra == 'dev'
36
+ Provides-Extra: image
37
+ Requires-Dist: pillow>=10.0.0; extra == 'image'
38
+ Provides-Extra: openai
39
+ Requires-Dist: openai>=1.0.0; extra == 'openai'
40
+ Provides-Extra: voice
41
+ Requires-Dist: soundfile>=0.12.0; extra == 'voice'
42
+ Description-Content-Type: text/markdown
43
+
44
+ # cacheback
45
+
46
+ **Universal semantic cache for AI APIs.** Drop-in wrapper for OpenAI and Anthropic SDKs with multimodal support.
47
+
48
+ Cache semantically similar queries and return instant responses (<10ms). Save 30-70% on API costs.
49
+
50
+ [![PyPI](https://img.shields.io/pypi/v/cacheback-ai)](https://pypi.org/project/cacheback-ai/)
51
+ [![License](https://img.shields.io/badge/license-Apache%202.0-blue)](LICENSE)
52
+ [![Python](https://img.shields.io/pypi/pyversions/cacheback-ai)](https://pypi.org/project/cacheback-ai/)
53
+ [![Tests](https://github.com/bgml-ai/cacheback/actions/workflows/ci.yml/badge.svg)](https://github.com/bgml-ai/cacheback/actions)
54
+
55
+ ## Install
56
+
57
+ ```bash
58
+ pip install cacheback-ai # core
59
+ pip install cacheback-ai[openai] # + OpenAI wrapper
60
+ pip install cacheback-ai[anthropic] # + Anthropic wrapper
61
+ pip install cacheback-ai[all] # everything
62
+ ```
63
+
64
+ ## Quick Start
65
+
66
+ ### OpenAI (drop-in, zero code change)
67
+
68
+ ```python
69
+ from cacheback import CachedOpenAI
70
+
71
+ client = CachedOpenAI(api_key="sk-...")
72
+
73
+ # First call: ~500ms (API + cache populate)
74
+ response = client.chat.completions.create(
75
+ model="gpt-4o",
76
+ messages=[{"role": "user", "content": "What is the capital of France?"}],
77
+ )
78
+
79
+ # Second call with similar query: ~5ms (cache hit)
80
+ response2 = client.chat.completions.create(
81
+ model="gpt-4o",
82
+ messages=[{"role": "user", "content": "capital of France?"}],
83
+ )
84
+ print(response2.cacheback_hit) # True
85
+ ```
86
+
87
+ ### Anthropic
88
+
89
+ ```python
90
+ from cacheback import CachedAnthropic
91
+
92
+ client = CachedAnthropic(api_key="sk-ant-...")
93
+ message = client.messages.create(
94
+ model="claude-sonnet-4-20250514",
95
+ max_tokens=1024,
96
+ messages=[{"role": "user", "content": "What is Python?"}],
97
+ )
98
+ print(message.cacheback_hit) # True on cache hit
99
+ ```
100
+
101
+ ### Streaming
102
+
103
+ Streaming works transparently. Cache misses buffer and store the response; cache hits replay as a synthetic stream.
104
+
105
+ ```python
106
+ stream = client.chat.completions.create(
107
+ model="gpt-4o",
108
+ messages=[{"role": "user", "content": "Explain quantum computing"}],
109
+ stream=True,
110
+ )
111
+ for chunk in stream:
112
+ print(chunk.choices[0].delta.content or "", end="")
113
+ ```
114
+
115
+ ### Async
116
+
117
+ ```python
118
+ from cacheback import AsyncCachedOpenAI, AsyncCachedAnthropic
119
+
120
+ async_client = AsyncCachedOpenAI()
121
+ response = await async_client.chat.completions.create(
122
+ model="gpt-4o",
123
+ messages=[{"role": "user", "content": "Hello"}],
124
+ )
125
+ ```
126
+
127
+ ### Standalone Cache
128
+
129
+ Use `SemanticCache` directly for any embedding-based caching:
130
+
131
+ ```python
132
+ from cacheback import SemanticCache
133
+
134
+ cache = SemanticCache(
135
+ similarity_threshold=0.92,
136
+ cache_ttl=86400, # 24 hours
137
+ )
138
+
139
+ cache.populate("What is Python?", "Python is a programming language...")
140
+ result = cache.lookup("Tell me about Python") # cache hit
141
+ ```
142
+
143
+ ### Negative Cache (blocklist)
144
+
145
+ Block known-bad query patterns before they hit the API:
146
+
147
+ ```python
148
+ # Block a query pattern
149
+ client.cache.negative.add(
150
+ "What is the airspeed of an unladen swallow?",
151
+ reason="hallucination",
152
+ )
153
+
154
+ # Similar queries are now blocked
155
+ client.cache.negative.check("airspeed of swallows") # returns match info
156
+
157
+ # Manage the blocklist
158
+ client.cache.negative.list(limit=50)
159
+ client.cache.negative.remove(entry_id=42)
160
+ client.cache.negative.report_false_positive(entry_id=42)
161
+ ```
162
+
163
+ ## Configuration
164
+
165
+ ```python
166
+ client = CachedOpenAI(
167
+ # Cache settings
168
+ cache_dir="~/.cacheback", # where to store cache data
169
+ similarity_threshold=0.92, # cosine similarity for cache hit (0-1)
170
+ negative_threshold=0.85, # threshold for negative cache
171
+ cache_ttl=86400, # TTL in seconds (24h default)
172
+ cache_max_entries=100_000, # max entries before LRU eviction
173
+ cache_enabled=True, # set False to disable
174
+ on_negative_hit="raise", # "raise" | "skip" | callable
175
+
176
+ # OpenAI settings (passthrough)
177
+ api_key="sk-...",
178
+ )
179
+ ```
180
+
181
+ ## How It Works
182
+
183
+ ```
184
+ Query → Embed (MiniLM-L6, 384-dim) → Search HNSW index
185
+ ├─ HIT (similarity ≥ 0.92) → Return cached response (<10ms)
186
+ └─ MISS → Call upstream API → Cache response → Return
187
+ ```
188
+
189
+ - **Embedder**: ONNX MiniLM-L6-v2 (90MB, runs locally, no API calls)
190
+ - **Index**: hnswlib HNSW for fast approximate nearest neighbor search
191
+ - **Store**: SQLite with WAL mode for concurrent access
192
+ - **Fallback**: numpy brute-force if hnswlib is unavailable
193
+
194
+ ## CLI
195
+
196
+ ```bash
197
+ cacheback stats # Show cache statistics
198
+ cacheback entries # List cached entries
199
+ cacheback evict # Remove expired entries
200
+ cacheback clear # Clear all entries
201
+ cacheback lookup "query" # Test a cache lookup
202
+ ```
203
+
204
+ ## Custom Embedders
205
+
206
+ Register your own embedder for any modality:
207
+
208
+ ```python
209
+ from cacheback.embedders import BaseEmbedder, register_embedder
210
+ import numpy as np
211
+
212
+ class MyEmbedder(BaseEmbedder):
213
+ dim = 256
214
+ modality = "custom"
215
+
216
+ def encode(self, input_data) -> np.ndarray:
217
+ # Your embedding logic here
218
+ ...
219
+
220
+ register_embedder("my-embedder", MyEmbedder)
221
+ cache = SemanticCache(embedder="my-embedder")
222
+ ```
223
+
224
+ Built-in embedders: `minilm` (text), `clip` (image, coming soon), `clap` (voice, coming soon).
225
+
226
+ ## Comparison
227
+
228
+ | Feature | cacheback | GPTCache | LiteLLM | Redis LangCache |
229
+ |---------|-----------|----------|---------|-----------------|
230
+ | Semantic similarity | Yes | Yes | Exact only | Yes |
231
+ | OpenAI drop-in | Yes | Partial | Yes | No |
232
+ | Anthropic drop-in | Yes | No | Yes | No |
233
+ | Streaming support | Yes | No | No | No |
234
+ | Negative cache | Yes | No | No | No |
235
+ | Multimodal (planned) | Yes | No | No | No |
236
+ | Async | Yes | No | Yes | No |
237
+ | Zero config | Yes | No | No | No |
238
+ | Local (no server) | Yes | Yes | No | No |
239
+ | License | Apache 2.0 | MIT | MIT | Redis |
240
+
241
+ ## License
242
+
243
+ Apache 2.0 — see [LICENSE](LICENSE).
244
+
245
+ Built by [BGML.ai](https://bgml.ai) / [Fundacja BLOOM](https://bloom.foundation).