mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-07 15:18:29 +00:00
52 lines
1.9 KiB
Python
52 lines
1.9 KiB
Python
import json
|
|
from pathlib import Path
|
|
from typing import Any
|
|
|
|
from crewai.knowledge.source.base_file_knowledge_source import BaseFileKnowledgeSource
|
|
|
|
|
|
class JSONKnowledgeSource(BaseFileKnowledgeSource):
|
|
"""A knowledge source that stores and queries JSON file content using embeddings."""
|
|
|
|
def load_content(self) -> dict[Path, str]:
|
|
"""Load and preprocess JSON file content."""
|
|
content: dict[Path, str] = {}
|
|
for path in self.safe_file_paths:
|
|
path = self.convert_to_path(path)
|
|
with open(path, encoding="utf-8") as json_file:
|
|
data = json.load(json_file)
|
|
content[path] = self._json_to_text(data)
|
|
return content
|
|
|
|
def _json_to_text(self, data: Any, level: int = 0) -> str:
|
|
"""Recursively convert JSON data to a text representation."""
|
|
text = ""
|
|
indent = " " * level
|
|
if isinstance(data, dict):
|
|
for key, value in data.items():
|
|
text += f"{indent}{key}: {self._json_to_text(value, level + 1)}\n"
|
|
elif isinstance(data, list):
|
|
for item in data:
|
|
text += f"{indent}- {self._json_to_text(item, level + 1)}\n"
|
|
else:
|
|
text += f"{data!s}"
|
|
return text
|
|
|
|
def add(self) -> None:
|
|
"""Add JSON file content to the knowledge source, chunk it, compute embeddings,
|
|
and save the embeddings.
|
|
"""
|
|
content_str = (
|
|
str(self.content) if isinstance(self.content, dict) else self.content
|
|
)
|
|
new_chunks = self._chunk_text(content_str)
|
|
self.chunks.extend(new_chunks)
|
|
self._save_documents()
|
|
|
|
def _chunk_text(self, text: str) -> list[str]:
|
|
"""Utility method to split text into chunks."""
|
|
return [
|
|
text[i : i + self.chunk_size]
|
|
for i in range(0, len(text), self.chunk_size - self.chunk_overlap)
|
|
]
|