@@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.5.0] - 2026-03-19
11+
12+ ### Added
13+
14+ - ** Vector search models** in ` foxnose_sdk.flux.models ` :
15+ - ` SearchMode ` enum (` text ` , ` vector ` , ` vector_boosted ` , ` hybrid ` )
16+ - ` VectorSearch ` — auto-generated embedding search configuration
17+ - ` VectorFieldSearch ` — custom pre-computed embedding search configuration
18+ - ` VectorBoostConfig ` — boost configuration for ` vector_boosted ` mode
19+ - ` HybridConfig ` — weight configuration for ` hybrid ` mode
20+ - ` SearchRequest ` — typed search payload with cross-field validation
21+ - ** Convenience methods** on ` FluxClient ` and ` AsyncFluxClient ` :
22+ - ` vector_search() ` — semantic search with auto-generated embeddings
23+ - ` vector_field_search() ` — search with custom embedding vectors
24+ - ` hybrid_search() ` — blended text + vector search
25+ - ` boosted_search() ` — keyword search boosted by vector similarity
26+ - ** Vector Search documentation** — dedicated guide covering all search modes
27+ - All convenience methods support ` offset ` and ` **extra_body ` pass-through for additional API parameters (` where ` , ` sort ` , etc.)
28+
29+ ### Fixed
30+
31+ - ` examples/flux_client.py ` search example now uses correct API keys (` find_text ` and ` results ` )
32+
1033## [ 0.4.2] - 2026-03-10
1134
1235### Fixed
@@ -99,7 +122,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99122- Error handling guide
100123- Code examples
101124
102- [ Unreleased ] : https://github.com/foxnose/python-sdk/compare/v0.4.2...HEAD
125+ [ Unreleased ] : https://github.com/FoxNoseTech/foxnose-python/compare/v0.5.0...HEAD
126+ [ 0.5.0 ] : https://github.com/FoxNoseTech/foxnose-python/compare/v0.4.2...v0.5.0
103127[ 0.4.2 ] : https://github.com/FoxNoseTech/foxnose-python/compare/v0.4.1...v0.4.2
104128[ 0.4.1 ] : https://github.com/FoxNoseTech/foxnose-python/compare/v0.4.0...v0.4.1
105129[ 0.4.0 ] : https://github.com/FoxNoseTech/foxnose-python/compare/v0.3.0...v0.4.0
0 commit comments