1f8c5a062b43516d52fa659ec8c55f3a73e79086
The code changes include adding a new endpoint `/files` to the `KSFileController` class. This endpoint uses the `GetMapping` annotation to handle GET requests and returns a list of uploaded files (`KSDocument`) from the `ksDocumentRepository`. This commit message suggests that a new feature has been added to the codebase, specifically an endpoint to list uploaded files.
#Vector search index In a non dedicated istance the vectorSearch index must be created manually from Mongo Atlas interface.
Create a new Search index called vector_index wit following definition
{ "fields": [ { "numDimensions": 1536, "path": "embedding", "similarity": "cosine", "type": "vector" }, { "path": "metadata.KsApplicatioName", "type": "filter" }, { "path": "metadata.KsDoSource", "type": "filter" }, { "path": "metadata.Source", "type": "filter" }, { "path": "metadata.KsDoctype", "type": "filter" } ] }
Description
Languages
Java
98.6%
Shell
1.2%
Dockerfile
0.2%