Files
llamaindex.net/src/LlamaIndex.Core/Schema/Document.cs
T
Diego Colombo d351d6721c Refactor project structure and rename files
- Renamed `Llamaindex.sln.DotSettings` to `LlamaIndex.sln.DotSettings`
- Renamed `llamaindex.core.tests.csproj` to `LlamaIndex.Core.Tests.csproj`
- Renamed `TestNodeWithScoreTest.cs` to `TestNodeWithScoreTest.cs`
- Renamed `TextNodeTests.cs` to `TextNodeTests.cs`
- Renamed various files in the `Retrievers`, `Schema`, and other directories from "llamaindex.core" to "LlamaIndex.Core"

These changes involve refactoring the project structure and renaming files for better organization and consistency.
2024-06-25 19:33:25 +01:00

12 lines
284 B
C#

using System.Collections.Generic;
namespace LlamaIndex.Core.Schema;
public class Document(
string id,
string? text = null,
string? mimeType = null,
Dictionary<string, object>? metadata = null) : TextNode(id, text: text, mimeType:mimeType, metadata: metadata)
{
}