cfc8e23
1
2
3
4
5
6
7
8
9
10
11
from dataclasses import dataclass from typing import Any @dataclass class KnowledgeDocument: """Represents a single document or chunk in the knowledge base""" content: str metadata: dict[str, Any]