Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* {@link AutoConfiguration Auto-configuration} for {@link CosmosDBChatMemoryRepository}.
*
* @author Theo van Kraay
* @since 1.0.0
* @since 1.1.0
*/
@AutoConfiguration
@ConditionalOnClass({ CosmosDBChatMemoryRepository.class, CosmosAsyncClient.class })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Configuration properties for CosmosDB chat memory.
*
* @author Theo van Kraay
* @since 1.0.0
* @since 1.1.0
*/
@ConfigurationProperties(CosmosDBChatMemoryRepositoryProperties.CONFIG_PREFIX)
public class CosmosDBChatMemoryRepositoryProperties {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* Integration tests for {@link CosmosDBChatMemoryRepositoryAutoConfiguration}.
*
* @author Theo van Kraay
* @since 1.0.0
* @since 1.1.0
*/
@EnabledIfEnvironmentVariable(named = "AZURE_COSMOSDB_ENDPOINT", matches = ".+")
class CosmosDBChatMemoryRepositoryAutoConfigurationIT {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* Unit tests for {@link CosmosDBChatMemoryRepositoryProperties}.
*
* @author Theo van Kraay
* @since 1.0.0
* @since 1.1.0
*/
class CosmosDBChatMemoryRepositoryPropertiesTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
* An implementation of {@link ChatMemoryRepository} for Azure Cosmos DB.
*
* @author Theo van Kraay
* @since 1.0.0
* @since 1.1.0
*/
public final class CosmosDBChatMemoryRepository implements ChatMemoryRepository {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Configuration for the CosmosDB Chat Memory store.
*
* @author Theo van Kraay
* @since 1.0.0
* @since 1.1.0
*/
public final class CosmosDBChatMemoryRepositoryConfig {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
* Integration tests for {@link CosmosDBChatMemoryRepository}.
*
* @author Theo van Kraay
* @since 1.0.0
* @since 1.1.0
*/
@EnabledIfEnvironmentVariable(named = "AZURE_COSMOSDB_ENDPOINT", matches = ".+")
class CosmosDBChatMemoryRepositoryIT {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* Cosmos DB NoSQL API where clauses.
*
* @author Theo van Kraay
* @since 1.0.0
* @since 1.1.0
*/
class CosmosDBFilterExpressionConverter extends AbstractFilterExpressionConverter {

Expand Down