-
Notifications
You must be signed in to change notification settings - Fork 2k
Add support for Elasticsearch vector store: Squashed #471
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Add ElasticsearchAiSearchFilterExpressionConverter
…arent pom and Bom pom
…es the use of epoch milliseconds
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left couple of comments for a references.
Will try to fix those during the merge.
<module>models/spring-ai-mistral-ai</module> | ||
<module>models/spring-ai-vertex-ai-palm2</module> | ||
<module>models/spring-ai-vertex-ai-gemini</module> | ||
<module>models/spring-ai-anthropic</module> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is a valid module. Why did you delete it?
<module>vector-stores/spring-ai-azure</module> | ||
<module>vector-stores/spring-ai-weaviate</module> | ||
<module>vector-stores/spring-ai-redis</module> | ||
<module>vector-stores/spring-ai-gemfire</module> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Valid module. should not be deleted.
<module>vector-stores/spring-ai-mongodb-atlas-store</module> | ||
<module>spring-ai-spring-boot-starters/spring-ai-starter-mongodb-atlas-store</module> | ||
<module>spring-ai-spring-boot-testcontainers</module> | ||
<module>spring-ai-spring-boot-starters/spring-ai-starter-anthropic</module> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All
<module>vector-stores/spring-ai-mongodb-atlas-store</module>
<module>spring-ai-spring-boot-starters/spring-ai-starter-mongodb-atlas-store</module>
<module>spring-ai-spring-boot-testcontainers</module>
<module>spring-ai-spring-boot-starters/spring-ai-starter-anthropic</module>
Are valid and used modules. Should not be deleted.
<jtokkit.version>1.0.0</jtokkit.version> | ||
<victools.version>4.31.1</victools.version> | ||
<bedrockruntime.version>2.25.3</bedrockruntime.version> | ||
<bedrockruntime.version>2.24.8</bedrockruntime.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the Bedrock runtime is downgrated? It is not related to ES
|
||
<!-- testing dependencies --> | ||
<testcontainers.version>1.19.7</testcontainers.version> | ||
<testcontainers.version>1.19.6</testcontainers.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here. This version shouldn't be downgraded
|
||
<dependency> | ||
<groupId>org.springframework.ai</groupId> | ||
<artifactId>spring-ai-mongodb-atlas-store</artifactId> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the spring-ai-mongodb-atlas-store is used. Why is it deleted?
@BeforeEach | ||
void cleanDatabase() { | ||
getContextRunner().run(context -> { | ||
// Generating test data for documents with embedding values |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this and why it is commented out?
}); | ||
vectorStore.add(documents); | ||
|
||
// List<Double> embedding = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the reason to use preloaded json files instead of Document instances?
@JM-Lab , thank you for your contribution. |
Rebased, squashed and merged at 9334d7d |
Squashed Commits from PR #234