Add generative search functionality and related models#128
Merged
mpartipilo merged 13 commits intomvpfrom Oct 9, 2025
Merged
Conversation
There was a problem hiding this comment.
Orca Security Scan Summary
| Status | Check | Issues by priority | |
|---|---|---|---|
| Secrets | View in Orca |
6d30f87 to
751454d
Compare
a6477a8 to
bc8d7e1
Compare
- Introduced CombinedSearchResult to encapsulate WeaviateResult, GroupByResult, and GenerativeResult. - Updated WeaviateGrpcClient to support generative prompts and groupings in search methods. - Created GenerativeClient to handle generative search requests and responses. - Defined new models for generative prompts (SinglePrompt, GroupedPrompt) and providers (Anthropic, OpenAI, etc.). - Enhanced existing search methods to accommodate generative features and return appropriate results.
- Throw WeaviateServerException in Search and Aggregate methods - Fix Hybrid Search parameters - Fix FetchObjects filter->filters rename - Rename filter->filters for consistency
…rove type handling
bc8d7e1 to
540fd42
Compare
dbc8707 to
e65b89c
Compare
- Refactor connection setup to include OpenAI API key support - Update generative models to use IList for better dx - Add new tests for generative results and group by functionality - Improve handling of generative responses in gRPC client
0a35183 to
19331a7
Compare
dirkkul
approved these changes
Oct 9, 2025
mpartipilo
added a commit
that referenced
this pull request
Nov 26, 2025
mpartipilo
added a commit
that referenced
this pull request
Dec 7, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduce generative search capabilities, including new models for prompts and providers. Enhance existing search methods to support generative features and update protobuf definitions accordingly. Adjust CollectionClient and tests to accommodate these changes.