mirror of
https://github.com/run-llama/llamaindex.net.git
synced 2026-07-01 20:36:58 -04:00
d351d6721c
- 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.
12 lines
284 B
C#
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)
|
|
{
|
|
|
|
} |