Skip to content

Commit 7982aff

Browse files
Merge pull request #26 from RamType0/add-missing-keyword-hybrid-searchable
Add missing `IKeywordHybridSearchable<TRecord>`
2 parents 7b7df83 + e6e9069 commit 7982aff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Couchbase.SemanticKernel/CouchbaseCollectionBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace Couchbase.SemanticKernel;
1717
/// </summary>
1818
/// <typeparam name="TKey">The data type of the record key.</typeparam>
1919
/// <typeparam name="TRecord">The data model to use for adding, updating, and retrieving data from storage.</typeparam>
20-
public abstract class CouchbaseCollectionBase<TKey, TRecord> : VectorStoreCollection<TKey, TRecord>
20+
public abstract class CouchbaseCollectionBase<TKey, TRecord> : VectorStoreCollection<TKey, TRecord>, IKeywordHybridSearchable<TRecord>
2121
where TKey : notnull
2222
where TRecord : class
2323
{

0 commit comments

Comments
 (0)