mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-09 13:14:39 +00:00
Merge branch 'main' into vector-store-chunks
This commit is contained in:
commit
4e986e9caf
51 changed files with 2180 additions and 2294 deletions
|
@ -444,10 +444,6 @@ class OpenAIVectorStoreMixin(ABC):
|
|||
# Convert response to OpenAI format
|
||||
data = []
|
||||
for chunk, score in zip(response.chunks, response.scores, strict=False):
|
||||
# Apply score based filtering
|
||||
if score < score_threshold:
|
||||
continue
|
||||
|
||||
# Apply filters if provided
|
||||
if filters:
|
||||
# Simple metadata filtering
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue