Skip to content

Commit 815bed4

Browse files
author
Brian Sam-Bodden
committed
docs: add example notebooks for rate limiting, file search, and caching model
- 18-rate-limiting.ipynb: RedisRateLimitGuardrail with sliding/fixed windows - 19-file-search-tool.ipynb: RedisFileSearchTool with HybridSearchService - 20-caching-model.ipynb: RedisCachingModel wrapping the SDK Model interface - Add test-all Makefile target for running API tests
1 parent 975daaa commit 815bed4

4 files changed

Lines changed: 1735 additions & 0 deletions

File tree

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ install: ## Install dependencies with uv
99
test: ## Run tests
1010
uv run pytest -v
1111

12+
test-all: ## Run all tests including API tests
13+
uv run pytest --run-api-tests -v
14+
1215
test-cov: ## Run tests with coverage
1316
uv run pytest --cov=src --cov-report=html --cov-report=term
1417

0 commit comments

Comments
 (0)