Skip to content

Commit

Permalink
Formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Pilchie committed May 7, 2024
1 parent cfd8aff commit d97c1b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ public class AzureCosmosDBNoSQLMemoryStore : IMemoryStore, IDisposable
/// </summary>
/// <param name="connectionString">Connection string required to connect to Azure Cosmos DB.</param>
/// <param name="databaseName">The database name to connect to.</param>
/// <param name="vectorEmbeddingPolicy">Details about the <see cref="Embedding"/> to use.</param>
/// <param name="indexingPolicy">The <see cref="IndexingPolicy"/> to use.</param>
/// <param name="vectorEmbeddingPolicy">The <see cref="VectorEmbeddingPolicy" /> to use if a collection is created. NOTE that embeddings will be stored in a property named 'embedding'.</param>
/// <param name="indexingPolicy">The <see cref="IndexingPolicy"/> to use if a collection is created. NOTE that embeddings will be stored in a property named 'embedding'.</param>
/// <param name="applicationName">The application name to use in requests.</param>
public AzureCosmosDBNoSQLMemoryStore(
string connectionString,
Expand All @@ -58,6 +58,12 @@ public class AzureCosmosDBNoSQLMemoryStore : IMemoryStore, IDisposable
/// Initiates a AzureCosmosDBNoSQLMemoryStore instance using a <see cref="CosmosClient"/> instance
/// and other properties required for vector search.
/// </summary>
/// <param name="cosmosClient">An existing <see cref="CosmosClient"/> to use. NOTE: This must support serializing with
/// System.Text.Json, not the default Cosmos serializer.</param>
/// <param name="databaseName">The database name to operate against.</param>
/// <param name="vectorEmbeddingPolicy">The <see cref="VectorEmbeddingPolicy" /> to use if a collection is created. NOTE that embeddings will be stored in a property named 'embedding'.</param>
/// <param name="indexingPolicy">The <see cref="IndexingPolicy"/> to use if a collection is created. NOTE that embeddings will be stored in a property named 'embedding'.</param>
/// <param name="applicationName">The application name to use in requests.</param>
public AzureCosmosDBNoSQLMemoryStore(
CosmosClient cosmosClient,
string databaseName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@

using System;
using System.Collections.ObjectModel;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.Azure.Cosmos;
using Microsoft.Extensions.Configuration;
using Microsoft.SemanticKernel.Connectors.AzureCosmosDBNoSQL;
using MongoDB.Driver;
using Xunit;

namespace SemanticKernel.IntegrationTests.Connectors.AzureCosmosDBNoSQL;
Expand Down

0 comments on commit d97c1b3

Please sign in to comment.