mirror of
https://github.com/marcominerva/SqlDatabaseVectorSearch.git
synced 2026-08-04 09:48:57 +00:00
5a507e972c
Updated README.md to include Markdown file support. Introduced new endpoint for uploading Markdown documents with MIME type handling. Removed TextChunkerService and created DefaultTextChunker and MarkdownTextChunker classes implementing ITextChunker. Updated VectorSearchService to utilize the new chunking interface. Added MimeMapping package reference in the project file.
7 lines
124 B
C#
7 lines
124 B
C#
namespace SqlDatabaseVectorSearch.TextChunkers;
|
|
|
|
public interface ITextChunker
|
|
{
|
|
IList<string> Split(string text);
|
|
}
|