-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Store vector init #24
Commits on May 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3556e22 - Browse repository at this point
Copy the full SHA 3556e22View commit details -
Configuration menu - View commit details
-
Copy full SHA for 37ebcd7 - Browse repository at this point
Copy the full SHA 37ebcd7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0256ee3 - Browse repository at this point
Copy the full SHA 0256ee3View commit details -
Configuration menu - View commit details
-
Copy full SHA for a6c20d3 - Browse repository at this point
Copy the full SHA a6c20d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0612a4f - Browse repository at this point
Copy the full SHA 0612a4fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 41a6a5a - Browse repository at this point
Copy the full SHA 41a6a5aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 79203be - Browse repository at this point
Copy the full SHA 79203beView commit details -
Configuration menu - View commit details
-
Copy full SHA for 50534a6 - Browse repository at this point
Copy the full SHA 50534a6View commit details
Commits on May 28, 2024
-
refactor: Rename SecurityConfiguration to SecurityConfig
on-behalf-of: @dRAGon-Okinawa [email protected]"
Configuration menu - View commit details
-
Copy full SHA for 3a92d76 - Browse repository at this point
Copy the full SHA 3a92d76View commit details -
chore: Update OpenAPI mappings to use single quotes instead of double…
… quotes on-behalf-of: @org [email protected]
Configuration menu - View commit details
-
Copy full SHA for a8e1684 - Browse repository at this point
Copy the full SHA a8e1684View commit details -
chore: Disable JobRunr background job server, job scheduler, and dash…
…board for Profile("test") This commit disables the JobRunr background job server, job scheduler, and dashboard by setting the corresponding properties to false in the application-test.yaml file. This change is necessary to prevent unnecessary resource usage during testing. Note: This commit message follows the established convention of using the "chore" type for non-functional changes.
Configuration menu - View commit details
-
Copy full SHA for a78af72 - Browse repository at this point
Copy the full SHA a78af72View commit details -
refactor: Update ProviderType enum values and add fromString method
This commit updates the ProviderType enum in the `ProviderType.java` file. It adds two new enum values, `ONNX` and `OpenAI`, and modifies the existing `OPENAI` value to `OpenAI`. Additionally, a new static method `fromString` is added to the enum to retrieve the corresponding ProviderType based on a given string value. Note: This commit message follows the established convention of using the "refactor" type for code restructuring or refactoring.
Configuration menu - View commit details
-
Copy full SHA for 7255488 - Browse repository at this point
Copy the full SHA 7255488View commit details -
refactor: Add unique index for name field in IngestorEntity and Provi…
…derEntity This commit adds a unique index for the `name` field in both the `IngestorEntity` and `ProviderEntity` classes. The unique index ensures that the `name` field values are unique within their respective collections. Note: This commit message follows the established convention of using the "refactor" type for code restructuring or refactoring.
Configuration menu - View commit details
-
Copy full SHA for 8abc529 - Browse repository at this point
Copy the full SHA 8abc529View commit details -
feat: Add create method with beforeSaveCallback to AbstractCrudBacken…
…dApiController This commit adds a new overloaded `create` method to the `AbstractCrudBackendApiController` class. The new method accepts an additional parameter `beforeSaveCallback`, which is a function that can be used to modify the entity before saving it to the repository. This allows for more flexibility in customizing the creation process of entities. Note: This commit message follows the established convention of using the "feat" type for new feature additions.
Configuration menu - View commit details
-
Copy full SHA for d83a35e - Browse repository at this point
Copy the full SHA d83a35eView commit details -
feat: Handle unique key constraint violation in AbstractCrudBackendAp…
…iController This commit modifies the `AbstractCrudBackendApiController` class to handle unique key constraint violations when saving entities to the repository. It adds a try-catch block around the `repository.save(entity)` method and throws a `ResponseStatusException` with a `CONFLICT` status and a descriptive error message when a `UniqueConstraintException` is caught. Note: This commit message follows the established convention of using the "feat" type for new feature additions.
Configuration menu - View commit details
-
Copy full SHA for 78472d1 - Browse repository at this point
Copy the full SHA 78472d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c2bbbd - Browse repository at this point
Copy the full SHA 3c2bbbdView commit details -
feat: Update dRAGon description to mention RAG pipeline
This commit updates the dRAGon description in the `HomepageFeatures` component to mention the RAG pipeline instead of just "your docs". This change provides more clarity and aligns with the actual functionality of the software.
Configuration menu - View commit details
-
Copy full SHA for 568c15b - Browse repository at this point
Copy the full SHA 568c15bView commit details -
refactor: Update primary color variables in custom.css
This commit updates the primary color variables in the custom.css file. The new color values are #8b5cf6 for the primary color, #743cf4 for the dark shade, #692cf3 for the darker shade, #4d0ce0 for the darkest shade, #a27cf8 for the light shade, #ad8cf9 for the lighter shade, and #cfbcfb for the lightest shade. This change ensures consistency and aligns with the desired color scheme.
Configuration menu - View commit details
-
Copy full SHA for 4fa7412 - Browse repository at this point
Copy the full SHA 4fa7412View commit details -
Configuration menu - View commit details
-
Copy full SHA for f36f5ff - Browse repository at this point
Copy the full SHA f36f5ffView commit details -
refactor: Update SiloEntity vectorStoreClass field to vectorStoreType
This commit updates the `SiloEntity` class by renaming the `vectorStoreClass` field to `vectorStoreType`. This change provides a more accurate and descriptive name for the field, improving code readability and maintainability.
Configuration menu - View commit details
-
Copy full SHA for e5b6387 - Browse repository at this point
Copy the full SHA e5b6387View commit details -
refactor: Update EmbeddingModelType enum with dimensions and maxTokens
This commit updates the `EmbeddingModelType` enum in the `EmbeddingModelType.java` file. It adds the `dimensions` and `maxTokens` fields to the `EmbeddingModelDefinition` class, allowing for more flexibility in defining the dimensions and maximum tokens for each embedding model. This change enhances the configurability of the embedding models and improves the overall functionality of the application.
Configuration menu - View commit details
-
Copy full SHA for f8fff05 - Browse repository at this point
Copy the full SHA f8fff05View commit details -
refactor: Add IngestorEntity settings field for key-value pairs
This commit adds a new field `settings` to the `IngestorEntity` class. The `settings` field is a map of key-value pairs and allows for linking additional settings to the Ingestor. This change enhances the flexibility and configurability of the IngestorEntity.
Configuration menu - View commit details
-
Copy full SHA for c92f606 - Browse repository at this point
Copy the full SHA c92f606View commit details -
Configuration menu - View commit details
-
Copy full SHA for 60f316e - Browse repository at this point
Copy the full SHA 60f316eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f92b7e - Browse repository at this point
Copy the full SHA 8f92b7eView commit details -
refactor: Update AbstractCrudBackendApiController to use ObjectMapper…
… for field updates This commit refactors the `AbstractCrudBackendApiController` class to use the `ObjectMapper` from the Jackson library for updating entity fields. Instead of manually iterating over the fields and using reflection to set the values, the code now serializes the `fields` map to JSON using the `ObjectMapper`, and then uses the `ObjectReader` to update the entity fields. This change improves code readability and maintainability by leveraging the built-in functionality of the `ObjectMapper` and reduces the risk of errors when updating fields.
Configuration menu - View commit details
-
Copy full SHA for 4bd1c82 - Browse repository at this point
Copy the full SHA 4bd1c82View commit details -
refactor: Add ingestors field to SiloEntity
This commit adds a new field `ingestors` to the `SiloEntity` class. The `ingestors` field is a list of Ingestor UUIDs that are linked to the Silo. When linked, the Ingestors will be run in order to add documents into the Silo. This change enhances the functionality of the SiloEntity by allowing it to manage and track the associated Ingestors.
Configuration menu - View commit details
-
Copy full SHA for 6318578 - Browse repository at this point
Copy the full SHA 6318578View commit details -
Configuration menu - View commit details
-
Copy full SHA for 044e380 - Browse repository at this point
Copy the full SHA 044e380View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8bde6e3 - Browse repository at this point
Copy the full SHA 8bde6e3View commit details -
refactor: Remove @Profile("!test") annotation from JobRunrConfig
The @Profile("!test") annotation was removed from the JobRunrConfig class. This change ensures that the configuration is applied regardless of the active profile, improving consistency and eliminating potential issues related to test environments.
Configuration menu - View commit details
-
Copy full SHA for 30a3f5a - Browse repository at this point
Copy the full SHA 30a3f5aView commit details