diff --git a/.env.example b/.env.example new file mode 100644 index 0000000000000000000000000000000000000000..d64c0e346fffbe09e0bf6deee445ba4cc4cae84c --- /dev/null +++ b/.env.example @@ -0,0 +1,68 @@ +# Application +APP_NAME="Graph RAG Service" +DEBUG=false +ENVIRONMENT=development + +# API Server +API_HOST=0.0.0.0 +API_PORT=8000 + +# Security +# ⚠️ CRITICAL: Change SECRET_KEY before ANY deployment. +# Generate one with: python -c "import secrets; print(secrets.token_hex(32))" +SECRET_KEY=change-this-in-production-to-a-secure-random-key +ACCESS_TOKEN_EXPIRE_MINUTES=30 + +# CORS: comma-separated list of allowed origins. +# Default allows only the local Vite dev server. +# Example for production: CORS_ORIGINS=https://yourdomain.com +CORS_ORIGINS=http://localhost:3000,http://localhost:5173 + +# Neo4j +NEO4J_URI=bolt://localhost:7687 +NEO4J_USER=neo4j +NEO4J_PASSWORD=password +NEO4J_DATABASE=neo4j + +# Redis +REDIS_HOST=localhost +REDIS_PORT=6379 +REDIS_DB=0 + +# Celery +CELERY_BROKER_URL=redis://localhost:6379/0 +CELERY_RESULT_BACKEND=redis://localhost:6379/0 + +# LLMs +DEFAULT_LLM_PROVIDER=ollama + +# OpenAI +OPENAI_API_KEY= + +# Anthropic +ANTHROPIC_API_KEY= + +# Google Gemini +GOOGLE_API_KEY= + +# LlamaCloud (for LlamaParse) +LLAMA_CLOUD_API_KEY= +USE_LLAMA_PARSE=true + +# Ollama +OLLAMA_BASE_URL=http://localhost:11434 +OLLAMA_MODEL=llama3.1:8b +OLLAMA_EMBEDDING_MODEL=nomic-embed-text + +# Embedding +EMBEDDING_PROVIDER=ollama +EMBEDDING_DIMENSION=768 + +# Agent Configuration +MAX_AGENT_ITERATIONS=5 +AGENT_TIMEOUT_SECONDS=30 + +# Observability +ENABLE_TRACING=true +ENABLE_METRICS=true +LOG_LEVEL=INFO diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..636f5c34649909eefe8422eaa0d49d7d9d0a303d --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +*.png filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text +*.ico filter=lfs diff=lfs merge=lfs -text diff --git a/.github/prompts/Solution_Architecture.prompt.md b/.github/prompts/Solution_Architecture.prompt.md new file mode 100644 index 0000000000000000000000000000000000000000..852cda4f1deecc1823104cb7ef6d7e9cc1aae152 --- /dev/null +++ b/.github/prompts/Solution_Architecture.prompt.md @@ -0,0 +1,169 @@ +# Solution Architecture: Agentic Graph RAG as a Service + +This document outlines a detailed technical approach to building the Agentic Graph RAG platform. It focuses on modularity, scalability, and the specific requirements of the Lyzr Hackathon, with a strong emphasis on production-grade robustness. + +## 1. High-Level Architecture + +The system is designed as a set of modular services centered around a shared Knowledge Graph and Vector Store, fortified with enterprise-grade security and observability layers. + +```mermaid +graph TD + User[User / Client] --> Auth[Auth & Access Control] + Auth --> API[Unified API Gateway] + + subgraph "Observability Layer (OpenTelemetry)" + Logs[Structured Logging] + Traces[Agent Traces] + Metrics[Performance Metrics] + end + + API -.-> Logs & Traces & Metrics + + subgraph "Ingestion Pipeline (Async Workers)" + API --> Queue[Task Queue (Redis/Celery)] + Queue --> Ingest[Ingestion Worker] + Ingest --> Chunking[Text Chunking] + Chunking --> OntologyGen[LLM Ontology Gen (Versioned)] + OntologyGen --> Extract[Entity & Relation Extraction] + Extract --> Resolution[Entity Resolution / Dedup] + Resolution --> GraphDB[(Neo4j / Neptune)] + Resolution --> VectorDB[(Vector Store)] + end + + subgraph "Retrieval Context" + API --> Agent[Agent Orchestrator] + Agent --> Decomp[Query Decomposer] + Decomp --> Router[Query Router / Planner] + + Router --> |Semantic Query| VectorSearch[Vector Search] + Router --> |Deep Relation| GraphSearch[Graph Traversal / Cypher] + Router --> |Structured| FilterSearch[Metadata Filter] + + VectorSearch & GraphSearch & FilterSearch --> Validator[Hallucination Guard / Schema Validator] + Validator --> Synthesizer[Response Synthesizer] + Synthesizer --> Agent + end +``` + +## 2. Technology Stack Selection + +* **Language:** Python 3.12 (Standard for AI/ML engineering). +* **API Framework:** FastAPI (Async support, auto-documentation). +* **Orchestration:** LlamaIndex (Preferred for Graph RAG). +* **LLM:** multi-LLM support like ollama, open ai, gemini,claude (use lang-graph) (Reasoning & Extraction) & `BAAI bge-m3` this model is available on ollama so we will use from ollama (Embeddings). +* **Graph Database:** Neo4j (Primary) . +* **Vector Store:** Neo4j Vector Index (for unified storage) or Qdrant/Chroma. +* **Task Queue:** Celery with Redis (for async ingestion). +* **Monitoring:** OpenTelemetry + Prometheus/Grafana. +* **Frontend:** React vite + tailwind css (for Visual Ontology Editor). + +## 3. Production-Grade Components + +### A. Document-to-Graph Pipeline (Ingestion) + +This pipeline converts unstructured text into a structured Knowledge Graph, robust to schema changes and duplicates. + +1. **Ontology Generation & Evolution:** + * *Initial:* Ask LLM to identify high-level concepts (nodes) and interactions (edges) from first $N$ chunks. + * *Visual Editor:* Human approval step to refine the JSON schema. + * **Drift Handling:** Incorporate an "Ontology Versioning" system. Every node/edge is tagged with `ontology_version: v1.0`. New documents causing schema changes trigger a "Migration Proposal" for approval. + +2. **Extraction & Embedding:** + * **Prompt Engineering:** "Given text + Ontology v1.0, extract entities/relationships." + * **Hybrid Nodes:** Create `(:Chunk)` nodes linked to `(:Entity)` nodes (`(:Chunk)-[:MENTIONS]->(:Entity)`). This preserves ground truth source text alongside abstract graph relationships. + +3. **Advanced Entity Resolution:** + * *Naive:* Exact string match. + * *Production:* Multi-stage blocking and merging. + 1. **Blocking:** Group entities by Label and similar name (e.g., phonetic match). + 2. **Semantic Check:** Compare embeddings of candidates. + 3. **Threshold:** If similarity > 0.95 -> Auto-merge. If 0.85-0.95 -> Flag for "Human Review Queue". + +### B. The Agentic Retrieval System (The Brain) + +A state machine loop designed for accuracy and fail-safe operation. + +**1. Query Decomposition & Routing** +Instead of a single step, the Agent breaks down complexity: +* *User Query:* "How is the CEO of Lyzr related to OpenAI?" +* *Decomposition:* + 1. "Identify Lyzr CEO" (Vector/Graph lookup) -> *Result: user_X* + 2. "Find path between user_X and OpenAI" (Graph traversal). +* *Router:* Dynamically selects tools for each sub-step. + +**2. Tool Implementation with Guardrails:** +* **Vector Tool:** Top-k retrieval using embedding similarity. +* **Graph Tool (Text-to-Cypher):** Uses LLM to generate Cypher. + * **Hallucination Guard:** The tool injects the *strict* allowed schema into the prompt. Generated Cypher is parsed and validated against a "Relationship Whitelist" before execution to prevent schema injection or invalid edge types. +* **Filter Tool:** Converts natural language to structured DB filters (WHERE clauses). + +**3. Latency & Performance Strategy:** +* **Timeouts:** Hard limit on agent reasoning steps (e.g., max 5 loops). +* **Fallback:** If Graph tool fails or times out, degrade gracefully to pure Vector Search for a "best effort" answer. + +### C. Parity & Extensibility Layer + +We define abstract base class interfaces to ensure no vendor lock-in. + +```python +class GraphStore(ABC): + @abstractmethod + def execute_query(self, query: str, params: dict): pass + +class VectorStore(ABC): + @abstractmethod + def search(self, query_vector: List[float], k: int): pass + +class LLMProvider(ABC): + @abstractmethod + def complete(self, prompt: str): pass + +# Implementations: Neo4jStore, NeptuneStore, QdrantStore, OpenAIProvider, etc. +``` + +## 4. Scalability, Security & Observability + +To meet "Production-Grade" criteria, these non-functional requirements are critical: + +1. **Access Control (RBAC):** + * Pre-retrieval enforcement. + * All queries filter by `user.tenant_id` or `user.permissions` to ensure users only retrieve data they are authorized to see. + +2. **Observability:** + * **Tracing:** Log every step of the Agent's reasoning chain (Input -> Decomp -> Tool Call -> Result). This is vital for debugging "why did the bot say that?". + * **Metrics:** Track Token Usage, Latency p95, and Cache Hit Rates. + +3. **Async Ingestion:** + * Ingestion is decoupled from the user request loop. + * File Upload API -> Pushes ID to Redis Queue -> Background Worker picks up -> Runs Extraction -> Updates Graph. + +4. **Caching Strategy:** + * **Semantic Cache (Redis):** Before hitting the LLM, check if a semantically similar query has been answered recently. reduces cost and latency. + * **Embedding Cache:** Store computed embeddings to avoid re-calculation for identical text chunks. + +## 5. Implementation Plan + +### Phase 1: Foundation (Hours 1-4) +1. Set up Repository, Python envf (Neo4j/Redis). +2. Implement `GraphStore` & `VectorStore` abstractions. +3. Create Basic Auth & Middleware logging. + +### Phase 2: Ingestion Engine (Hours 5-12) +1. Implement PDF extractor & Async Worker skeleton. +2. Build "Ontology Proposer" & "Graph Extractor" prompts. +3. Implement Entity Resolution logic. + +### Phase 3: The Retrieval Agent (Hours 13-20) +1. Set up Agent loop with Query Decomposition. +2. Implement `Text2Cypher` with schema validation. +3. Implement Latency Timeouts & Fallbacks. + +### Phase 4: Refinement & UI (Hours 21-24) +1. Build Visual Editor (Streamlit). +2. Add simple Evaluation Script (run known queries, check answers). +3. Write `README.md` highlighting the "Production Thinking" (RBAC, Async, Observability). + +## 6. Key Innovations +1. **Hybrid Chunk Nodes:** Storing source text explicitly in the graph for ground-truth verification. +2. **Self-Correcting Cypher:** If Cypher execution fails, feed the error back to the LLM to fix syntax automatically. +3. **Adaptive Retrieval:** The agent assigns a "confidence score" to each retrieval method. If Vector Search confidence is low (<0.7), it automatically triggers Graph Traversal to boost context. diff --git a/.github/workflows/sync_to_hf.yml b/.github/workflows/sync_to_hf.yml new file mode 100644 index 0000000000000000000000000000000000000000..3eed44b7f285b47df90f3420ce4150df0912da34 --- /dev/null +++ b/.github/workflows/sync_to_hf.yml @@ -0,0 +1,33 @@ +name: Sync to Hugging Face +on: + push: + branches: [master] + +jobs: + sync-to-hub: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Push to hub + env: + HF_TOKEN: ${{ secrets.HF_TOKEN }} + run: | + # 1. Turn on Large File Storage (LFS) + git lfs install + + # 2. Tell Hugging Face to properly handle images + echo "*.png filter=lfs diff=lfs merge=lfs -text" >> .gitattributes + echo "*.jpg filter=lfs diff=lfs merge=lfs -text" >> .gitattributes + echo "*.ico filter=lfs diff=lfs merge=lfs -text" >> .gitattributes + + # 3. Wipe the hidden git history in the runner to clear past image errors + rm -rf .git + git config --global user.email "action@github.com" + git config --global user.name "GitHub Action" + + # 4. Create a fresh, clean package and force push it + git init + git checkout -b main + git add . + git commit -m "Automated sync to Hugging Face" + git push --force https://anky2002:$HF_TOKEN@huggingface.co/spaces/anky2002/graph-rag main diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..961ca9145e38c816b22217400b441e001e7f4ac3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,91 @@ +# ── Python ─────────────────────────────────────────────────────────────────── +__pycache__/ +*.py[oc] +*.pyo +*.pyd +build/ +dist/ +wheels/ +*.egg-info/ +.eggs/ +*.egg + +# ── Virtual environments ────────────────────────────────────────────────────── +.venv/ +venv/ +ENV/ +env/ + +# ── Environment / Secrets (NEVER commit real keys) ──────────────────────────── +.env +.env.local +.env.*.local +*.secret + +# ── Node.js / NPM ───────────────────────────────────────────────────────────── +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +.npm/ + +# ── Uploaded user data ──────────────────────────────────────────────────────── +data/uploads/* +!data/uploads/.gitkeep + +# ── One-off debug / experiment test files ───────────────────────────────────── +test_combinations.py +test_document_embedding.py +test_embedding.py +test_exact_combination.py +test_narrow_down.py +test_nomic.py +test_resume_text.py + +# ── IDE / OS ────────────────────────────────────────────────────────────────── +.idea/ +.vscode/ +*.swp +*.swo +.DS_Store +Thumbs.db + +# ── Logs & temp ─────────────────────────────────────────────────────────────── +*.log +*.tmp +*.temp +htmlcov/ +.coverage +.pytest_cache/ +.mypy_cache/ +.ruff_cache/ + +# ── Docs that are project-internal notes (not needed in repo) ───────────────── +BGE_M3_ISSUE_ANALYSIS.md +CONFIGURATION_CHANGES.md +PROJECT_COMPLETION_CHECKLIST.md +LLAMAPARSE_SETUP.md + +# ── Lyzr Hackathon source material (not part of the submitted codebase) ──────── +Lyzr_Hackathon_Problem_Statement.md + +# ── UV lock / python version pins (repo-specific, not portable) ───────────────── +# uv.lock # keep: ensures reproducible installs for reviewers +.python-version + +# ── pyvis / notebook temp files ────────────────────────────────────────────── +*.html +!frontend-react/index.html +!frontend-react/*.html +!frontend/*.html + +# ── Celery / task artefacts ─────────────────────────────────────────────────── +celerybeat-schedule +celerybeat.pid + +# ── Neo4j local data (if ever mounted) ─────────────────────────────────────── +neo4j_data/ + +# ── Windows shortcuts / artifacts ──────────────────────────────────────────── +*.lnk diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md new file mode 100644 index 0000000000000000000000000000000000000000..82edb72a9c4442125e80fb753ff3c1765b3b0125 --- /dev/null +++ b/ARCHITECTURE.md @@ -0,0 +1,297 @@ +# Graph RAG Service - Project Documentation + +## System Architecture + +### Overview +The Graph RAG Service is built as a modular, production-grade platform with the following key components: + +1. **API Gateway (FastAPI)**: Handles all HTTP requests, authentication, and routing +2. **Ingestion Pipeline**: Processes documents and constructs knowledge graphs +3. **Retrieval Agent (LangGraph)**: Intelligent query routing and response synthesis +4. **Storage Layer**: Neo4j for graph + vector storage +5. **Task Queue**: Celery + Redis for async processing +6. **Observability**: OpenTelemetry for tracing and metrics + +### Design Principles + +#### 1. No Vendor Lock-in +All core components are abstracted behind interfaces: +- `GraphStore`: Can swap Neo4j for AWS Neptune +- `VectorStore`: Supports multiple vector databases +- `LLMProvider`: Works with any LLM (OpenAI, Anthropic, Gemini, Ollama) + +#### 2. Production-Ready +- **Async Processing**: Non-blocking I/O for all database operations +- **Background Jobs**: Celery workers handle heavy ingestion tasks +- **Authentication**: JWT-based with RBAC support +- **Error Handling**: Graceful degradation and fallback mechanisms +- **Observability**: Full tracing and metrics collection + +#### 3. Intelligent Retrieval +The agentic system: +- Decomposes complex queries into sub-queries +- Dynamically selects retrieval methods (vector vs graph vs cypher) +- Validates outputs against schema (hallucination guard) +- Provides reasoning chains for transparency + +## Components Deep Dive + +### Core Abstractions (`src/graph_rag_service/core/`) + +#### GraphStore Interface +```python +class GraphStore(ABC): + @abstractmethod + async def create_node(entity: Entity) -> str + @abstractmethod + async def create_relationship(relationship: Relationship) -> str + @abstractmethod + async def execute_query(query: str, params: dict) -> List[dict] + @abstractmethod + async def find_path(source: str, target: str, max_depth: int) -> List[dict] +``` + +Implementation: `Neo4jStore` provides unified graph + vector storage using Neo4j 5.x vector capabilities. + +#### LLMProvider Interface +```python +class LLMProvider(ABC): + @abstractmethod + async def complete(prompt: str, **kwargs) -> str + @abstractmethod + async def embed(text: str) -> List[float] +``` + +Implementation: `UnifiedLLMProvider` wraps OpenAI, Anthropic, Gemini, and Ollama with a consistent interface. + +#### Entity Resolution +Multi-stage resolution: +1. **Blocking**: Group by entity type and name similarity (fast reject) +2. **Semantic Check**: Compare embeddings for deep similarity +3. **Threshold Matching**: Configurable thresholds (0.85 default) +4. **Auto-merge**: High confidence merges (>0.95) +5. **Human Review Queue**: Medium confidence flagged for review (0.85-0.95) + +### Ingestion Pipeline (`src/graph_rag_service/ingestion/`) + +#### Flow +1. **Document Processing**: Extract text from PDF/TXT/MD/DOCX +2. **Chunking**: Split into overlapping chunks (1024 tokens, 200 overlap) +3. **Ontology Generation**: LLM analyzes samples to propose entity/relationship types +4. **Entity Extraction**: Extract entities and relationships per chunk +5. **Entity Resolution**: Deduplicate and merge entities +6. **Embedding Generation**: Create vector embeddings (BGE-M3) +7. **Graph Construction**: Store in Neo4j with hybrid nodes + +#### Hybrid Nodes +Each chunk is stored as both: +- A `(:Chunk)` node with text and embedding +- Connected to `(:Entity)` nodes via `[:MENTIONS]` relationships + +This preserves source text for grounding while enabling abstract graph queries. + +### Retrieval System (`src/graph_rag_service/retrieval/`) + +#### Tools +1. **VectorSearchTool**: Semantic similarity using embeddings +2. **GraphTraversalTool**: Relationship exploration and path finding +3. **CypherGenerationTool**: Text-to-Cypher with validation +4. **MetadataFilterTool**: Structured queries on attributes + +#### Agent Workflow (LangGraph) +``` +[Query] → [Decompose] → [Route] → [Vector/Graph/Cypher] → [Synthesize] → [Response] + ↑ ↓ + └─────────────────────────────────────┘ + (Iterative refinement) +``` + +#### Hallucination Guards +- **Schema Injection**: Prompt includes allowed entity/relationship types +- **Cypher Validation**: Parse and validate against whitelist +- **Self-Correction**: Feed errors back to LLM to fix syntax +- **Fallback**: If graph fails, degrade to vector search + +### API Layer (`src/graph_rag_service/api/`) + +#### Endpoints +- `POST /api/auth/login`: Get JWT token +- `POST /api/documents/upload`: Upload document (returns task ID) +- `GET /api/documents/status/{task_id}`: Check ingestion progress +- `POST /api/query`: Execute agentic query +- `GET /api/ontology`: Get current ontology schema +- `PUT /api/ontology`: Update ontology (admin only) +- `GET /api/graph/visualization`: Get graph data for visualization +- `GET /api/system/health`: System health check +- `GET /api/system/stats`: System statistics + +#### Authentication +- JWT tokens with configurable expiration (default: 30 min) +- RBAC with scopes: `read`, `write`, `admin` +- Dependency injection for protected endpoints + +### Workers (`src/graph_rag_service/workers/`) + +#### Celery Tasks +- `ingest_document`: Process single document +- `ingest_documents_batch`: Process multiple documents +- `health_check`: Worker health verification + +#### Configuration +- Broker: Redis +- Result Backend: Redis +- Serializer: JSON +- Task timeout: 1 hour (configurable) + +### Observability (`src/graph_rag_service/observability/`) + +#### OpenTelemetry Integration +- **Traces**: Agent reasoning steps, tool calls, database queries +- **Metrics**: + - `documents_ingested`: Counter + - `queries_executed`: Counter + - `query_duration_seconds`: Histogram + - `entities_extracted`: Counter + +#### Structured Logging +- Log level: INFO (configurable) +- Format: `%(asctime)s - %(name)s - %(levelname)s - %(message)s` +- All async operations logged with context + +## Configuration + +### Environment Variables +Key settings in `.env`: +- **Neo4j**: `NEO4J_URI`, `NEO4J_USER`, `NEO4J_PASSWORD` +- **Redis**: `REDIS_HOST`, `REDIS_PORT` +- **LLM Provider**: `DEFAULT_LLM_PROVIDER` (openai/anthropic/gemini/ollama) +- **API Keys**: `OPENAI_API_KEY`, `ANTHROPIC_API_KEY`, `GOOGLE_API_KEY` +- **Ollama**: `OLLAMA_BASE_URL`, `OLLAMA_MODEL`, `OLLAMA_EMBEDDING_MODEL` +- **Security**: `SECRET_KEY`, `ACCESS_TOKEN_EXPIRE_MINUTES` + +### Tuning Parameters +- `CHUNK_SIZE`: 1024 (text chunk size) +- `CHUNK_OVERLAP`: 200 (overlap between chunks) +- `MAX_AGENT_ITERATIONS`: 5 (max reasoning steps) +- `AGENT_TIMEOUT_SECONDS`: 30 (query timeout) +- `ENTITY_RESOLUTION_THRESHOLD`: 0.85 (similarity threshold) +- `DEFAULT_TOP_K`: 5 (retrieval results) +- `GRAPH_MAX_DEPTH`: 3 (graph traversal depth) + +## Deployment + +### Local Development +```bash +# 1. Ensure Neo4j and Redis are running +# 2. Configure .env with connection details + +# 3. Start API server +./start-server.sh # or start-server.bat on Windows + +# 4. Start workers +./start-worker.sh # or start-worker.bat on Windows +``` + +### Production Considerations +1. **Database**: Use managed Neo4j (Aura) or self-hosted cluster +2. **Redis**: Use managed Redis (AWS ElastiCache, Redis Cloud) +3. **Worker Scaling**: Add more Celery workers based on ingestion load +4. **API Scaling**: Run multiple API instances behind load balancer +5. **Monitoring**: Integrate with Prometheus/Grafana for metrics +6. **Secrets**: Use secret management (AWS Secrets Manager, HashiCorp Vault) + +## Extensibility + +### Adding New LLM Provider +1. Implement `LLMProvider` interface +2. Add to `LLMFactory.create()` method +3. Update config with new provider settings + +### Adding New Graph Database +1. Implement `GraphStore` interface +2. Update `IngestionPipeline` to use new store +3. Test with existing workflows + +### Custom Retrieval Tools +1. Create new tool class with `run()` method +2. Add to `AgentRetrievalSystem.tools` +3. Update routing logic in `_route_query()` + +## Testing Strategy + +### Unit Tests +- Test each component independently +- Mock external dependencies (Neo4j, Redis, LLMs) +- Focus on business logic + +### Integration Tests +- Test component interactions +- Use test database instances +- Verify end-to-end flows + +### Performance Tests +- Benchmark ingestion throughput +- Measure query latencies +- Stress test with concurrent requests + +## Future Enhancements + +### Phase 1 (Current MVP) +- ✅ Core ingestion pipeline +- ✅ Agentic retrieval system +- ✅ Multi-LLM support +- ✅ Entity resolution +- ✅ Async workers + +### Phase 2 (Next Steps) +- [ ] React frontend with visual ontology editor +- [ ] Graph visualization (D3.js/Cytoscape) +- [ ] Advanced ontology evolution with migrations +- [ ] Semantic cache with Redis +- [ ] Batch ingestion optimization + +### Phase 3 (Advanced Features) +- [ ] Multi-tenant support with data isolation +- [ ] Fine-tuned entity extraction models +- [ ] Graph neural network embeddings +- [ ] Automated ontology quality metrics +- [ ] Export/import ontology schemas + +## Troubleshooting + +### Common Issues + +#### Neo4j Connection Failed +- Verify Neo4j is running and accessible +- Verify credentials in `.env` +- Try connecting with cypher-shell: `cypher-shell -u neo4j -p password` + +#### Celery Worker Not Processing +- Check Redis is running: `redis-cli ping` +- Verify broker URL in `.env` +- Check worker logs + +#### Ollama Models Not Found +- Pull models: `ollama pull llama3.2 && ollama pull bge-m3` +- Verify Ollama is running: `curl http://localhost:11434/api/tags` + +#### Query Returns No Results +- Verify documents are ingested: `GET /api/system/stats` +- Check ontology exists: `GET /api/ontology` +- Try simpler queries first + +## Support + +For issues or questions: +1. Check documentation and troubleshooting guide +2. Search existing GitHub issues +3. Open new issue with: + - Clear description + - Steps to reproduce + - Environment details + - Relevant logs + +--- + +**Last Updated**: February 2026 +**Version**: 0.1.0 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..ab90f3daf214eea14daa338912c442bef12a68c3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,155 @@ +FROM ubuntu:22.04 + +# Avoid tzdata interactive prompts +ENV DEBIAN_FRONTEND=noninteractive + +# Install system dependencies and Python 3.12 +RUN apt-get update && apt-get install -y software-properties-common \ + && add-apt-repository ppa:deadsnakes/ppa \ + && apt-get update && apt-get install -y \ + python3.12 \ + python3.12-venv \ + python3.12-dev \ + python3-pip \ + curl \ + wget \ + git \ + redis-server \ + openjdk-17-jdk \ + && rm -rf /var/lib/apt/lists/* + +# Install Node.js for frontend build +RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ + && apt-get install -y nodejs + +# Create app directory +WORKDIR /app + +# Download and extract Neo4j and GDS plugin +RUN wget -q https://neo4j.com/artifact.php?name=neo4j-community-5.18.0-unix.tar.gz -O neo4j.tar.gz \ + && tar -xf neo4j.tar.gz \ + && mv neo4j-community-5.18.0 neo4j \ + && rm neo4j.tar.gz \ + && wget -q https://github.com/neo4j/graph-data-science/releases/download/2.6.4/neo4j-graph-data-science-2.6.4.jar -O neo4j/plugins/neo4j-graph-data-science.jar + +# Configure Neo4j for demo mode (disable auth, limit memory, enable GDS) +RUN echo "dbms.security.auth_enabled=false" >> neo4j/conf/neo4j.conf \ + && echo "server.memory.heap.initial_size=512m" >> neo4j/conf/neo4j.conf \ + && echo "server.memory.heap.max_size=1G" >> neo4j/conf/neo4j.conf \ + && echo "server.memory.pagecache.size=1G" >> neo4j/conf/neo4j.conf \ + && echo "dbms.security.procedures.unrestricted=gds.*" >> neo4j/conf/neo4j.conf + +# Copy project files +COPY . . + +# Build frontend +WORKDIR /app/frontend-react +RUN npm install +RUN npm run build + +# Setup Python backend +WORKDIR /app +RUN python3.12 -m venv .venv +ENV PATH="/app/.venv/bin:$PATH" +RUN pip install --upgrade pip +RUN pip install -e . + +# Create start script +RUN echo '#!/bin/bash\n\ +\n\ +# Start Redis\n\ +redis-server --daemonize yes\n\ +\n\ +# Start Neo4j in background\n\ +/app/neo4j/bin/neo4j start\n\ +\n\ +# Wait for Neo4j to be ready\n\ +echo "Waiting for Neo4j to start..."\n\ +while ! curl -s http://localhost:7474 > /dev/null; do\n\ + sleep 2\n\ +done\n\ +echo "Neo4j HTTP is up! Waiting for Bolt (7687)..."\n\ +while ! (echo > /dev/tcp/localhost/7687) >/dev/null 2>&1; do\n\ + sleep 2\n\ +done\n\ +echo "Neo4j is up!"\n\ +\n\ +# Set environment variables for Demo Mode\n\ +export NEO4J_URI=bolt://localhost:7687\n\ +export NEO4J_USER=neo4j\n\ +export NEO4J_PASSWORD=dummy\n\ +export REDIS_HOST=localhost\n\ +export REDIS_PORT=6379\n\ +export REDIS_DB=0\n\ +export DEMO_MODE=true\n\ +export ENVIRONMENT=production\n\ +export SECRET_KEY=demo-secret-key-1234567890\n\ +\n\ +if [ -z "$GOOGLE_API_KEY" ]; then\n\ + export DEFAULT_LLM_PROVIDER=mock\n\ + export EMBEDDING_PROVIDER=mock\n\ + export DEMO_MODE=true\n\ + echo "[WARNING] GOOGLE_API_KEY is not set. Running in DEMO_MODE with mock LLM provider."\n\ +else\n\ + export DEFAULT_LLM_PROVIDER=gemini\n\ + export EMBEDDING_PROVIDER=gemini\n\ +fi\n\ +\n\ +# Create default admin user in Neo4j\n\ +python -c "\n\ +import asyncio\n\ +from src.graph_rag_service.core.neo4j_store import Neo4jStore\n\ +from src.graph_rag_service.api.auth import get_password_hash\n\ +\n\ +async def main():\n\ + store = Neo4jStore()\n\ + await store.connect()\n\ + try:\n\ + await store.create_user({\n\ + '\''username'\'': '\''admin'\'',\n\ + '\''hashed_password'\'': get_password_hash('\''admin'\''),\n\ + '\''email'\'': '\''admin@example.com'\'',\n\ + '\''full_name'\'': '\''Demo Admin'\'',\n\ + '\''disabled'\'': False,\n\ + '\''scopes'\'': ['\''read'\'', '\''write'\'', '\''admin'\''],\n\ + '\''tenant_id'\'': '\''demo_tenant'\'',\n\ + })\n\ + print('\''Admin user created in Neo4j'\'')\n\ + \n\ + # Check GDS\n\ + gds_res = await store.execute_query('\''RETURN gds.version() as version'\'')\n\ + print(f'\''GDS Plugin Version: {gds_res[0]["version"] if gds_res else "NOT FOUND"}'\'')\n\ + except Exception as e:\n\ + print(f'\''Admin user creation note: {e}'\'')\n\ + raise e\n\ + await store.disconnect()\n\ +\n\ +asyncio.run(main())\n\ +"\n\ +if [ $? -ne 0 ]; then\n\ + echo "Admin seed failed, retrying in 5 seconds..."\n\ + sleep 5\n\ + python -c "\n\ +import asyncio\n\ +from src.graph_rag_service.core.neo4j_store import Neo4jStore\n\ +from src.graph_rag_service.api.auth import get_password_hash\n\ +\n\ +async def main():\n\ + store = Neo4jStore()\n\ + await store.connect()\n\ + try:\n\ + await store.create_user({'username': 'admin', 'hashed_password': get_password_hash('admin'), 'scopes': ['read', 'write', 'admin'], 'tenant_id': 'demo_tenant'})\n\ + except Exception as e: pass\n\ + await store.disconnect()\n\ +asyncio.run(main())\n\ + "\n\ +fi\n\ +\n\ +# Start FastAPI and serve static files (frontend)\n\ +uvicorn src.graph_rag_service.api.server:app --host 0.0.0.0 --port 7860\n\ +' > start.sh && chmod +x start.sh + +# HF Spaces requires serving on 7860 +EXPOSE 7860 + +CMD ["./start.sh"] diff --git a/QUICKSTART.md b/QUICKSTART.md new file mode 100644 index 0000000000000000000000000000000000000000..eebcff593be3f84721c43243a27f45aa5fee7cb0 --- /dev/null +++ b/QUICKSTART.md @@ -0,0 +1,265 @@ +# Quick Start Guide + +Get the Graph RAG Service up and running in 10 minutes! + +## Prerequisites + +Before starting, make sure you have: +- Python 3.12 or higher +- Neo4j database (running locally or remotely) +- Redis server (running locally or remotely) +- UV package manager (will be installed if missing) + +## Step 1: Clone and Setup + +```bash +cd graph-RAG + +# Install UV if you don't have it +curl -LsSf https://astral.sh/uv/install.sh | sh + +# Install dependencies +uv sync +``` + +## Step 2: Configure Environment + +```bash +# Copy environment template +cp .env.example .env + +# Edit .env with your settings +# Configure NEO4J_URI, NEO4J_USER, NEO4J_PASSWORD +# Configure REDIS_URL +``` + +## Step 3: Ensure Backend Services Are Running + +Make sure Neo4j and Redis are running and accessible: +- Neo4j should be available at the URI specified in your .env file (default: bolt://localhost:7687) +- Redis should be available at the URL specified in your .env file (default: redis://localhost:6379) + +## Step 4: Start the API Server + +### On Windows: +```bash +start-server.bat +``` + +### On Mac/Linux: +```bash +chmod +x start-server.sh +./start-server.sh +``` + +### Or directly (any OS): +```bash +uv run python main.py +``` + +The API server will start on `http://localhost:8000` + +## Step 5: Start Celery Worker + +For asynchronous document ingestion, start a worker in a **new terminal**: + +### On Windows: +```bash +start-worker.bat +``` + +### On Mac/Linux: +```bash +chmod +x start-worker.sh +./start-worker.sh +``` + +### Or directly: +```bash +uv run celery -A src.graph_rag_service.workers.celery_worker worker --loglevel=info +``` + +## Step 6: Start the React Frontend + +In a **new terminal**: + +```bash +cd frontend-react + +# Install Node dependencies (first time only) +npm install + +# Start the dev server +npm run dev +``` + +The React UI will open at `http://localhost:5173` + +> **Note:** The project uses a **React/Vite** frontend (`frontend-react/`). +> There is no `streamlit run app.py` — any references to Streamlit in older docs are outdated. + +Login with: **username** `admin` / **password** `admin` + +## Step 7: Test the API + +### Using cURL + +1. **Get Access Token** +```bash +curl -X POST "http://localhost:8000/api/auth/login" \ + -H "Content-Type: application/json" \ + -d '{"username": "demo", "password": "demo"}' +``` + +Save the `access_token` from the response. + +2. **Upload a Document** +```bash +curl -X POST "http://localhost:8000/api/documents/upload" \ + -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \ + -F "file=@sample.pdf" +``` + +3. **Query the Knowledge Base** +```bash +curl -X POST "http://localhost:8000/api/query" \ + -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \ + -H "Content-Type: application/json" \ + -d '{ + "query": "What is this document about?", + "top_k": 5 + }' +``` + +### Using the Interactive Docs + +Open your browser and go to: +- Swagger UI: `http://localhost:8000/docs` +- ReDoc: `http://localhost:8000/redoc` + +Click "Authorize" and enter your access token to test endpoints interactively. + +## Step 8: Setup Ollama (Optional) + +If you want to use local LLMs instead of OpenAI/Anthropic: + +```bash +# Install Ollama (https://ollama.ai) +# Then pull models: +ollama pull llama3.2 +ollama pull bge-m3 +``` + +Update `.env`: +``` +DEFAULT_LLM_PROVIDER=ollama +OLLAMA_BASE_URL=http://localhost:11434 +OLLAMA_MODEL=llama3.2 +OLLAMA_EMBEDDING_MODEL=bge-m3 +``` + +## Common Commands + +### Check System Health +```bash +curl http://localhost:8000/api/system/health +``` + +### Get System Stats +```bash +curl -H "Authorization: Bearer YOUR_TOKEN" \ + http://localhost:8000/api/system/stats +``` + +### View Ontology +```bash +curl -H "Authorization: Bearer YOUR_TOKEN" \ + http://localhost:8000/api/ontology +``` + +### Visualize Graph +```bash +curl -H "Authorization: Bearer YOUR_TOKEN" \ + "http://localhost:8000/api/graph/visualization?limit=50" +``` + +## Troubleshooting + +### Neo4j Connection Error +```bash +# Verify credentials in .env +# Check Neo4j is accessible + +# Access Neo4j browser +open http://localhost:7474 + +# Try connecting with cypher-shell +cypher-shell -u neo4j -p password +``` + +### Redis Connection Error +```bash +# Check Redis is running +redis-cli ping + +# Test Redis connection +redis-cli -h localhost -p 6379 ping +``` + +### Worker Not Processing +```bash +# Check worker logs +# If running locally: +celery -A src.graph_rag_service.workers.celery_worker inspect active +``` + +### API Server Won't Start +```bash +# Check for port conflicts +lsof -i :8000 # On Mac/Linux +netstat -ano | findstr :8000 # On Windows + +# View detailed logs +uv run python main.py +``` + +## Next Steps + +- Read the [README.md](README.md) for comprehensive documentation +- Check [ARCHITECTURE.md](ARCHITECTURE.md) for system design details +- Explore the API docs at `http://localhost:8000/docs` + +## Using with Different LLM Providers + +### OpenAI +```bash +# In .env: +DEFAULT_LLM_PROVIDER=openai +OPENAI_API_KEY=sk-your-key-here +``` + +### Anthropic +```bash +# In .env: +DEFAULT_LLM_PROVIDER=anthropic +ANTHROPIC_API_KEY=sk-ant-your-key-here +``` + +### Google Gemini +```bash +# In .env: +DEFAULT_LLM_PROVIDER=gemini +GOOGLE_API_KEY=your-key-here +``` + +Services will be available at: +- API: `http://localhost:8000` +- Neo4j Browser: `http://localhost:7474` + +## Need Help? + +- Check the troubleshooting section above +- Read the full [README.md](README.md) +- Open an issue on GitHub + +Happy building! 🚀 diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..18d71ca47a2648aee008df533e4adb8549383482 --- /dev/null +++ b/README.md @@ -0,0 +1,467 @@ +# CORTEX — Agentic Graph RAG Platform + +> **CORTEX** is a production-grade, agentic Knowledge Graph platform that transforms unstructured documents and web content into an intelligent, queryable knowledge graph — with a full-featured React UI, streaming AI chat, real-time graph visualization, simulation personas, and deep ontology governance. + +--- + +## ✨ What's Been Built + +### 🖥️ Full-Stack Application + +| Layer | Stack | +|---|---| +| **Backend API** | FastAPI (async) + Python 3.12 | +| **Task Queue** | Celery + Redis | +| **Graph + Vector DB** | Neo4j 5.x (unified) | +| **LLM Layer** | OpenAI, Anthropic, Google Gemini, Ollama | +| **Frontend** | React 18 + TypeScript + Vite | +| **Unified Start** | `npm run rag` (concurrently launches all 3 processes) | + +--- + +## 🚀 Features + +### 📥 Document Ingestion Pipeline + +- **Multi-format ingestion**: PDF, TXT, MD, DOCX, CSV, XLSX, PPTX, JSON +- **Web scraping**: Single-page scrape via `POST /api/documents/scrape` +- **Deep web crawling**: Multi-depth Playwright-powered crawler (`POST /api/documents/crawl`) via Crawl4AI +- **Async Celery workers**: Upload returns instantly with a `task_id`; background workers build the graph +- **Re-ingest**: Admin can trigger re-processing of any stored document +- **Document preview & download**: In-browser preview of text/Markdown; PDF download via API + +### 🔭 Ontology Management + +- **Auto-generation**: LLM analyzes document chunks to propose entity types & relationship types +- **LLM-powered refinement**: `POST /api/ontology/refine` — refine schema with optional human feedback +- **Versioning**: Each schema change bumps the version (`v1.0` → `v1.1`, etc.) +- **Document-scoped stats**: `/api/ontology/stats?document_id=...` returns entity/relationship breakdowns for a specific document +- **Visual editor**: Ontology view in UI with editable entity types and relationship types +- **Ontology Drift Detection**: Automated drift detection compares live graph against new chunk samples; exposes pending/approved/rejected drift reports with admin approve/reject workflow + +### 🤖 Agentic Retrieval System + +- **LangGraph orchestration**: State-machine ReACT agent with multi-step reasoning and fallback mechanisms +- **Tool routing**: Dynamically selects from Naive Vector, Hybrid, Metadata Filtering, Global Community Search, HippoRAG, Graph of Thoughts (GoT), and Cypher. +- **Retrieval Modes**: Switch seamlessly between `AUTO`, `HYBRID`, `HIPPO-RAG`, `LOCAL GRAPH`, `GLOBAL COMMUNITY`, `GOT`, `CYPHER`, `NAIVE`, and `SIMULATION`. +- **Streaming responses**: Server-Sent Events (SSE) with real-time reasoning steps surfaced in the UI +- **Multi-turn conversations**: Persistent conversation threads stored in Neo4j, per-user +- **Document-scoped queries**: Filter retrieval to a specific document via `document_id` +- **Graph of Thoughts (GoT)**: Advanced multi-hop reasoning mode exploring the graph neighborhood +- **HippoRAG**: Personalized PageRank (PPR) fallback strategies mapped to entity seeding +- **Global Community Search**: Vector similarity search over pre-computed hierarchical Leiden reports +- **LLM-as-a-Judge (inline)**: Optional per-response quality scoring with hallucination risk, grounded/ungrounded claims, and confidence reasoning displayed in chat +- **Confidence display**: Confidence score, hallucination risk, and judge reasoning shown directly in the chat bubble + +### 📊 RAGAS Evaluation & Quality Dashboard + +- **`POST /api/eval/score`**: Run RAGAS-style evaluation on any Q&A pair (faithfulness, relevancy, context precision, hallucination detection) +- **`GET /api/eval/dashboard`**: Aggregate evaluation history — avg scores, hallucination rate, trend timeline +- Results persisted in Neo4j for longitudinal quality tracking + +### 🗺️ Graph Intelligence + +- **D3 force-directed visualization**: Interactive knowledge graph with zoom, pan, node selection, and a details modal +- **Graph Export**: Export full or document-scoped graph as JSON, Cypher, or GraphML +- **Community Detection**: Hierarchical Leiden community clustering with `POST /api/graph/communities/assign` +- **Community listing**: `GET /api/graph/communities` — top communities by entity count +- **Temporal Queries**: `GET /api/entities/{entity_name}/at-time` — retrieve entity relationships at a historical point in time +- **Semantic Entity Deduplication**: Multi-stage entity resolution with configurable similarity thresholds (`POST /api/entities/deduplicate`) +- **Entity Enrichment**: LLM-synthesized profile summaries for every entity, stored as `e.summary` (`POST /api/entities/enrich`) +- **Entity Chat (scoped)**: `POST /api/entities/{entity_name}/chat` — multi-turn conversation scoped entirely to a single entity's graph neighborhood +- **Graph Memory Updater**: Push raw text directly into the live knowledge graph without re-ingesting a document (`POST /api/graph/update`) + +### 📝 Analytical Report Agent (ReACT) + +- **`POST /api/report`**: ReACT multi-step report agent using InsightForge / PanoramaSearch / QuickSearch tools +- Decomposes topic into sub-questions → retrieves graph data → synthesizes sections → compiles structured markdown report +- Exposed in the **Insights** view (copy/download report as Markdown) + +### 🎭 Simulation & Persona Engine + +- **Persona generation**: Celery task that generates personas from graph entities (`POST /api/v1/simulation/generate_personas`) +- **Simulation ticks**: Background tick loop (`POST /api/v1/simulation/tick`) +- **Live persona interview**: `POST /api/v1/simulation/interview` — roleplay chat with any graph entity injecting their Neo4j memory as system context +- **SimulationRunView**: Dedicated UI view for managing and interacting with simulation personas + +### 🛡️ Admin Dashboard + +- **System statistics**: Node count, relationship count, LLM provider, environment +- **User management**: List users, update scopes/roles (RBAC) +- **Document vault**: View and delete all ingested documents +- **Graph CRUD**: Search, inspect, and delete graph nodes from the admin panel +- **Ontology governance**: Review and approve/reject pending ontology proposals +- **Celery task monitor**: View active and reserved tasks from the admin panel +- **Self-demotion guard**: Admins cannot demote their own account +- **Re-ingest button**: Re-queue any stored document from the document vault +- **User activity metrics**: Per-user conversation count, message count, last active timestamp + +### 🔐 Authentication & Security + +- **JWT authentication**: Token-based auth with configurable expiry +- **RBAC scopes**: `read`, `write`, `admin` scopes enforced per endpoint +- **User registration**: `POST /api/auth/register` +- **Pydantic validation**: All API inputs validated at the model layer +- **Cypher injection prevention**: Schema validation and query whitelisting +- **File upload limits**: File size and MIME type enforcement + +### 🌐 Frontend (React/TypeScript) + +Seven fully implemented views accessible from the `CORTEX` top navigation bar: + +| Route | View | Description | +|---|---|---| +| `/` | **Home** | Animated stats dashboard — documents, entities, relationships, graph health | +| `/process` | **Process** | Upload files or scrape/crawl URLs; view ingestion queue and document list | +| `/ontology` | **Ontology** | View/edit the live ontology schema; run LLM refinement; inspect entity/relationship stats per doc | +| `/interact` | **Interact** | Streaming AI chat with reasoning steps, confidence, hallucination risk; conversation history | +| `/simulate` | **Simulate** | Simulation persona management and live interview interface | +| `/insights` | **Insights** | Topic-driven analytical report generation with copy/download | +| `/admin` | **Admin** _(admin-only)_ | Full admin panel for users, docs, tasks, ontology governance | + +### 🔭 Observability + +- **OpenTelemetry**: Distributed tracing (silenced from console; configured for export) +- **Health check**: `GET /api/system/health` — Neo4j, Redis, Celery worker status +- **System stats**: `GET /api/system/stats` — document, entity, relationship, chunk counts +- **User stats**: `GET /api/system/my-stats` — per-user conversation and message activity + +--- + +## 🏗️ Architecture + +``` +┌─────────────────────────────────────────────────────────────────────────────┐ +│ React Frontend (CORTEX) │ +│ Home │ Process │ Ontology │ Interact │ Simulate │ Insights │ Admin │ +└─────────────────────────────┬───────────────────────────────────────────────┘ + │ HTTP / SSE +┌─────────────────────────────▼───────────────────────────────────────────────┐ +│ FastAPI Gateway (port 8000) │ +│ JWT Auth · RBAC Scopes · CORS · OpenTelemetry │ +└──────┬──────────────────────┬──────────────────────┬────────────────────────┘ + │ │ │ +┌──────▼──────┐ ┌───────────▼──────────┐ ┌───────▼────────────────────┐ +│ Ingestion │ │ ReACT Agent System │ │ Report Agent (ReACT) │ +│ Pipeline │ │ - Vector Search │ │ - InsightForge │ +│ - Parser │ │ - Graph Traversal │ │ - PanoramaSearch │ +│ - Ontology │ │ - Cypher Gen (GoT) │ │ - QuickSearch │ +│ - Extractor│ │ - Community Search │ │ - Markdown output │ +│ - Web │ │ - Temporal Queries │ └────────────────────────────┘ +│ Crawler │ │ - LLM-as-a-Judge │ +└──────┬──────┘ └─────────┬────────────┘ + │ │ +┌──────▼────────────────────▼──────────────────┐ +│ Neo4j 5.x Database │ +│ Entities · Chunks · Relationships · │ +│ Vector Index · Conversations · │ +│ EvalResults · DriftReports · Users │ +└───────────────────────────────────────────────┘ + │ +┌──────▼──────────────────────┐ +│ Celery Workers (Redis) │ +│ - Async document ingestion │ +│ - Persona generation │ +│ - Simulation ticks │ +└─────────────────────────────┘ +``` + +--- + +## 📦 Project Structure + +``` +graph-RAG/ +├── src/graph_rag_service/ +│ ├── api/ +│ │ ├── server.py # Main FastAPI app + all API routes (1900 lines) +│ │ ├── auth.py # JWT auth + RBAC helpers +│ │ ├── admin.py # Admin sub-router +│ │ ├── simulation.py # Simulation / persona interview router +│ │ └── models.py # All Pydantic request/response models +│ ├── core/ +│ │ ├── abstractions.py # Abstract base classes (GraphStore, VectorStore, LLMProvider) +│ │ ├── models.py # Domain data models +│ │ ├── neo4j_store.py # Full Neo4j implementation (graph + vector) +│ │ ├── llm_factory.py # Multi-LLM provider factory + UnifiedLLMProvider +│ │ ├── entity_resolver.py # Semantic entity deduplication +│ │ └── storage.py # File storage abstraction +│ ├── ingestion/ +│ │ ├── pipeline.py # End-to-end ingestion orchestrator +│ │ ├── document_processor.py # Multi-format document parsing +│ │ ├── ontology_generator.py # LLM ontology generation + refinement +│ │ ├── extractor.py # Entity + relationship extraction +│ │ ├── web_crawler.py # Playwright-based deep web crawler (Crawl4AI) +│ │ └── persona_generator.py # Simulation persona generation +│ ├── retrieval/ +│ │ ├── agent.py # LangGraph ReACT retrieval agent +│ │ ├── tools.py # Retrieval tools + RAGEvaluator (RAGAS) +│ │ └── report_agent.py # ReACT analytical report agent +│ ├── services/ +│ │ ├── graph_memory_updater.py # Push raw text → live graph +│ │ ├── entity_enricher.py # LLM entity profile summaries +│ │ └── ontology_drift_detector.py # Automated schema drift detection +│ ├── workers/ +│ │ └── celery_worker.py # Celery app + ingest_document_task +│ ├── observability/ +│ │ └── tracing.py # OpenTelemetry setup (console suppressed) +│ ├── config.py # Pydantic settings (all env vars) +│ └── main.py # Uvicorn entry point +├── frontend-react/ +│ └── src/ +│ ├── views/ +│ │ ├── Home.tsx # Animated stats dashboard +│ │ ├── Process.tsx # Document upload + URL scrape/crawl +│ │ ├── Ontology.tsx # Schema editor + stats +│ │ ├── InteractionView.tsx # Streaming chat + conversation history +│ │ ├── SimulationRunView.tsx # Persona simulation UI +│ │ ├── InsightsView.tsx # Report generation + copy/download +│ │ ├── AdminDashboard.tsx # Full admin panel +│ │ └── Login.tsx # Login page +│ ├── components/ +│ │ └── GraphCanvas.tsx # D3 force-directed graph + node modal +│ ├── context/ +│ │ └── AuthContext.tsx # JWT auth context + hooks +│ └── App.tsx # Router + top-nav (CORTEX branding) +├── tests/ # Test suite +├── data/uploads/ # Uploaded documents (local storage) +├── .env.example # All configurable environment variables +├── pyproject.toml # Python project + uv dependencies +├── package.json # Unified start scripts (npm run rag) +├── ARCHITECTURE.md # Detailed architecture design doc +└── QUICKSTART.md # 5-minute quick start guide +``` + +--- + +## ⚡ Quick Start + +### Prerequisites + +- Python 3.12+ +- Node.js 18+ +- Neo4j 5.x (running) with **APOC** and **Graph Data Science (GDS)** plugins installed +- Redis (running) +- Ollama *(optional, for local LLMs)* + +### 1. Clone & Install + +```bash +git clone +cd graph-RAG + +# Installs Python deps (uv), frontend (npm), and Playwright Chromium +npm install +``` + +### 2. Configure Environment + +```bash +cp .env.example .env +# Fill in NEO4J_URI, NEO4J_PASSWORD, and your LLM API keys +``` + +### 3. Start Neo4j (Requires GDS Plugin) + +```bash +docker run -d --name neo4j \ + -p 7474:7474 -p 7687:7687 \ + -e NEO4J_AUTH=neo4j/password \ + -e NEO4J_PLUGINS='["graph-data-science", "apoc"]' \ + neo4j:5.18.0 +``` + +### 4. Start Redis + +```bash +docker run -d --name redis -p 6379:6379 redis:alpine +``` + +### Hugging Face Spaces / All-in-One Docker +You can easily deploy CORTEX to Hugging Face Spaces or as a standalone container. +Our `Dockerfile` automatically installs Python 3.12, Redis, Neo4j, and the GDS plugin to run the entire platform on a single port (`7860`). + +### 5. Launch Everything + +```bash +npm run rag +``` + +This starts three color-coded processes concurrently: + +| Process | URL | +|---|---| +| **API Server** | `http://localhost:8000` | +| **API Docs** | `http://localhost:8000/docs` | +| **React Frontend** | `http://localhost:5173` | + +> Default credentials: `admin` / `admin` + +--- + +## 🔑 Environment Variables + +Copy `.env.example` to `.env` and configure: + +```env +# Neo4j +NEO4J_URI=bolt://localhost:7687 +NEO4J_USER=neo4j +NEO4J_PASSWORD=password + +# Redis +REDIS_HOST=localhost +REDIS_PORT=6379 + +# LLM Provider (openai | anthropic | gemini | ollama) +DEFAULT_LLM_PROVIDER=gemini +GOOGLE_API_KEY=your-key-here + +# Optional: OpenAI / Anthropic +OPENAI_API_KEY=sk-... +ANTHROPIC_API_KEY=sk-ant-... + +# Optional: Ollama (local) +OLLAMA_BASE_URL=http://localhost:11434 +OLLAMA_MODEL=deepseek-r1:7b +OLLAMA_EMBEDDING_MODEL=nomic-embed-text + +# Feature flags +ENABLE_LLM_JUDGE=true + +# Security +SECRET_KEY=change-this-in-production +ACCESS_TOKEN_EXPIRE_MINUTES=1440 +``` + +--- + +## 🌐 API Reference + +### Authentication +| Method | Endpoint | Description | +|---|---|---| +| `POST` | `/api/auth/register` | Register new user | +| `POST` | `/api/auth/login` | Login → JWT token | +| `GET` | `/api/auth/me` | Get current user info | + +### Documents +| Method | Endpoint | Description | +|---|---|---| +| `POST` | `/api/documents/upload` | Upload file (PDF, DOCX, TXT, MD, CSV, XLSX, PPTX, JSON) | +| `POST` | `/api/documents/scrape` | Scrape single URL → ingest | +| `POST` | `/api/documents/crawl` | Deep multi-page Playwright crawl → ingest *(API Only)* | +| `GET` | `/api/documents` | List all ingested documents | +| `DELETE` | `/api/documents/{id}` | Delete document + graph chunks | +| `GET` | `/api/documents/{id}/download` | Download source file | +| `GET` | `/api/documents/{id}/preview` | Preview text content | +| `GET` | `/api/documents/status/{task_id}` | Ingestion task status | + +### Query & Chat +| Method | Endpoint | Description | +|---|---|---| +| `POST` | `/api/query` | Agentic query (streaming or JSON); supports `document_id`, `use_got` | +| `GET` | `/api/conversations` | List conversation threads | +| `GET` | `/api/conversations/{id}` | Get conversation + messages | +| `DELETE` | `/api/conversations/{id}` | Delete conversation | + +### Ontology +| Method | Endpoint | Description | +|---|---|---| +| `GET` | `/api/ontology` | Get current ontology | +| `PUT` | `/api/ontology` | Update ontology (admin) | +| `POST` | `/api/ontology/refine` | LLM-powered ontology refinement | +| `GET` | `/api/ontology/stats` | Entity/relationship counts (optional doc filter) | +| `POST` | `/api/ontology/drift/detect` | Trigger drift detection | +| `GET` | `/api/ontology/drift` | List drift reports | +| `POST` | `/api/ontology/drift/{id}/approve` | Approve drift → merge into ontology | +| `POST` | `/api/ontology/drift/{id}/reject` | Reject drift report | + +### Graph +| Method | Endpoint | Description | +|---|---|---| +| `GET` | `/api/graph/visualization` | Graph nodes + edges for D3 rendering | +| `GET` | `/api/graph/export` | Export graph (json \| cypher \| graphml) | +| `POST` | `/api/graph/update` | Push raw text → merge into live graph | +| `POST` | `/api/graph/communities/assign` | Run Hierarchical Leiden clustering & generate reports | +| `GET` | `/api/graph/communities` | List top communities | + +### Entities +| Method | Endpoint | Description | +|---|---|---| +| `POST` | `/api/entities/deduplicate` | Semantic entity resolution + merge | +| `POST` | `/api/entities/enrich` | Generate LLM summaries for all entities | +| `GET` | `/api/entities/{name}/summary` | Get enriched entity profile | +| `POST` | `/api/entities/{name}/chat` | Multi-turn entity-scoped chat | +| `GET` | `/api/entities/{name}/at-time` | Temporal query (ISO 8601 date) | + +### Reports & Evaluation +| Method | Endpoint | Description | +|---|---|---| +| `POST` | `/api/report` | Generate ReACT analytical report (markdown) | +| `POST` | `/api/eval/score` | RAGAS evaluation of a Q&A pair | +| `GET` | `/api/eval/dashboard` | Evaluation history dashboard | + +### Simulation +| Method | Endpoint | Description | +|---|---|---| +| `POST` | `/api/v1/simulation/interview` | Live persona interview (in-character LLM) | +| `GET` | `/api/v1/simulation/report` | Sandbox analytical report *(API Only)* | +| `POST` | `/api/v1/simulation/generate_personas` | Queue persona generation task *(API Only)* | +| `POST` | `/api/v1/simulation/tick` | Advance simulation tick *(API Only)* | + +### System & Admin +| Method | Endpoint | Description | +|---|---|---| +| `GET` | `/api/system/health` | Neo4j + Redis + Celery health | +| `GET` | `/api/system/stats` | Document, entity, relationship counts | +| `GET` | `/api/system/my-stats` | Current user's activity stats | +| `GET` | `/api/system/formats` | Supported ingestion file formats | +| `GET` | `/api/admin/stats` | Admin-only system stats | +| `GET` | `/api/admin/users` | List all users | +| `PUT` | `/api/admin/users/{username}/role` | Update user scopes | +| `GET` | `/api/admin/tasks` | View Celery tasks | +| `GET` | `/api/admin/documents` | Admin document vault | +| `POST` | `/api/admin/documents/{id}/reingest` | Re-queue document for ingestion | +| `GET` | `/api/admin/graph/nodes` | Search graph nodes | +| `DELETE` | `/api/admin/graph/nodes/{id}` | Delete a graph node | + +--- + +## 🧪 Testing & Benchmarking + +```bash +# Run tests +uv run pytest + +# With coverage +uv run pytest --cov=src/graph_rag_service + +# Run SOTA Benchmarks against Hugging Face datasets (e.g. HotpotQA, MuSiQue) +uv run python benchmarks/run_benchmark.py +``` + +--- + +## 🚀 Production Deployment + +| Process | Command | +|---|---| +| **API Server** | `uv run python main.py` | +| **Celery Worker** | `uv run celery -A src.graph_rag_service.workers.celery_worker worker --loglevel=info --concurrency=4 --pool=threads` | +| **React Build** | `cd frontend-react && npm run build` | + +The built React assets can be served directly by FastAPI (static file mount), or deployed to a CDN separately. Neo4j and Redis can be run via Docker, managed cloud services (AuraDB, Redis Cloud), or self-hosted. + +--- + +## 📄 Additional Documentation + +- **[ARCHITECTURE.md](./ARCHITECTURE.md)** — Deep dive into the system design, data flow, and component interactions +- **[QUICKSTART.md](./QUICKSTART.md)** — 5-minute environment setup guide +- **`/docs`** — Interactive Swagger UI (auto-generated from FastAPI) + +--- + +**Project Status**: Production-grade MVP · Actively developed +**License**: Proprietary — all rights reserved diff --git a/artifacts/graphify-out/.graphify_analysis.json b/artifacts/graphify-out/.graphify_analysis.json new file mode 100644 index 0000000000000000000000000000000000000000..b63cbb6c265bb179310fa001eccad7665ddca2be --- /dev/null +++ b/artifacts/graphify-out/.graphify_analysis.json @@ -0,0 +1,1014 @@ +{ + "communities": { + "0": [ + "core_llm_factory_llmfactory", + "core_llm_factory_rationale_272", + "core_models_ontologyschema", + "core_models_rationale_121", + "core_neo4j_store_neo4jstore_load_ontology", + "core_neo4j_store_rationale_619", + "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", + "ingestion_ontology_generator_rationale_30", + "routers_ontology_approve_drift_report", + "routers_ontology_list_drift_reports", + "routers_ontology_rationale_199", + "routers_ontology_rationale_234", + "routers_ontology_rationale_262", + "routers_ontology_rationale_285", + "routers_ontology_reject_drift_report", + "routers_ontology_trigger_drift_detection", + "services_ontology_drift_detector_bump_version", + "services_ontology_drift_detector_driftreport", + "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", + "services_ontology_drift_detector_ontologydriftdetector_compute_diff", + "services_ontology_drift_detector_ontologydriftdetector_detect_drift", + "services_ontology_drift_detector_ontologydriftdetector_get_drift_report", + "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", + "services_ontology_drift_detector_ontologydriftdetector_load_drift_report", + "services_ontology_drift_detector_ontologydriftdetector_save_drift_report", + "services_ontology_drift_detector_py", + "services_ontology_drift_detector_rationale_1", + "services_ontology_drift_detector_rationale_136", + "services_ontology_drift_detector_rationale_152", + "services_ontology_drift_detector_rationale_180", + "services_ontology_drift_detector_rationale_186", + "services_ontology_drift_detector_rationale_27", + "services_ontology_drift_detector_rationale_42", + "services_ontology_drift_detector_rationale_62", + "services_ontology_drift_detector_rationale_91", + "services_ontology_drift_detector_row_to_report" + ], + "1": [ + "api_models_communityassignresponse", + "api_models_crawlrequest", + "api_models_deduplicateresponse", + "api_models_documentuploadresponse", + "api_models_entitychatrequest", + "api_models_entityupdaterequest", + "api_models_graphupdaterequest", + "api_models_ingestionstatusresponse", + "api_models_loginrequest", + "api_models_ontologyrefinerequest", + "api_models_ontologyrefineresponse", + "api_models_ontologyresponse", + "api_models_ontologyupdaterequest", + "api_models_py", + "api_models_queryrequest", + "api_models_rationale_1", + "api_models_rationale_261", + "api_models_rationale_286", + "api_models_rationale_331", + "api_models_rationale_358", + "api_models_registerrequest", + "api_models_reportrequest", + "api_models_scraperequest", + "api_models_systemhealthresponse", + "api_models_systemstatsresponse", + "api_models_tokenresponse", + "basemodel", + "core_models_document", + "core_models_extractionresult", + "core_models_rationale_1", + "core_models_rationale_131" + ], + "2": [ + "core_neo4j_store_neo4jstore_fallback_search", + "core_neo4j_store_rationale_569", + "retrieval_agent_agentretrievalsystem", + "retrieval_agent_agentretrievalsystem_astream", + "retrieval_agent_agentretrievalsystem_build_graph", + "retrieval_agent_agentretrievalsystem_cache_get", + "retrieval_agent_agentretrievalsystem_cache_set", + "retrieval_agent_agentretrievalsystem_community_search", + "retrieval_agent_agentretrievalsystem_cypher_query", + "retrieval_agent_agentretrievalsystem_decompose_query", + "retrieval_agent_agentretrievalsystem_drift_expand", + "retrieval_agent_agentretrievalsystem_format_context", + "retrieval_agent_agentretrievalsystem_got_explore", + "retrieval_agent_agentretrievalsystem_hippo_search", + "retrieval_agent_agentretrievalsystem_make_initial_state", + "retrieval_agent_agentretrievalsystem_route_query", + "retrieval_agent_agentretrievalsystem_score_tool_results", + "retrieval_agent_agentretrievalsystem_should_continue", + "retrieval_agent_agentretrievalsystem_synthesize_response", + "retrieval_agent_rationale_100", + "retrieval_agent_rationale_113", + "retrieval_agent_rationale_270", + "retrieval_agent_rationale_39", + "retrieval_agent_rationale_512", + "retrieval_agent_rationale_540", + "retrieval_agent_rationale_553", + "retrieval_agent_rationale_597", + "retrieval_agent_rationale_643", + "retrieval_agent_rationale_720", + "retrieval_agent_rationale_79" + ], + "3": [ + "core_abstractions_add_vectors", + "core_abstractions_complete", + "core_abstractions_complete_structured", + "core_abstractions_create_node", + "core_abstractions_create_relationship", + "core_abstractions_delete_vectors", + "core_abstractions_disconnect", + "core_abstractions_embed", + "core_abstractions_embed_batch", + "core_abstractions_find_path", + "core_abstractions_get_neighbors", + "core_abstractions_merge_entities", + "core_abstractions_py", + "core_abstractions_rationale_1", + "core_abstractions_search", + "core_llm_factory_rationale_135", + "core_llm_factory_rationale_183", + "core_llm_factory_rationale_227", + "core_llm_factory_rationale_96", + "core_neo4j_store_neo4jstore_create_chunk_with_entities", + "core_neo4j_store_rationale_130", + "core_neo4j_store_rationale_166", + "core_neo4j_store_rationale_270", + "core_neo4j_store_rationale_295", + "core_neo4j_store_rationale_487", + "core_neo4j_store_rationale_536", + "core_neo4j_store_rationale_57", + "core_neo4j_store_rationale_738", + "str" + ], + "4": [ + "core_abstractions_execute_query", + "core_neo4j_store_neo4jstore_assign_community_ids", + "core_neo4j_store_neo4jstore_bm25_search", + "core_neo4j_store_neo4jstore_create_user", + "core_neo4j_store_neo4jstore_get_communities", + "core_neo4j_store_neo4jstore_get_community_entities", + "core_neo4j_store_neo4jstore_get_entities_at_time", + "core_neo4j_store_neo4jstore_get_eval_results", + "core_neo4j_store_neo4jstore_get_semantic_cache", + "core_neo4j_store_neo4jstore_get_user", + "core_neo4j_store_neo4jstore_save_eval_result", + "core_neo4j_store_neo4jstore_save_ontology", + "core_neo4j_store_py", + "core_neo4j_store_rationale_1", + "core_neo4j_store_rationale_220", + "core_neo4j_store_rationale_26", + "core_neo4j_store_rationale_331", + "core_neo4j_store_rationale_372", + "core_neo4j_store_rationale_407", + "core_neo4j_store_rationale_418", + "core_neo4j_store_rationale_463", + "core_neo4j_store_rationale_596", + "core_neo4j_store_rationale_647", + "core_neo4j_store_rationale_681", + "core_neo4j_store_rationale_696", + "core_neo4j_store_rationale_712", + "core_neo4j_store_rationale_788", + "core_neo4j_store_rationale_820" + ], + "5": [ + "api_simulation_get_global_store", + "api_simulation_get_sandbox_report", + "api_simulation_interviewrequest", + "api_simulation_live_interview_agent", + "api_simulation_py", + "api_simulation_rationale_109", + "api_simulation_rationale_115", + "api_simulation_rationale_31", + "api_simulation_rationale_93", + "api_simulation_start_persona_generation", + "api_simulation_start_simulation_tick", + "retrieval_report_agent_panoramasearchtool", + "retrieval_report_agent_py", + "retrieval_report_agent_rationale_1", + "retrieval_report_agent_rationale_147", + "retrieval_report_agent_rationale_272", + "retrieval_report_agent_rationale_412", + "retrieval_report_agent_rationale_461", + "retrieval_report_agent_rationale_492", + "retrieval_report_agent_rationale_507", + "retrieval_report_agent_rationale_539", + "retrieval_report_agent_reportagent_act", + "retrieval_report_agent_reportagent_react_loop", + "retrieval_report_agent_reportagent_think", + "retrieval_report_agent_reportagent_write_executive_summary", + "retrieval_report_agent_reportagent_write_section_with_confidence", + "retrieval_report_agent_reportsection" + ], + "6": [ + "api_admin_approve_ontology", + "api_admin_check_admin_scope", + "api_admin_delete_document", + "api_admin_delete_node", + "api_admin_force_merge_entities", + "api_admin_get_admin_stats", + "api_admin_get_graph_store", + "api_admin_get_pending_ontology", + "api_admin_get_review_queue", + "api_admin_get_tasks", + "api_admin_list_users", + "api_admin_py", + "api_admin_rationale_111", + "api_admin_rationale_121", + "api_admin_rationale_135", + "api_admin_rationale_19", + "api_admin_rationale_32", + "api_admin_rationale_56", + "api_admin_rationale_89", + "api_admin_reject_ontology", + "api_admin_search_nodes", + "api_admin_systemconfig", + "api_admin_taskdashboardresponse", + "api_admin_update_config", + "api_admin_update_user_role", + "routers_documents_rationale_257" + ], + "7": [ + "api_init_rationale_1", + "core_init_rationale_1", + "graph_rag_service_init_rationale_1", + "ingestion_init_rationale_1", + "init_py", + "observability_init_rationale_1", + "retrieval_init_rationale_1", + "routers_entities_get_entity_summary", + "routers_entities_rationale_119", + "routers_entities_rationale_89", + "routers_entities_trigger_entity_enrichment", + "services_entity_enricher_enrichmentresult", + "services_entity_enricher_entityenricher_enrich_all_entities", + "services_entity_enricher_entityenricher_enrich_entity", + "services_entity_enricher_entityenricher_enrich_single", + "services_entity_enricher_py", + "services_entity_enricher_rationale_1", + "services_entity_enricher_rationale_121", + "services_entity_enricher_rationale_141", + "services_entity_enricher_rationale_155", + "services_entity_enricher_rationale_23", + "services_entity_enricher_rationale_32", + "services_entity_enricher_rationale_57", + "services_init_rationale_1", + "workers_init_rationale_1" + ], + "8": [ + "ingestion_document_processor_documentprocessor_chunk_document", + "ingestion_document_processor_documentprocessor_extract_csv", + "ingestion_document_processor_documentprocessor_extract_docx", + "ingestion_document_processor_documentprocessor_extract_excel", + "ingestion_document_processor_documentprocessor_extract_json", + "ingestion_document_processor_documentprocessor_extract_pdf", + "ingestion_document_processor_documentprocessor_extract_pptx", + "ingestion_document_processor_documentprocessor_extract_text", + "ingestion_document_processor_documentprocessor_extract_txt", + "ingestion_document_processor_documentprocessor_generate_document_id", + "ingestion_document_processor_documentprocessor_process_document", + "ingestion_document_processor_py", + "ingestion_document_processor_rationale_125", + "ingestion_document_processor_rationale_149", + "ingestion_document_processor_rationale_170", + "ingestion_document_processor_rationale_175", + "ingestion_document_processor_rationale_197", + "ingestion_document_processor_rationale_225", + "ingestion_document_processor_rationale_264", + "ingestion_document_processor_rationale_306", + "ingestion_document_processor_rationale_32", + "ingestion_document_processor_rationale_345", + "ingestion_document_processor_rationale_62", + "ingestion_document_processor_rationale_92" + ], + "9": [ + "core_models_chunk", + "core_models_rationale_94", + "ingestion_extractor_knowledgeextractor", + "ingestion_extractor_knowledgeextractor_create_extraction_prompt", + "ingestion_extractor_knowledgeextractor_extract_from_chunk", + "ingestion_extractor_knowledgeextractor_generate_embeddings", + "ingestion_extractor_rationale_19", + "ingestion_extractor_rationale_195", + "ingestion_extractor_rationale_289", + "ingestion_extractor_rationale_38", + "ingestion_extractor_rationale_94", + "routers_graph_rationale_232", + "routers_graph_update_graph_from_text", + "services_graph_memory_updater_graphmemoryupdater_get_extractor", + "services_graph_memory_updater_graphmemoryupdater_is_fact_assertion", + "services_graph_memory_updater_graphupdateresult", + "services_graph_memory_updater_py", + "services_graph_memory_updater_rationale_1", + "services_graph_memory_updater_rationale_174", + "services_graph_memory_updater_rationale_23", + "services_graph_memory_updater_rationale_33", + "services_graph_memory_updater_rationale_59" + ], + "10": [ + "core_models_communityreport", + "core_models_rationale_199", + "retrieval_communities_communitybuilder", + "retrieval_communities_communitybuilder_collect_evidence", + "retrieval_communities_communitybuilder_create_community_nodes", + "retrieval_communities_communitybuilder_embed_report", + "retrieval_communities_communitybuilder_run_leiden", + "retrieval_communities_py", + "retrieval_communities_rationale_110", + "retrieval_communities_rationale_134", + "retrieval_communities_rationale_155", + "retrieval_communities_rationale_21", + "retrieval_communities_rationale_244", + "retrieval_communities_rationale_31", + "retrieval_report_agent_rationale_310", + "retrieval_report_agent_rationale_375", + "retrieval_report_agent_reportagent_compile_markdown", + "retrieval_report_agent_reportagent_decompose_topic", + "retrieval_report_agent_reportresult", + "routers_report_generate_report", + "routers_report_rationale_23" + ], + "11": [ + "api_auth_check_scope", + "api_auth_create_access_token", + "api_auth_decode_token", + "api_auth_get_current_user", + "api_auth_get_password_hash", + "api_auth_py", + "api_auth_rationale_1", + "api_auth_rationale_125", + "api_auth_rationale_172", + "api_auth_rationale_56", + "api_auth_rationale_84", + "api_auth_token", + "api_auth_tokendata", + "api_auth_user", + "api_auth_verify_password", + "routers_auth_get_me", + "routers_auth_login", + "routers_auth_rationale_60", + "routers_auth_rationale_93", + "routers_auth_register" + ], + "12": [ + "api_server_rationale_91", + "api_server_startup_event", + "ingestion_ontology_generator_rationale_121", + "ingestion_pipeline_ingestionpipeline", + "ingestion_pipeline_ingestionpipeline_close", + "ingestion_pipeline_ingestionpipeline_ingest_document", + "ingestion_pipeline_ingestionpipeline_initialize", + "ingestion_pipeline_ingestionpipeline_store_extraction", + "ingestion_pipeline_rationale_125", + "ingestion_pipeline_rationale_152", + "ingestion_pipeline_rationale_21", + "ingestion_pipeline_rationale_58", + "routers_ontology_get_ontology", + "routers_ontology_rationale_103", + "routers_ontology_rationale_156", + "routers_ontology_rationale_24", + "routers_ontology_refine_ontology", + "routers_ontology_update_ontology" + ], + "13": [ + "retrieval_report_agent_insightforgetool", + "retrieval_report_agent_quicksearchtool", + "retrieval_report_agent_rationale_163", + "retrieval_report_agent_rationale_197", + "retrieval_report_agent_rationale_212", + "retrieval_report_agent_rationale_49", + "retrieval_tools_cyphergenerationtool", + "retrieval_tools_cyphergenerationtool_correct_cypher", + "retrieval_tools_cyphergenerationtool_correct_cypher_with_error", + "retrieval_tools_cyphergenerationtool_generate_cypher", + "retrieval_tools_cyphergenerationtool_validate_cypher", + "retrieval_tools_graphtraversaltool_extract_entities_from_query", + "retrieval_tools_hybridsearchtool_run", + "retrieval_tools_rationale_197", + "retrieval_tools_rationale_360", + "retrieval_tools_rationale_384", + "retrieval_tools_rationale_46", + "retrieval_tools_rationale_805" + ], + "14": [ + "api_dependencies_get_ingestion_pipeline", + "api_dependencies_get_redis_client", + "api_dependencies_get_retrieval_agent", + "api_dependencies_py", + "api_routers_documents_py", + "api_routers_entities_py", + "api_routers_evaluation_py", + "api_routers_graph_py", + "api_routers_memory_py", + "api_routers_ontology_py", + "api_routers_query_py", + "api_routers_report_py", + "config_py", + "core_storage_py", + "graph_rag_service_config_redis_url", + "ingestion_pipeline_py", + "retrieval_agent_py", + "routers_documents_rationale_366" + ], + "15": [ + "core_llm_factory_rationale_46", + "core_llm_factory_unifiedllmprovider_initialize_provider", + "retrieval_agent_rationale_525", + "retrieval_tools_entitysummarysearchtool", + "retrieval_tools_graphtraversaltool", + "retrieval_tools_llmjudge", + "retrieval_tools_llmjudge_init", + "retrieval_tools_llmjudge_score", + "retrieval_tools_metadatafiltertool", + "retrieval_tools_py", + "retrieval_tools_rationale_135", + "retrieval_tools_rationale_322", + "retrieval_tools_rationale_519", + "retrieval_tools_rationale_568", + "retrieval_tools_rationale_582", + "retrieval_tools_rationale_781", + "retrieval_tools_vectorsearchtool" + ], + "16": [ + "workers_celery_worker_check_ontology_drift_task", + "workers_celery_worker_cleanup_orphan_nodes_task", + "workers_celery_worker_enrich_entities_task", + "workers_celery_worker_generate_personas_task", + "workers_celery_worker_ingest_document_task", + "workers_celery_worker_ingest_documents_batch_task", + "workers_celery_worker_init_worker_loop", + "workers_celery_worker_py", + "workers_celery_worker_rationale_1", + "workers_celery_worker_rationale_153", + "workers_celery_worker_rationale_206", + "workers_celery_worker_rationale_251", + "workers_celery_worker_rationale_278", + "workers_celery_worker_rationale_311", + "workers_celery_worker_rationale_70", + "workers_celery_worker_rationale_81", + "workers_celery_worker_run_async" + ], + "17": [ + "core_abstractions_compute_similarity", + "core_abstractions_resolve", + "core_entity_resolver_rationale_108", + "core_entity_resolver_rationale_132", + "core_entity_resolver_rationale_136", + "core_entity_resolver_rationale_171", + "core_entity_resolver_rationale_18", + "core_entity_resolver_rationale_191", + "core_entity_resolver_rationale_34", + "core_entity_resolver_rationale_66", + "core_entity_resolver_semanticentityresolver", + "core_entity_resolver_semanticentityresolver_embedding_similarity", + "core_entity_resolver_semanticentityresolver_find_duplicates", + "core_entity_resolver_semanticentityresolver_get_entity_embedding", + "core_entity_resolver_semanticentityresolver_property_similarity", + "core_entity_resolver_semanticentityresolver_string_similarity" + ], + "18": [ + "abc", + "core_abstractions_rationale_12", + "core_abstractions_rationale_173", + "core_abstractions_rationale_245", + "core_entity_resolver_rationale_1", + "core_models_entity", + "core_models_rationale_35", + "core_models_rationale_65", + "core_models_relationship", + "entityresolver", + "graphstore", + "ingestion_extractor_knowledgeextractor_parse_extraction", + "ingestion_extractor_py", + "ingestion_extractor_rationale_233", + "llmprovider", + "vectorstore" + ], + "19": [ + "api_simulation_get_global_llm", + "core_llm_factory_create", + "core_llm_factory_create_from_config", + "core_llm_factory_py", + "core_llm_factory_rationale_33", + "core_llm_factory_unifiedllmprovider", + "ingestion_persona_generator_personagenerator_generate_personas_for_type", + "ingestion_persona_generator_personaprofile", + "ingestion_persona_generator_py", + "ingestion_persona_generator_rationale_26", + "ingestion_persona_generator_rationale_36", + "retrieval_hippo_tool_hipporagtool", + "retrieval_hippo_tool_py", + "retrieval_hippo_tool_rationale_10", + "routers_entities_entity_interview", + "routers_entities_rationale_155" + ], + "20": [ + "graph_rag_service_main_main", + "graph_rag_service_main_rationale_1", + "main_py", + "observability_tracing_get_meter", + "observability_tracing_get_tracer", + "observability_tracing_py", + "observability_tracing_rationale_1", + "observability_tracing_rationale_28", + "observability_tracing_rationale_71", + "observability_tracing_rationale_76", + "observability_tracing_setup_observability" + ], + "21": [ + "workers_celery_worker_rationale_264", + "workers_celery_worker_run_simulation_tick_task", + "workers_simulation_runner_agentaction", + "workers_simulation_runner_py", + "workers_simulation_runner_rationale_28", + "workers_simulation_runner_rationale_35", + "workers_simulation_runner_rationale_45", + "workers_simulation_runner_rationale_67", + "workers_simulation_runner_simulationmanager", + "workers_simulation_runner_simulationmanager_get_active_agents", + "workers_simulation_runner_simulationmanager_process_agent_turn" + ], + "22": [ + "retrieval_tools_ragevaluator", + "retrieval_tools_ragevaluator_answer_relevancy", + "retrieval_tools_ragevaluator_context_precision", + "retrieval_tools_ragevaluator_evaluate", + "retrieval_tools_ragevaluator_faithfulness", + "retrieval_tools_rationale_679", + "retrieval_tools_rationale_694", + "retrieval_tools_rationale_721", + "retrieval_tools_rationale_741", + "retrieval_tools_rationale_757" + ], + "23": [ + "api_models_confidencejudgmentresponse", + "api_models_queryresponse", + "api_models_rationale_83", + "core_models_confidencejudgment", + "core_models_queryresult", + "core_models_rationale_140", + "core_models_rationale_149", + "routers_query_query", + "routers_query_rationale_23" + ], + "24": [ + "core_models_nodetype", + "core_models_ontologyversion", + "core_models_rationale_13", + "core_models_rationale_175", + "core_models_rationale_20", + "core_models_rationale_28", + "core_models_relationtype", + "core_models_searchmethod", + "enum" + ], + "25": [ + "ingestion_web_crawler_py", + "ingestion_web_crawler_rationale_9", + "ingestion_web_crawler_webcrawler_crawl", + "ingestion_web_crawler_webcrawler_crawl_recursive", + "ingestion_web_crawler_webcrawler_is_same_domain", + "routers_documents_crawl_urls", + "routers_documents_rationale_113", + "routers_documents_rationale_185", + "routers_documents_scrape_url" + ], + "26": [ + "api_routers_system_py", + "routers_system_get_my_stats", + "routers_system_get_supported_formats", + "routers_system_get_system_stats", + "routers_system_health_check", + "routers_system_rationale_112", + "routers_system_rationale_150", + "routers_system_rationale_75", + "workers_celery_worker_rationale_245" + ], + "27": [ + "core_storage_get_storage", + "core_storage_localstorage", + "core_storage_localstorage_delete_file", + "core_storage_localstorage_read_file", + "core_storage_localstorage_save_file", + "core_storage_rationale_52", + "core_storage_storageprovider", + "core_storage_storageprovider_normalize_filename" + ], + "28": [ + "core_abstractions_connect", + "core_neo4j_store_neo4jstore_create_constraints", + "core_neo4j_store_neo4jstore_create_fulltext_index", + "core_neo4j_store_neo4jstore_create_vector_index", + "core_neo4j_store_rationale_109", + "core_neo4j_store_rationale_45", + "core_neo4j_store_rationale_64", + "core_neo4j_store_rationale_93" + ], + "29": [ + "retrieval_tools_communitysummarytool", + "retrieval_tools_communitysummarytool_find_relevant_entities", + "retrieval_tools_communitysummarytool_get_community_summary", + "retrieval_tools_communitysummarytool_get_redis", + "retrieval_tools_rationale_164", + "retrieval_tools_rationale_182", + "retrieval_tools_rationale_239", + "retrieval_tools_rationale_265" + ], + "30": [ + "basesettings", + "graph_rag_service_config_rationale_14", + "graph_rag_service_config_rationale_179", + "graph_rag_service_config_rationale_189", + "graph_rag_service_config_settings", + "graph_rag_service_config_settings_get_llm_config", + "graph_rag_service_config_settings_model_post_init" + ], + "31": [ + "api_models_conversation", + "api_models_conversationlistresponse", + "api_models_message", + "routers_memory_get_conversation", + "routers_memory_list_conversations", + "routers_memory_rationale_20", + "routers_memory_rationale_45" + ], + "32": [ + "api_models_evaldashboardresponse", + "api_models_evaltrendpoint", + "api_models_rationale_239", + "api_models_rationale_249", + "routers_evaluation_get_eval_dashboard", + "routers_evaluation_rationale_71" + ], + "33": [ + "api_models_evalresponse", + "api_models_rationale_227", + "core_models_evalresult", + "core_models_rationale_185", + "routers_evaluation_evaluate_response", + "routers_evaluation_rationale_23" + ], + "34": [ + "api_models_graphedge", + "api_models_graphnode", + "api_models_graphvisualizationresponse", + "routers_graph_get_graph_visualization", + "routers_graph_rationale_24" + ], + "35": [ + "retrieval_agent_rationale_432", + "retrieval_tools_hybridsearchtool", + "retrieval_tools_hybridsearchtool_rrf_fuse", + "retrieval_tools_rationale_113", + "retrieval_tools_rationale_24" + ], + "36": [ + "ingestion_ontology_generator_ontologygenerator_get_extraction_prompt", + "ingestion_ontology_generator_py", + "ingestion_ontology_generator_rationale_1", + "ingestion_ontology_generator_rationale_16", + "ingestion_ontology_generator_rationale_200" + ], + "37": [ + "api_server_is_valid_origin", + "api_server_py", + "api_server_rationale_1", + "api_server_serve_index", + "api_server_shutdown_event" + ], + "38": [ + "api_admin_list_documents", + "api_models_documentinfo", + "api_models_documentlistresponse", + "routers_documents_rationale_230" + ], + "39": [ + "api_models_rationale_344", + "api_models_reportresponse" + ], + "40": [ + "api_models_entitysummaryresponse", + "api_models_rationale_320" + ], + "41": [ + "api_models_communitysummaryresponse", + "api_models_rationale_267" + ], + "42": [ + "api_models_driftlistresponse", + "api_models_rationale_391" + ], + "43": [ + "core_models_agentstate", + "core_models_rationale_164" + ], + "44": [ + "api_models_driftreportresponse", + "api_models_rationale_376" + ], + "45": [ + "api_models_enrichmentstatusresponse", + "api_models_rationale_311" + ], + "46": [ + "api_models_entitychatresponse", + "api_models_rationale_366" + ], + "47": [ + "api_models_rationale_278", + "api_models_supportedformatsresponse" + ], + "48": [ + "api_models_evalrequest", + "api_models_rationale_218" + ], + "49": [ + "api_models_graphupdateresponse", + "api_models_rationale_299" + ], + "50": [ + "routers_documents_preview_document", + "routers_documents_rationale_326" + ], + "51": [ + "routers_documents_download_document", + "routers_documents_rationale_286" + ], + "52": [ + "routers_entities_get_entity_at_time", + "routers_entities_rationale_64" + ], + "53": [ + "routers_graph_assign_communities", + "routers_graph_rationale_113" + ], + "54": [ + "routers_ontology_get_ontology_stats", + "routers_ontology_rationale_57" + ], + "55": [ + "routers_graph_export_graph", + "routers_graph_rationale_154" + ], + "56": [ + "routers_memory_delete_conversation", + "routers_memory_rationale_93" + ], + "57": [ + "routers_entities_deduplicate_entities", + "routers_entities_rationale_22" + ], + "58": [ + "routers_graph_list_communities", + "routers_graph_rationale_130" + ], + "59": [ + "routers_documents_rationale_23", + "routers_documents_upload_document" + ], + "60": [ + "core_abstractions_rationale_16" + ], + "61": [ + "core_abstractions_rationale_21" + ], + "62": [ + "core_abstractions_rationale_26" + ], + "63": [ + "core_abstractions_rationale_39" + ], + "64": [ + "core_abstractions_rationale_52" + ], + "65": [ + "core_abstractions_rationale_66" + ], + "66": [ + "core_abstractions_rationale_81" + ], + "67": [ + "core_abstractions_rationale_95" + ], + "68": [ + "core_abstractions_rationale_118" + ], + "69": [ + "core_abstractions_rationale_128" + ], + "70": [ + "core_abstractions_rationale_148" + ], + "71": [ + "core_abstractions_rationale_163" + ], + "72": [ + "core_abstractions_rationale_183" + ], + "73": [ + "core_abstractions_rationale_204" + ], + "74": [ + "core_abstractions_rationale_253" + ], + "75": [ + "core_abstractions_rationale_267" + ], + "76": [ + "core_llm_factory_rationale_276" + ], + "77": [ + "core_llm_factory_rationale_290" + ], + "78": [ + "services_ontology_drift_detector_rationale_343" + ] + }, + "cohesion": { + "0": 0.08, + "1": 0.11, + "2": 0.08, + "3": 0.09, + "4": 0.09, + "5": 0.09, + "6": 0.08, + "7": 0.09, + "8": 0.12, + "9": 0.13, + "10": 0.11, + "11": 0.14, + "12": 0.12, + "13": 0.14, + "14": 0.31, + "15": 0.15, + "16": 0.16, + "17": 0.19, + "18": 0.19, + "19": 0.17, + "20": 0.2, + "21": 0.22, + "22": 0.27, + "23": 0.22, + "24": 0.22, + "25": 0.28, + "26": 0.22, + "27": 0.46, + "28": 0.25, + "29": 0.29, + "30": 0.29, + "31": 0.29, + "32": 0.33, + "33": 0.33, + "34": 0.4, + "35": 0.4, + "36": 0.4, + "37": 0.4, + "38": 0.5, + "39": 1.0, + "40": 1.0, + "41": 1.0, + "42": 1.0, + "43": 1.0, + "44": 1.0, + "45": 1.0, + "46": 1.0, + "47": 1.0, + "48": 1.0, + "49": 1.0, + "50": 1.0, + "51": 1.0, + "52": 1.0, + "53": 1.0, + "54": 1.0, + "55": 1.0, + "56": 1.0, + "57": 1.0, + "58": 1.0, + "59": 1.0, + "60": 1.0, + "61": 1.0, + "62": 1.0, + "63": 1.0, + "64": 1.0, + "65": 1.0, + "66": 1.0, + "67": 1.0, + "68": 1.0, + "69": 1.0, + "70": 1.0, + "71": 1.0, + "72": 1.0, + "73": 1.0, + "74": 1.0, + "75": 1.0, + "76": 1.0, + "77": 1.0, + "78": 1.0 + }, + "gods": [ + { + "id": "core_llm_factory_unifiedllmprovider", + "label": "UnifiedLLMProvider", + "degree": 37 + }, + { + "id": "retrieval_agent_agentretrievalsystem", + "label": "AgentRetrievalSystem", + "degree": 36 + }, + { + "id": "core_models_ontologyschema", + "label": "OntologySchema", + "degree": 26 + }, + { + "id": "core_models_chunk", + "label": "Chunk", + "degree": 18 + }, + { + "id": "ingestion_extractor_knowledgeextractor", + "label": "KnowledgeExtractor", + "degree": 18 + }, + { + "id": "routers_report_generate_report", + "label": "generate_report()", + "degree": 16 + }, + { + "id": "ingestion_pipeline_ingestionpipeline", + "label": "IngestionPipeline", + "degree": 16 + }, + { + "id": "core_entity_resolver_semanticentityresolver", + "label": "SemanticEntityResolver", + "degree": 14 + }, + { + "id": "routers_query_query", + "label": "query()", + "degree": 12 + }, + { + "id": "retrieval_tools_cyphergenerationtool", + "label": "CypherGenerationTool", + "degree": 12 + } + ], + "surprises": [ + { + "source": "InterviewRequest", + "target": "UnifiedLLMProvider", + "source_files": [ + "api/simulation.py", + "core/llm_factory.py" + ], + "confidence": "INFERRED", + "relation": "uses", + "why": "inferred connection - not explicitly stated in source; connects across different repos/directories; bridges separate communities" + }, + { + "source": "deduplicate_entities()", + "target": "SemanticEntityResolver", + "source_files": [ + "api/routers/entities.py", + "core/entity_resolver.py" + ], + "confidence": "INFERRED", + "relation": "calls", + "why": "inferred connection - not explicitly stated in source; connects across different repos/directories; bridges separate communities" + }, + { + "source": "evaluate_response()", + "target": "RAGEvaluator", + "source_files": [ + "api/routers/evaluation.py", + "retrieval/tools.py" + ], + "confidence": "INFERRED", + "relation": "calls", + "why": "inferred connection - not explicitly stated in source; connects across different repos/directories; bridges separate communities" + }, + { + "source": "generate_report()", + "target": "UnifiedLLMProvider", + "source_files": [ + "api/routers/report.py", + "core/llm_factory.py" + ], + "confidence": "INFERRED", + "relation": "calls", + "why": "inferred connection - not explicitly stated in source; connects across different repos/directories; bridges separate communities" + }, + { + "source": "KnowledgeExtractor", + "target": "SemanticEntityResolver", + "source_files": [ + "ingestion/extractor.py", + "core/entity_resolver.py" + ], + "confidence": "INFERRED", + "relation": "uses", + "why": "inferred connection - not explicitly stated in source; connects across different repos/directories; bridges separate communities" + } + ], + "tokens": { + "input": 0, + "output": 0 + } +} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/01a7fec08537d954e22ffa0cb97cee98457389a7c7f1122f528d576a9e0165e0.json b/artifacts/graphify-out/cache/ast/01a7fec08537d954e22ffa0cb97cee98457389a7c7f1122f528d576a9e0165e0.json new file mode 100644 index 0000000000000000000000000000000000000000..ce24b9489dc1dab909eacfbdc7f3d7f8522f60b2 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/01a7fec08537d954e22ffa0cb97cee98457389a7c7f1122f528d576a9e0165e0.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "label": "pipeline.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L1"}, {"id": "ingestion_pipeline_ingestionpipeline", "label": "IngestionPipeline", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L20"}, {"id": "ingestion_pipeline_ingestionpipeline_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L30"}, {"id": "ingestion_pipeline_ingestionpipeline_initialize", "label": ".initialize()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L41"}, {"id": "ingestion_pipeline_ingestionpipeline_close", "label": ".close()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L46"}, {"id": "ingestion_pipeline_ingestionpipeline_ingest_document", "label": ".ingest_document()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L51"}, {"id": "ingestion_pipeline_ingestionpipeline_ingest_documents", "label": ".ingest_documents()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L120"}, {"id": "ingestion_pipeline_ingestionpipeline_store_extraction", "label": "._store_extraction()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L147"}, {"id": "ingestion_pipeline_ingestionpipeline_get_ontology", "label": ".get_ontology()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L214"}, {"id": "ingestion_pipeline_ingestionpipeline_set_ontology", "label": ".set_ontology()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L218"}, {"id": "ingestion_pipeline_rationale_21", "label": "End-to-end ingestion pipeline: 1. Process document -> chunks 2. Genera", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L21"}, {"id": "ingestion_pipeline_rationale_42", "label": "Initialize connections", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L42"}, {"id": "ingestion_pipeline_rationale_58", "label": "Ingest a single document through the full pipeline Args:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L58"}, {"id": "ingestion_pipeline_rationale_125", "label": "Ingest multiple documents Args: file_paths: List", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L125"}, {"id": "ingestion_pipeline_rationale_152", "label": "Store extraction results in graph database", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L152"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "target": "pathlib", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "target": "asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_ontology_generator_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_extractor_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L16", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "target": "ingestion_pipeline_ingestionpipeline", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L20", "weight": 1.0}, {"source": "ingestion_pipeline_ingestionpipeline", "target": "ingestion_pipeline_ingestionpipeline_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L30", "weight": 1.0}, {"source": "ingestion_pipeline_ingestionpipeline", "target": "ingestion_pipeline_ingestionpipeline_initialize", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L41", "weight": 1.0}, {"source": "ingestion_pipeline_ingestionpipeline", "target": "ingestion_pipeline_ingestionpipeline_close", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L46", "weight": 1.0}, {"source": "ingestion_pipeline_ingestionpipeline", "target": "ingestion_pipeline_ingestionpipeline_ingest_document", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L51", "weight": 1.0}, {"source": "ingestion_pipeline_ingestionpipeline", "target": "ingestion_pipeline_ingestionpipeline_ingest_documents", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L120", "weight": 1.0}, {"source": "ingestion_pipeline_ingestionpipeline", "target": "ingestion_pipeline_ingestionpipeline_store_extraction", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L147", "weight": 1.0}, {"source": "ingestion_pipeline_ingestionpipeline", "target": "ingestion_pipeline_ingestionpipeline_get_ontology", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L214", "weight": 1.0}, {"source": "ingestion_pipeline_ingestionpipeline", "target": "ingestion_pipeline_ingestionpipeline_set_ontology", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L218", "weight": 1.0}, {"source": "ingestion_pipeline_ingestionpipeline_ingest_document", "target": "ingestion_pipeline_ingestionpipeline_store_extraction", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L115", "weight": 1.0}, {"source": "ingestion_pipeline_ingestionpipeline_ingest_documents", "target": "ingestion_pipeline_ingestionpipeline_ingest_document", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L140", "weight": 1.0}, {"source": "ingestion_pipeline_rationale_21", "target": "ingestion_pipeline_ingestionpipeline", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L21", "weight": 1.0}, {"source": "ingestion_pipeline_rationale_42", "target": "ingestion_pipeline_ingestionpipeline_initialize", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L42", "weight": 1.0}, {"source": "ingestion_pipeline_rationale_58", "target": "ingestion_pipeline_ingestionpipeline_ingest_document", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L58", "weight": 1.0}, {"source": "ingestion_pipeline_rationale_125", "target": "ingestion_pipeline_ingestionpipeline_ingest_documents", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L125", "weight": 1.0}, {"source": "ingestion_pipeline_rationale_152", "target": "ingestion_pipeline_ingestionpipeline_store_extraction", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L152", "weight": 1.0}], "raw_calls": [{"caller_nid": "ingestion_pipeline_ingestionpipeline_init", "callee": "DocumentProcessor", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L35"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_init", "callee": "OntologyGenerator", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L36"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_init", "callee": "KnowledgeExtractor", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L37"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_initialize", "callee": "connect", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L44"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_close", "callee": "disconnect", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L49"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L71"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "process_document", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L72"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "chunk_document", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L73"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L76"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L78"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L78"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L83"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "generate_initial_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L84"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L87"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L88"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L88"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L89"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L89"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "save_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L92"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L96"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "extract_from_chunks", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L97"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L104"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L104"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L105"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L105"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L108"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "generate_embeddings", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L109"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L114"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_document", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L116"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_documents", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L141"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_ingest_documents", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L143"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_store_extraction", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L165"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_store_extraction", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L172"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_store_extraction", "callee": "create_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L179"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_store_extraction", "callee": "create_relationship", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L184"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_store_extraction", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L186"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_store_extraction", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L191"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_store_extraction", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L194"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_store_extraction", "callee": "create_chunk_with_entities", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L197"}, {"caller_nid": "ingestion_pipeline_ingestionpipeline_store_extraction", "callee": "add_vectors", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py", "source_location": "L204"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/046ff12ba5b83e20d277d12bdd475843bc4d70c675747bad33863289a3543509.json b/artifacts/graphify-out/cache/ast/046ff12ba5b83e20d277d12bdd475843bc4d70c675747bad33863289a3543509.json new file mode 100644 index 0000000000000000000000000000000000000000..20ef164c351090dd3f0e7c9e3ecbc0a84183e008 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/046ff12ba5b83e20d277d12bdd475843bc4d70c675747bad33863289a3543509.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_web_crawler_py", "label": "web_crawler.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L1"}, {"id": "ingestion_web_crawler_webcrawler", "label": "WebCrawler", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L8"}, {"id": "ingestion_web_crawler_webcrawler_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L13"}, {"id": "ingestion_web_crawler_webcrawler_is_same_domain", "label": "._is_same_domain()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L21"}, {"id": "ingestion_web_crawler_webcrawler_crawl_recursive", "label": "._crawl_recursive()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L26"}, {"id": "ingestion_web_crawler_webcrawler_crawl", "label": ".crawl()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L70"}, {"id": "ingestion_web_crawler_rationale_9", "label": "Advanced Web Crawler utilizing Crawl4AI to orchestrate Headless Playwright brows", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L9"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_web_crawler_py", "target": "asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_web_crawler_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_web_crawler_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L3", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_web_crawler_py", "target": "urllib_parse", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_web_crawler_py", "target": "ingestion_web_crawler_webcrawler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L8", "weight": 1.0}, {"source": "ingestion_web_crawler_webcrawler", "target": "ingestion_web_crawler_webcrawler_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L13", "weight": 1.0}, {"source": "ingestion_web_crawler_webcrawler", "target": "ingestion_web_crawler_webcrawler_is_same_domain", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L21", "weight": 1.0}, {"source": "ingestion_web_crawler_webcrawler", "target": "ingestion_web_crawler_webcrawler_crawl_recursive", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L26", "weight": 1.0}, {"source": "ingestion_web_crawler_webcrawler", "target": "ingestion_web_crawler_webcrawler_crawl", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L70", "weight": 1.0}, {"source": "ingestion_web_crawler_webcrawler_crawl_recursive", "target": "ingestion_web_crawler_webcrawler_is_same_domain", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L33", "weight": 1.0}, {"source": "ingestion_web_crawler_webcrawler_crawl", "target": "ingestion_web_crawler_webcrawler_crawl_recursive", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L83", "weight": 1.0}, {"source": "ingestion_web_crawler_rationale_9", "target": "ingestion_web_crawler_webcrawler", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L9", "weight": 1.0}], "raw_calls": [{"caller_nid": "ingestion_web_crawler_webcrawler_init", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L17"}, {"caller_nid": "ingestion_web_crawler_webcrawler_init", "callee": "Semaphore", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L19"}, {"caller_nid": "ingestion_web_crawler_webcrawler_is_same_domain", "callee": "urlparse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L22"}, {"caller_nid": "ingestion_web_crawler_webcrawler_is_same_domain", "callee": "urlparse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L23"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L27"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "urlparse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L30"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "add", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L36"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L37"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "arun", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L41"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "hasattr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L43"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "hasattr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L45"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L45"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L46"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L48"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "hasattr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L54"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L56"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L56"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L59"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L60"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "startswith", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L60"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "startswith", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L60"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "urljoin", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L61"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L62"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "gather", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L65"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl_recursive", "callee": "error", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L68"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl", "callee": "clear", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L71"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl", "callee": "clear", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L72"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl", "callee": "error", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L78"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl", "callee": "ImportError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L79"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L81"}, {"caller_nid": "ingestion_web_crawler_webcrawler_crawl", "callee": "AsyncWebCrawler", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py", "source_location": "L82"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/0783e4986d2ef628860aad8fee7689f505433d8face4ad7bb5a1441de9097843.json b/artifacts/graphify-out/cache/ast/0783e4986d2ef628860aad8fee7689f505433d8face4ad7bb5a1441de9097843.json new file mode 100644 index 0000000000000000000000000000000000000000..9617a80694fd8ad428d52a57122e2f151aede553 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/0783e4986d2ef628860aad8fee7689f505433d8face4ad7bb5a1441de9097843.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "label": "models.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L1"}, {"id": "api_models_loginrequest", "label": "LoginRequest", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L12"}, {"id": "basemodel", "label": "BaseModel", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "api_models_registerrequest", "label": "RegisterRequest", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L16"}, {"id": "api_models_tokenresponse", "label": "TokenResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L24"}, {"id": "api_models_documentuploadresponse", "label": "DocumentUploadResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L30"}, {"id": "api_models_scraperequest", "label": "ScrapeRequest", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L38"}, {"id": "api_models_crawlrequest", "label": "CrawlRequest", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L41"}, {"id": "api_models_ingestionstatusresponse", "label": "IngestionStatusResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L48"}, {"id": "api_models_documentinfo", "label": "DocumentInfo", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L56"}, {"id": "api_models_documentlistresponse", "label": "DocumentListResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L64"}, {"id": "api_models_queryrequest", "label": "QueryRequest", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L71"}, {"id": "api_models_confidencejudgmentresponse", "label": "ConfidenceJudgmentResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L82"}, {"id": "api_models_queryresponse", "label": "QueryResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L91"}, {"id": "api_models_message", "label": "Message", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L107"}, {"id": "api_models_conversation", "label": "Conversation", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L117"}, {"id": "api_models_conversationlistresponse", "label": "ConversationListResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L124"}, {"id": "api_models_ontologyresponse", "label": "OntologyResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L129"}, {"id": "api_models_ontologyupdaterequest", "label": "OntologyUpdateRequest", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L138"}, {"id": "api_models_graphnode", "label": "GraphNode", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L146"}, {"id": "api_models_graphedge", "label": "GraphEdge", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L157"}, {"id": "api_models_entityupdaterequest", "label": "EntityUpdateRequest", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L166"}, {"id": "api_models_graphvisualizationresponse", "label": "GraphVisualizationResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L170"}, {"id": "api_models_systemhealthresponse", "label": "SystemHealthResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L176"}, {"id": "api_models_systemstatsresponse", "label": "SystemStatsResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L185"}, {"id": "api_models_ontologyrefinerequest", "label": "OntologyRefineRequest", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L194"}, {"id": "api_models_ontologyrefineresponse", "label": "OntologyRefineResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L199"}, {"id": "api_models_deduplicateresponse", "label": "DeduplicateResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L210"}, {"id": "api_models_evalrequest", "label": "EvalRequest", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L217"}, {"id": "api_models_evalresponse", "label": "EvalResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L226"}, {"id": "api_models_evaltrendpoint", "label": "EvalTrendPoint", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L238"}, {"id": "api_models_evaldashboardresponse", "label": "EvalDashboardResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L248"}, {"id": "api_models_communityassignresponse", "label": "CommunityAssignResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L260"}, {"id": "api_models_communitysummaryresponse", "label": "CommunitySummaryResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L266"}, {"id": "api_models_supportedformatsresponse", "label": "SupportedFormatsResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L277"}, {"id": "api_models_graphupdaterequest", "label": "GraphUpdateRequest", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L285"}, {"id": "api_models_graphupdateresponse", "label": "GraphUpdateResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L298"}, {"id": "api_models_enrichmentstatusresponse", "label": "EnrichmentStatusResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L310"}, {"id": "api_models_entitysummaryresponse", "label": "EntitySummaryResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L319"}, {"id": "api_models_reportrequest", "label": "ReportRequest", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L330"}, {"id": "api_models_reportresponse", "label": "ReportResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L343"}, {"id": "api_models_entitychatrequest", "label": "EntityChatRequest", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L357"}, {"id": "api_models_entitychatresponse", "label": "EntityChatResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L365"}, {"id": "api_models_driftreportresponse", "label": "DriftReportResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L375"}, {"id": "api_models_driftlistresponse", "label": "DriftListResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L390"}, {"id": "api_models_rationale_1", "label": "API models and schemas for requests/responses Extended with: confidence judgment", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L1"}, {"id": "api_models_rationale_83", "label": "Gap #4 \u2014 LLM-as-a-Judge response shape", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L83"}, {"id": "api_models_rationale_218", "label": "Request to run quality evaluation on a Q&A pair", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L218"}, {"id": "api_models_rationale_227", "label": "Evaluation metrics for a Q&A pair", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L227"}, {"id": "api_models_rationale_239", "label": "Single data point for eval trending chart", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L239"}, {"id": "api_models_rationale_249", "label": "Full eval dashboard data", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L249"}, {"id": "api_models_rationale_261", "label": "Response from community assignment task", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L261"}, {"id": "api_models_rationale_267", "label": "Summary of a graph community", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L267"}, {"id": "api_models_rationale_278", "label": "List of supported ingestion file formats", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L278"}, {"id": "api_models_rationale_286", "label": "Request to merge text directly into the live knowledge graph", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L286"}, {"id": "api_models_rationale_299", "label": "Response from a graph memory update operation", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L299"}, {"id": "api_models_rationale_311", "label": "Response from entity enrichment task", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L311"}, {"id": "api_models_rationale_320", "label": "Entity profile summary returned from the graph", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L320"}, {"id": "api_models_rationale_331", "label": "Request to generate an analytical report", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L331"}, {"id": "api_models_rationale_344", "label": "Analytical report generated by the ReACT ReportAgent", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L344"}, {"id": "api_models_rationale_358", "label": "Request to chat with a single entity's knowledge neighborhood", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L358"}, {"id": "api_models_rationale_366", "label": "Response from entity-scoped chat", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L366"}, {"id": "api_models_rationale_376", "label": "Schema drift report from OntologyDriftDetector", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L376"}, {"id": "api_models_rationale_391", "label": "List of drift reports", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L391"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "pydantic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_loginrequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L12", "weight": 1.0}, {"source": "api_models_loginrequest", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_registerrequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L16", "weight": 1.0}, {"source": "api_models_registerrequest", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L16", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_tokenresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L24", "weight": 1.0}, {"source": "api_models_tokenresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L24", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_documentuploadresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L30", "weight": 1.0}, {"source": "api_models_documentuploadresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L30", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_scraperequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L38", "weight": 1.0}, {"source": "api_models_scraperequest", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L38", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_crawlrequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L41", "weight": 1.0}, {"source": "api_models_crawlrequest", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L41", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_ingestionstatusresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L48", "weight": 1.0}, {"source": "api_models_ingestionstatusresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L48", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_documentinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L56", "weight": 1.0}, {"source": "api_models_documentinfo", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L56", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_documentlistresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L64", "weight": 1.0}, {"source": "api_models_documentlistresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L64", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_queryrequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L71", "weight": 1.0}, {"source": "api_models_queryrequest", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L71", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_confidencejudgmentresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L82", "weight": 1.0}, {"source": "api_models_confidencejudgmentresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L82", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_queryresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L91", "weight": 1.0}, {"source": "api_models_queryresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L91", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_message", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L107", "weight": 1.0}, {"source": "api_models_message", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L107", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_conversation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L117", "weight": 1.0}, {"source": "api_models_conversation", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L117", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_conversationlistresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L124", "weight": 1.0}, {"source": "api_models_conversationlistresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L124", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_ontologyresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L129", "weight": 1.0}, {"source": "api_models_ontologyresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L129", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_ontologyupdaterequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L138", "weight": 1.0}, {"source": "api_models_ontologyupdaterequest", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L138", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_graphnode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L146", "weight": 1.0}, {"source": "api_models_graphnode", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L146", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_graphedge", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L157", "weight": 1.0}, {"source": "api_models_graphedge", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L157", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_entityupdaterequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L166", "weight": 1.0}, {"source": "api_models_entityupdaterequest", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L166", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_graphvisualizationresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L170", "weight": 1.0}, {"source": "api_models_graphvisualizationresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L170", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_systemhealthresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L176", "weight": 1.0}, {"source": "api_models_systemhealthresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L176", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_systemstatsresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L185", "weight": 1.0}, {"source": "api_models_systemstatsresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L185", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_ontologyrefinerequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L194", "weight": 1.0}, {"source": "api_models_ontologyrefinerequest", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L194", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_ontologyrefineresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L199", "weight": 1.0}, {"source": "api_models_ontologyrefineresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L199", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_deduplicateresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L210", "weight": 1.0}, {"source": "api_models_deduplicateresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L210", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_evalrequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L217", "weight": 1.0}, {"source": "api_models_evalrequest", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L217", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_evalresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L226", "weight": 1.0}, {"source": "api_models_evalresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L226", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_evaltrendpoint", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L238", "weight": 1.0}, {"source": "api_models_evaltrendpoint", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L238", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_evaldashboardresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L248", "weight": 1.0}, {"source": "api_models_evaldashboardresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L248", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_communityassignresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L260", "weight": 1.0}, {"source": "api_models_communityassignresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L260", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_communitysummaryresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L266", "weight": 1.0}, {"source": "api_models_communitysummaryresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L266", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_supportedformatsresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L277", "weight": 1.0}, {"source": "api_models_supportedformatsresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L277", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_graphupdaterequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L285", "weight": 1.0}, {"source": "api_models_graphupdaterequest", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L285", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_graphupdateresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L298", "weight": 1.0}, {"source": "api_models_graphupdateresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L298", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_enrichmentstatusresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L310", "weight": 1.0}, {"source": "api_models_enrichmentstatusresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L310", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_entitysummaryresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L319", "weight": 1.0}, {"source": "api_models_entitysummaryresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L319", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_reportrequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L330", "weight": 1.0}, {"source": "api_models_reportrequest", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L330", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_reportresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L343", "weight": 1.0}, {"source": "api_models_reportresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L343", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_entitychatrequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L357", "weight": 1.0}, {"source": "api_models_entitychatrequest", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L357", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_entitychatresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L365", "weight": 1.0}, {"source": "api_models_entitychatresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L365", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_driftreportresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L375", "weight": 1.0}, {"source": "api_models_driftreportresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L375", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "target": "api_models_driftlistresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L390", "weight": 1.0}, {"source": "api_models_driftlistresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L390", "weight": 1.0}, {"source": "api_models_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L1", "weight": 1.0}, {"source": "api_models_rationale_83", "target": "api_models_confidencejudgmentresponse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L83", "weight": 1.0}, {"source": "api_models_rationale_218", "target": "api_models_evalrequest", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L218", "weight": 1.0}, {"source": "api_models_rationale_227", "target": "api_models_evalresponse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L227", "weight": 1.0}, {"source": "api_models_rationale_239", "target": "api_models_evaltrendpoint", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L239", "weight": 1.0}, {"source": "api_models_rationale_249", "target": "api_models_evaldashboardresponse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L249", "weight": 1.0}, {"source": "api_models_rationale_261", "target": "api_models_communityassignresponse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L261", "weight": 1.0}, {"source": "api_models_rationale_267", "target": "api_models_communitysummaryresponse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L267", "weight": 1.0}, {"source": "api_models_rationale_278", "target": "api_models_supportedformatsresponse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L278", "weight": 1.0}, {"source": "api_models_rationale_286", "target": "api_models_graphupdaterequest", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L286", "weight": 1.0}, {"source": "api_models_rationale_299", "target": "api_models_graphupdateresponse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L299", "weight": 1.0}, {"source": "api_models_rationale_311", "target": "api_models_enrichmentstatusresponse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L311", "weight": 1.0}, {"source": "api_models_rationale_320", "target": "api_models_entitysummaryresponse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L320", "weight": 1.0}, {"source": "api_models_rationale_331", "target": "api_models_reportrequest", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L331", "weight": 1.0}, {"source": "api_models_rationale_344", "target": "api_models_reportresponse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L344", "weight": 1.0}, {"source": "api_models_rationale_358", "target": "api_models_entitychatrequest", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L358", "weight": 1.0}, {"source": "api_models_rationale_366", "target": "api_models_entitychatresponse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L366", "weight": 1.0}, {"source": "api_models_rationale_376", "target": "api_models_driftreportresponse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L376", "weight": 1.0}, {"source": "api_models_rationale_391", "target": "api_models_driftlistresponse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py", "source_location": "L391", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/082a65f6c47c5bf1053700232d0a5a7dff75b758791cf540416f4400301d5177.json b/artifacts/graphify-out/cache/ast/082a65f6c47c5bf1053700232d0a5a7dff75b758791cf540416f4400301d5177.json new file mode 100644 index 0000000000000000000000000000000000000000..c36d234502e8d293745db9fff38ef9f8fe00f29d --- /dev/null +++ b/artifacts/graphify-out/cache/ast/082a65f6c47c5bf1053700232d0a5a7dff75b758791cf540416f4400301d5177.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "label": "auth.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L1"}, {"id": "routers_auth_register", "label": "register()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L21"}, {"id": "routers_auth_login", "label": "login()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L59"}, {"id": "routers_auth_get_me", "label": "get_me()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L92"}, {"id": "routers_auth_rationale_60", "label": "Login and get access token Verifies user against Neo4j database", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L60"}, {"id": "routers_auth_rationale_93", "label": "Get current user information", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L93"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "redis", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "routers_auth_register", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L21", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "routers_auth_login", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L59", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_auth_py", "target": "routers_auth_get_me", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L92", "weight": 1.0}, {"source": "routers_auth_rationale_60", "target": "routers_auth_login", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L60", "weight": 1.0}, {"source": "routers_auth_rationale_93", "target": "routers_auth_get_me", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L93", "weight": 1.0}], "raw_calls": [{"caller_nid": "routers_auth_register", "callee": "get_user", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L23"}, {"caller_nid": "routers_auth_register", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L25"}, {"caller_nid": "routers_auth_register", "callee": "get_password_hash", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L30"}, {"caller_nid": "routers_auth_register", "callee": "hasattr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L43"}, {"caller_nid": "routers_auth_register", "callee": "create_user", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L46"}, {"caller_nid": "routers_auth_register", "callee": "User", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L48"}, {"caller_nid": "routers_auth_login", "callee": "get_user", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L64"}, {"caller_nid": "routers_auth_login", "callee": "verify_password", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L65"}, {"caller_nid": "routers_auth_login", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L66"}, {"caller_nid": "routers_auth_login", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L72"}, {"caller_nid": "routers_auth_login", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L73"}, {"caller_nid": "routers_auth_login", "callee": "create_access_token", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L79"}, {"caller_nid": "routers_auth_login", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L82"}, {"caller_nid": "routers_auth_login", "callee": "timedelta", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L84"}, {"caller_nid": "routers_auth_login", "callee": "TokenResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py", "source_location": "L87"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/08cdda6a3413a166987eda8284c6e802906293e4c75e2094571d12e8673e3321.json b/artifacts/graphify-out/cache/ast/08cdda6a3413a166987eda8284c6e802906293e4c75e2094571d12e8673e3321.json new file mode 100644 index 0000000000000000000000000000000000000000..ad27c272e679206e48ac84ba5d600b1a742921ae --- /dev/null +++ b/artifacts/graphify-out/cache/ast/08cdda6a3413a166987eda8284c6e802906293e4c75e2094571d12e8673e3321.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_init_py", "label": "__init__.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\__init__.py", "source_location": "L1"}, {"id": "api_init_rationale_1", "label": "API module initialization", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\__init__.py", "source_location": "L1"}], "edges": [{"source": "api_init_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_init_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\__init__.py", "source_location": "L1", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/0ec4c90ab0098805596876c85ad87cd5145c8c5b60f94f646ab7e29a9cddf111.json b/artifacts/graphify-out/cache/ast/0ec4c90ab0098805596876c85ad87cd5145c8c5b60f94f646ab7e29a9cddf111.json new file mode 100644 index 0000000000000000000000000000000000000000..085108e1be81fadf5990c39579f78e1abcc1f270 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/0ec4c90ab0098805596876c85ad87cd5145c8c5b60f94f646ab7e29a9cddf111.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "label": "auth.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L1"}, {"id": "api_auth_token", "label": "Token", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L20"}, {"id": "basemodel", "label": "BaseModel", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "api_auth_tokendata", "label": "TokenData", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L25"}, {"id": "api_auth_user", "label": "User", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L30"}, {"id": "api_auth_verify_password", "label": "verify_password()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L39"}, {"id": "api_auth_get_password_hash", "label": "get_password_hash()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L49"}, {"id": "api_auth_create_access_token", "label": "create_access_token()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L55"}, {"id": "api_auth_decode_token", "label": "decode_token()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L83"}, {"id": "api_auth_get_current_user", "label": "get_current_user()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L121"}, {"id": "api_auth_check_scope", "label": "check_scope()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L171"}, {"id": "api_auth_rationale_1", "label": "Authentication and authorization JWT-based authentication with role-based acces", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L1"}, {"id": "api_auth_rationale_56", "label": "Create JWT access token Args: data: Token payload data", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L56"}, {"id": "api_auth_rationale_84", "label": "Decode and validate JWT token Args: token: JWT token string", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L84"}, {"id": "api_auth_rationale_125", "label": "Get current user from JWT token Args: request: FastAPI Reque", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L125"}, {"id": "api_auth_rationale_172", "label": "Dependency to check if user has required scope Args: require", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L172"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "bcrypt", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "jose", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "fastapi_security", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "pydantic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "api_auth_token", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L20", "weight": 1.0}, {"source": "api_auth_token", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L20", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "api_auth_tokendata", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L25", "weight": 1.0}, {"source": "api_auth_tokendata", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L25", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "api_auth_user", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L30", "weight": 1.0}, {"source": "api_auth_user", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L30", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "api_auth_verify_password", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L39", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "api_auth_get_password_hash", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L49", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "api_auth_create_access_token", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L55", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "api_auth_decode_token", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L83", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "api_auth_get_current_user", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L121", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "target": "api_auth_check_scope", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L171", "weight": 1.0}, {"source": "api_auth_decode_token", "target": "api_auth_tokendata", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L112", "weight": 1.0}, {"source": "api_auth_get_current_user", "target": "api_auth_decode_token", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L139", "weight": 1.0}, {"source": "api_auth_get_current_user", "target": "api_auth_user", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L153", "weight": 1.0}, {"source": "api_auth_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L1", "weight": 1.0}, {"source": "api_auth_rationale_56", "target": "api_auth_create_access_token", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L56", "weight": 1.0}, {"source": "api_auth_rationale_84", "target": "api_auth_decode_token", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L84", "weight": 1.0}, {"source": "api_auth_rationale_125", "target": "api_auth_get_current_user", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L125", "weight": 1.0}, {"source": "api_auth_rationale_172", "target": "api_auth_check_scope", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L172", "weight": 1.0}], "raw_calls": [{"caller_nid": "api_auth_verify_password", "callee": "encode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L43"}, {"caller_nid": "api_auth_verify_password", "callee": "checkpw", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L44"}, {"caller_nid": "api_auth_verify_password", "callee": "encode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L44"}, {"caller_nid": "api_auth_get_password_hash", "callee": "encode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L51"}, {"caller_nid": "api_auth_get_password_hash", "callee": "decode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L52"}, {"caller_nid": "api_auth_get_password_hash", "callee": "hashpw", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L52"}, {"caller_nid": "api_auth_get_password_hash", "callee": "gensalt", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L52"}, {"caller_nid": "api_auth_create_access_token", "callee": "copy", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L66"}, {"caller_nid": "api_auth_create_access_token", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L69"}, {"caller_nid": "api_auth_create_access_token", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L69"}, {"caller_nid": "api_auth_create_access_token", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L71"}, {"caller_nid": "api_auth_create_access_token", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L71"}, {"caller_nid": "api_auth_create_access_token", "callee": "timedelta", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L71"}, {"caller_nid": "api_auth_create_access_token", "callee": "update", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L73"}, {"caller_nid": "api_auth_create_access_token", "callee": "encode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L74"}, {"caller_nid": "api_auth_decode_token", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L96"}, {"caller_nid": "api_auth_decode_token", "callee": "decode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L103"}, {"caller_nid": "api_auth_decode_token", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L108"}, {"caller_nid": "api_auth_decode_token", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L114"}, {"caller_nid": "api_auth_get_current_user", "callee": "getattr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L141"}, {"caller_nid": "api_auth_get_current_user", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L143"}, {"caller_nid": "api_auth_get_current_user", "callee": "get_user", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L145"}, {"caller_nid": "api_auth_get_current_user", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L147"}, {"caller_nid": "api_auth_get_current_user", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L155"}, {"caller_nid": "api_auth_get_current_user", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L156"}, {"caller_nid": "api_auth_get_current_user", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L157"}, {"caller_nid": "api_auth_get_current_user", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L158"}, {"caller_nid": "api_auth_get_current_user", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L159"}, {"caller_nid": "api_auth_get_current_user", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py", "source_location": "L163"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/18586a2c2d1e3cd9ee3be516c6da990f2afe14efc38a47dc2d8b06bcaf274f75.json b/artifacts/graphify-out/cache/ast/18586a2c2d1e3cd9ee3be516c6da990f2afe14efc38a47dc2d8b06bcaf274f75.json new file mode 100644 index 0000000000000000000000000000000000000000..8f7e0a8274927f06d18c003181cf652a19b76fb2 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/18586a2c2d1e3cd9ee3be516c6da990f2afe14efc38a47dc2d8b06bcaf274f75.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "label": "memory.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L1"}, {"id": "routers_memory_list_conversations", "label": "list_conversations()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L19"}, {"id": "routers_memory_get_conversation", "label": "get_conversation()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L41"}, {"id": "routers_memory_delete_conversation", "label": "delete_conversation()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L89"}, {"id": "routers_memory_rationale_20", "label": "List all conversation threads for current user", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L20"}, {"id": "routers_memory_rationale_45", "label": "Get a specific conversation thread and its messages", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L45"}, {"id": "routers_memory_rationale_93", "label": "Delete a conversation thread", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L93"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "redis", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "routers_memory_list_conversations", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "routers_memory_get_conversation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L41", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_memory_py", "target": "routers_memory_delete_conversation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L89", "weight": 1.0}, {"source": "routers_memory_rationale_20", "target": "routers_memory_list_conversations", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L20", "weight": 1.0}, {"source": "routers_memory_rationale_45", "target": "routers_memory_get_conversation", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L45", "weight": 1.0}, {"source": "routers_memory_rationale_93", "target": "routers_memory_delete_conversation", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L93", "weight": 1.0}], "raw_calls": [{"caller_nid": "routers_memory_list_conversations", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L26"}, {"caller_nid": "routers_memory_list_conversations", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L30"}, {"caller_nid": "routers_memory_list_conversations", "callee": "Conversation", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L30"}, {"caller_nid": "routers_memory_list_conversations", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L33"}, {"caller_nid": "routers_memory_list_conversations", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L33"}, {"caller_nid": "routers_memory_list_conversations", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L33"}, {"caller_nid": "routers_memory_list_conversations", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L34"}, {"caller_nid": "routers_memory_list_conversations", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L34"}, {"caller_nid": "routers_memory_list_conversations", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L34"}, {"caller_nid": "routers_memory_list_conversations", "callee": "ConversationListResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L36"}, {"caller_nid": "routers_memory_get_conversation", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L54"}, {"caller_nid": "routers_memory_get_conversation", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L60"}, {"caller_nid": "routers_memory_get_conversation", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L66"}, {"caller_nid": "routers_memory_get_conversation", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L67"}, {"caller_nid": "routers_memory_get_conversation", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L67"}, {"caller_nid": "routers_memory_get_conversation", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L68"}, {"caller_nid": "routers_memory_get_conversation", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L68"}, {"caller_nid": "routers_memory_get_conversation", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L69"}, {"caller_nid": "routers_memory_get_conversation", "callee": "Message", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L69"}, {"caller_nid": "routers_memory_get_conversation", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L75"}, {"caller_nid": "routers_memory_get_conversation", "callee": "Conversation", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L78"}, {"caller_nid": "routers_memory_get_conversation", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L81"}, {"caller_nid": "routers_memory_get_conversation", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L82"}, {"caller_nid": "routers_memory_delete_conversation", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py", "source_location": "L99"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/1fac76b57d98e958d767d54d1b34ba79d68c699eacde633a40d3e9914743b919.json b/artifacts/graphify-out/cache/ast/1fac76b57d98e958d767d54d1b34ba79d68c699eacde633a40d3e9914743b919.json new file mode 100644 index 0000000000000000000000000000000000000000..1e0900da134f800eb00edeab9ada6354d057509f --- /dev/null +++ b/artifacts/graphify-out/cache/ast/1fac76b57d98e958d767d54d1b34ba79d68c699eacde633a40d3e9914743b919.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_communities_py", "label": "communities.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L1"}, {"id": "retrieval_communities_communityreport", "label": "CommunityReport", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L11"}, {"id": "basemodel", "label": "BaseModel", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "retrieval_communities_communitybuilder", "label": "CommunityBuilder", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L20"}, {"id": "retrieval_communities_communitybuilder_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L26"}, {"id": "retrieval_communities_communitybuilder_run_leiden", "label": ".run_leiden()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L30"}, {"id": "retrieval_communities_communitybuilder_create_community_nodes", "label": ".create_community_nodes()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L109"}, {"id": "retrieval_communities_communitybuilder_collect_evidence", "label": ".collect_evidence()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L133"}, {"id": "retrieval_communities_communitybuilder_generate_report", "label": ".generate_report()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L154"}, {"id": "retrieval_communities_communitybuilder_embed_report", "label": ".embed_report()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L243"}, {"id": "retrieval_communities_rationale_21", "label": "Implements Hierarchical Leiden Community Detection and Report Generation for", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L21"}, {"id": "retrieval_communities_rationale_31", "label": "Runs the Hierarchical Leiden algorithm using Neo4j GDS.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L31"}, {"id": "retrieval_communities_rationale_110", "label": "Creates (Community) nodes in Neo4j based on the 'leiden_community' properties.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L110"}, {"id": "retrieval_communities_rationale_134", "label": "Collects chunks related to the entities in a community.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L134"}, {"id": "retrieval_communities_rationale_155", "label": "Generates an LLM-backed community report.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L155"}, {"id": "retrieval_communities_rationale_244", "label": "Embeds the community report summary to allow semantic search over communities.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L244"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_communities_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_communities_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_communities_py", "target": "pydantic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L3", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_communities_py", "target": "json", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_communities_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_communities_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_communities_py", "target": "retrieval_communities_communityreport", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L11", "weight": 1.0}, {"source": "retrieval_communities_communityreport", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_communities_py", "target": "retrieval_communities_communitybuilder", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L20", "weight": 1.0}, {"source": "retrieval_communities_communitybuilder", "target": "retrieval_communities_communitybuilder_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L26", "weight": 1.0}, {"source": "retrieval_communities_communitybuilder", "target": "retrieval_communities_communitybuilder_run_leiden", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L30", "weight": 1.0}, {"source": "retrieval_communities_communitybuilder", "target": "retrieval_communities_communitybuilder_create_community_nodes", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L109", "weight": 1.0}, {"source": "retrieval_communities_communitybuilder", "target": "retrieval_communities_communitybuilder_collect_evidence", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L133", "weight": 1.0}, {"source": "retrieval_communities_communitybuilder", "target": "retrieval_communities_communitybuilder_generate_report", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L154", "weight": 1.0}, {"source": "retrieval_communities_communitybuilder", "target": "retrieval_communities_communitybuilder_embed_report", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L243", "weight": 1.0}, {"source": "retrieval_communities_communitybuilder_generate_report", "target": "retrieval_communities_communitybuilder_collect_evidence", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L175", "weight": 1.0}, {"source": "retrieval_communities_communitybuilder_generate_report", "target": "retrieval_communities_communityreport", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L209", "weight": 1.0}, {"source": "retrieval_communities_communitybuilder_generate_report", "target": "retrieval_communities_communitybuilder_embed_report", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L236", "weight": 1.0}, {"source": "retrieval_communities_rationale_21", "target": "retrieval_communities_communitybuilder", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L21", "weight": 1.0}, {"source": "retrieval_communities_rationale_31", "target": "retrieval_communities_communitybuilder_run_leiden", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L31", "weight": 1.0}, {"source": "retrieval_communities_rationale_110", "target": "retrieval_communities_communitybuilder_create_community_nodes", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L110", "weight": 1.0}, {"source": "retrieval_communities_rationale_134", "target": "retrieval_communities_communitybuilder_collect_evidence", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L134", "weight": 1.0}, {"source": "retrieval_communities_rationale_155", "target": "retrieval_communities_communitybuilder_generate_report", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L155", "weight": 1.0}, {"source": "retrieval_communities_rationale_244", "target": "retrieval_communities_communitybuilder_embed_report", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L244", "weight": 1.0}], "raw_calls": [{"caller_nid": "retrieval_communities_communitybuilder_run_leiden", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L39"}, {"caller_nid": "retrieval_communities_communitybuilder_run_leiden", "callee": "debug", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L44"}, {"caller_nid": "retrieval_communities_communitybuilder_run_leiden", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L70"}, {"caller_nid": "retrieval_communities_communitybuilder_run_leiden", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L89"}, {"caller_nid": "retrieval_communities_communitybuilder_run_leiden", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L92"}, {"caller_nid": "retrieval_communities_communitybuilder_run_leiden", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L98"}, {"caller_nid": "retrieval_communities_communitybuilder_run_leiden", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L101"}, {"caller_nid": "retrieval_communities_communitybuilder_run_leiden", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L102"}, {"caller_nid": "retrieval_communities_communitybuilder_run_leiden", "callee": "error", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L106"}, {"caller_nid": "retrieval_communities_communitybuilder_run_leiden", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L107"}, {"caller_nid": "retrieval_communities_communitybuilder_create_community_nodes", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L130"}, {"caller_nid": "retrieval_communities_communitybuilder_create_community_nodes", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L131"}, {"caller_nid": "retrieval_communities_communitybuilder_collect_evidence", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L147"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L166"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L181"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L184"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L199"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L201"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L203"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L203"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L205"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L205"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L207"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L207"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L212"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L213"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L214"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L220"}, {"caller_nid": "retrieval_communities_communitybuilder_generate_report", "callee": "error", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L240"}, {"caller_nid": "retrieval_communities_communitybuilder_embed_report", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L247"}, {"caller_nid": "retrieval_communities_communitybuilder_embed_report", "callee": "embed", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L248"}, {"caller_nid": "retrieval_communities_communitybuilder_embed_report", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py", "source_location": "L251"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/24592f5ca0bd8bbd69313b05b155d7c9cc0a5e67746a729b5e112f90e105926b.json b/artifacts/graphify-out/cache/ast/24592f5ca0bd8bbd69313b05b155d7c9cc0a5e67746a729b5e112f90e105926b.json new file mode 100644 index 0000000000000000000000000000000000000000..2ab889e6608e04a440fd12245768440780790554 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/24592f5ca0bd8bbd69313b05b155d7c9cc0a5e67746a729b5e112f90e105926b.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "label": "query.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L1"}, {"id": "routers_query_query", "label": "query()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L19"}, {"id": "routers_query_rationale_23", "label": "Execute agentic query with dynamic tool selection. When streaming=True retu", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L23"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "target": "fastapi_responses", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L3", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "target": "redis", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_query_py", "target": "routers_query_query", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L19", "weight": 1.0}, {"source": "routers_query_rationale_23", "target": "routers_query_query", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L23", "weight": 1.0}], "raw_calls": [{"caller_nid": "routers_query_query", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L31"}, {"caller_nid": "routers_query_query", "callee": "uuid4", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L31"}, {"caller_nid": "routers_query_query", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L34"}, {"caller_nid": "routers_query_query", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L34"}, {"caller_nid": "routers_query_query", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L44"}, {"caller_nid": "routers_query_query", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L47"}, {"caller_nid": "routers_query_query", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L49"}, {"caller_nid": "routers_query_query", "callee": "uuid4", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L49"}, {"caller_nid": "routers_query_query", "callee": "StreamingResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L140"}, {"caller_nid": "routers_query_query", "callee": "event_stream", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L140"}, {"caller_nid": "routers_query_query", "callee": "save_assistant_message", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L151"}, {"caller_nid": "routers_query_query", "callee": "ConfidenceJudgmentResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L157"}, {"caller_nid": "routers_query_query", "callee": "QueryResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py", "source_location": "L165"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/250f285ac3ae29a298b69e72c01306035d558e92128e30d8f8d487d6b350fb53.json b/artifacts/graphify-out/cache/ast/250f285ac3ae29a298b69e72c01306035d558e92128e30d8f8d487d6b350fb53.json new file mode 100644 index 0000000000000000000000000000000000000000..767f0540829ea5269ebb1f2e7b9801932ee17c2f --- /dev/null +++ b/artifacts/graphify-out/cache/ast/250f285ac3ae29a298b69e72c01306035d558e92128e30d8f8d487d6b350fb53.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_init_py", "label": "__init__.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\__init__.py", "source_location": "L1"}, {"id": "observability_init_rationale_1", "label": "Observability module initialization", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\__init__.py", "source_location": "L1"}], "edges": [{"source": "observability_init_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_init_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\__init__.py", "source_location": "L1", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/284ac0a9e70aa69e586d4b6a3afcde44406fc61c2c879ca9202e712f8363939e.json b/artifacts/graphify-out/cache/ast/284ac0a9e70aa69e586d4b6a3afcde44406fc61c2c879ca9202e712f8363939e.json new file mode 100644 index 0000000000000000000000000000000000000000..fc71480ec957309d8c5b953acdc62d34d41aa1d2 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/284ac0a9e70aa69e586d4b6a3afcde44406fc61c2c879ca9202e712f8363939e.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "label": "admin.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L1"}, {"id": "api_admin_get_graph_store", "label": "get_graph_store()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L18"}, {"id": "api_admin_check_admin_scope", "label": "check_admin_scope()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L31"}, {"id": "api_admin_systemconfig", "label": "SystemConfig", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L40"}, {"id": "basemodel", "label": "BaseModel", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "api_admin_taskdashboardresponse", "label": "TaskDashboardResponse", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L46"}, {"id": "api_admin_get_admin_stats", "label": "get_admin_stats()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L52"}, {"id": "api_admin_get_tasks", "label": "get_tasks()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L88"}, {"id": "api_admin_update_config", "label": "update_config()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L110"}, {"id": "api_admin_get_review_queue", "label": "get_review_queue()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L117"}, {"id": "api_admin_force_merge_entities", "label": "force_merge_entities()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L129"}, {"id": "api_admin_search_nodes", "label": "search_nodes()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L192"}, {"id": "api_admin_delete_node", "label": "delete_node()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L211"}, {"id": "api_admin_list_documents", "label": "list_documents()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L236"}, {"id": "api_admin_delete_document", "label": "delete_document()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L245"}, {"id": "api_admin_get_pending_ontology", "label": "get_pending_ontology()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L262"}, {"id": "api_admin_approve_ontology", "label": "approve_ontology()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L271"}, {"id": "api_admin_reject_ontology", "label": "reject_ontology()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L291"}, {"id": "api_admin_list_users", "label": "list_users()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L303"}, {"id": "api_admin_update_user_role", "label": "update_user_role()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L315"}, {"id": "api_admin_rationale_19", "label": "Return the app-level shared Neo4jStore (set during startup).", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L19"}, {"id": "api_admin_rationale_32", "label": "Dependency to check if user has admin scope", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L32"}, {"id": "api_admin_rationale_56", "label": "Get system-wide stats like document counts, node sizes, LLM costs (mocked for no", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L56"}, {"id": "api_admin_rationale_89", "label": "Fetch all tasks from workers (integration with Flower/Celery events)", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L89"}, {"id": "api_admin_rationale_111", "label": "Dynamically update configurations - requires restart logic usually, but here we", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L111"}, {"id": "api_admin_rationale_121", "label": "Fetch entities that resolved between 0.85-0.95 confidence", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L121"}, {"id": "api_admin_rationale_135", "label": "Admin override to merge two nodes", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L135"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "pydantic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L3", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "celery_result", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "redis", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_get_graph_store", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L18", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_check_admin_scope", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L31", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_systemconfig", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L40", "weight": 1.0}, {"source": "api_admin_systemconfig", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L40", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_taskdashboardresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L46", "weight": 1.0}, {"source": "api_admin_taskdashboardresponse", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L46", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_get_admin_stats", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L52", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_get_tasks", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L88", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_update_config", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L110", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_get_review_queue", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L117", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_force_merge_entities", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L129", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_search_nodes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L192", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_delete_node", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L211", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_list_documents", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L236", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_delete_document", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L245", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_get_pending_ontology", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L262", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_approve_ontology", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L271", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_reject_ontology", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L291", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_list_users", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L303", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_admin_py", "target": "api_admin_update_user_role", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L315", "weight": 1.0}, {"source": "api_admin_get_tasks", "target": "api_admin_taskdashboardresponse", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L103", "weight": 1.0}, {"source": "api_admin_rationale_19", "target": "api_admin_get_graph_store", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L19", "weight": 1.0}, {"source": "api_admin_rationale_32", "target": "api_admin_check_admin_scope", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L32", "weight": 1.0}, {"source": "api_admin_rationale_56", "target": "api_admin_get_admin_stats", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L56", "weight": 1.0}, {"source": "api_admin_rationale_89", "target": "api_admin_get_tasks", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L89", "weight": 1.0}, {"source": "api_admin_rationale_111", "target": "api_admin_update_config", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L111", "weight": 1.0}, {"source": "api_admin_rationale_121", "target": "api_admin_get_review_queue", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L121", "weight": 1.0}, {"source": "api_admin_rationale_135", "target": "api_admin_force_merge_entities", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L135", "weight": 1.0}], "raw_calls": [{"caller_nid": "api_admin_get_graph_store", "callee": "getattr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L20"}, {"caller_nid": "api_admin_get_graph_store", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L22"}, {"caller_nid": "api_admin_check_admin_scope", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L34"}, {"caller_nid": "api_admin_get_admin_stats", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L60"}, {"caller_nid": "api_admin_get_admin_stats", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L64"}, {"caller_nid": "api_admin_get_admin_stats", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L85"}, {"caller_nid": "api_admin_get_admin_stats", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L85"}, {"caller_nid": "api_admin_get_tasks", "callee": "inspect", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L91"}, {"caller_nid": "api_admin_get_tasks", "callee": "active", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L92"}, {"caller_nid": "api_admin_get_tasks", "callee": "reserved", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L93"}, {"caller_nid": "api_admin_get_tasks", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L96"}, {"caller_nid": "api_admin_get_tasks", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L97"}, {"caller_nid": "api_admin_get_tasks", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L100"}, {"caller_nid": "api_admin_get_tasks", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L101"}, {"caller_nid": "api_admin_get_tasks", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L104"}, {"caller_nid": "api_admin_get_review_queue", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L125"}, {"caller_nid": "api_admin_force_merge_entities", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L142"}, {"caller_nid": "api_admin_force_merge_entities", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L147"}, {"caller_nid": "api_admin_force_merge_entities", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L147"}, {"caller_nid": "api_admin_force_merge_entities", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L160"}, {"caller_nid": "api_admin_force_merge_entities", "callee": "dumps", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L160"}, {"caller_nid": "api_admin_force_merge_entities", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L168"}, {"caller_nid": "api_admin_force_merge_entities", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L171"}, {"caller_nid": "api_admin_force_merge_entities", "callee": "upper", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L171"}, {"caller_nid": "api_admin_force_merge_entities", "callee": "match", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L172"}, {"caller_nid": "api_admin_force_merge_entities", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L179"}, {"caller_nid": "api_admin_force_merge_entities", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L183"}, {"caller_nid": "api_admin_force_merge_entities", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L187"}, {"caller_nid": "api_admin_force_merge_entities", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L187"}, {"caller_nid": "api_admin_search_nodes", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L207"}, {"caller_nid": "api_admin_delete_node", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L220"}, {"caller_nid": "api_admin_delete_node", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L222"}, {"caller_nid": "api_admin_delete_node", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L223"}, {"caller_nid": "api_admin_delete_node", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L223"}, {"caller_nid": "api_admin_delete_node", "callee": "intersection", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L224"}, {"caller_nid": "api_admin_delete_node", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L225"}, {"caller_nid": "api_admin_delete_node", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L230"}, {"caller_nid": "api_admin_list_documents", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L241"}, {"caller_nid": "api_admin_delete_document", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L256"}, {"caller_nid": "api_admin_get_pending_ontology", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L267"}, {"caller_nid": "api_admin_approve_ontology", "callee": "OntologyDriftDetector", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L278"}, {"caller_nid": "api_admin_approve_ontology", "callee": "apply_drift_report", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L282"}, {"caller_nid": "api_admin_approve_ontology", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L287"}, {"caller_nid": "api_admin_reject_ontology", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L297"}, {"caller_nid": "api_admin_list_users", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L308"}, {"caller_nid": "api_admin_update_user_role", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L321"}, {"caller_nid": "api_admin_update_user_role", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L323"}, {"caller_nid": "api_admin_update_user_role", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py", "source_location": "L325"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/417a6f7e8895e6e5d9b5be3b073312cef8b998383aa13ae18bd6233c46f95b5f.json b/artifacts/graphify-out/cache/ast/417a6f7e8895e6e5d9b5be3b073312cef8b998383aa13ae18bd6233c46f95b5f.json new file mode 100644 index 0000000000000000000000000000000000000000..90b822206795a2de99976cb19873d759542fb31b --- /dev/null +++ b/artifacts/graphify-out/cache/ast/417a6f7e8895e6e5d9b5be3b073312cef8b998383aa13ae18bd6233c46f95b5f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "label": "server.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L1"}, {"id": "api_server_is_valid_origin", "label": "is_valid_origin()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L61"}, {"id": "api_server_startup_event", "label": "startup_event()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L90"}, {"id": "api_server_shutdown_event", "label": "shutdown_event()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L125"}, {"id": "api_server_serve_index", "label": "serve_index()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L171"}, {"id": "api_server_rationale_1", "label": "FastAPI application - Main API server Unified API gateway for the Graph RAG ser", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L1"}, {"id": "api_server_rationale_91", "label": "Initialize connections on startup", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L91"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "fastapi_middleware_cors", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "fastapi_responses", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "fastapi_staticfiles", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "pathlib", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "shutil", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "json", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "os", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L16", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "redis_asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "celery_result", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L18", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L20", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L28", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L37", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L38", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L39", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L40", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L41", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_init_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L42", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L43", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "re", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L60", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "api_server_is_valid_origin", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L61", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "api_server_startup_event", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L90", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "api_server_shutdown_event", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L125", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L142", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L144", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L146", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L148", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L150", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L152", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L154", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L156", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L158", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L160", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "os", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L163", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "fastapi_staticfiles", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L164", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "fastapi_responses", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L165", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "target": "api_server_serve_index", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L171", "weight": 1.0}, {"source": "api_server_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L1", "weight": 1.0}, {"source": "api_server_rationale_91", "target": "api_server_startup_event", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L91", "weight": 1.0}], "raw_calls": [{"caller_nid": "api_server_is_valid_origin", "callee": "compile", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L64"}, {"caller_nid": "api_server_is_valid_origin", "callee": "bool", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L65"}, {"caller_nid": "api_server_is_valid_origin", "callee": "match", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L65"}, {"caller_nid": "api_server_startup_event", "callee": "RuntimeError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L93"}, {"caller_nid": "api_server_startup_event", "callee": "Neo4jStore", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L98"}, {"caller_nid": "api_server_startup_event", "callee": "connect", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L99"}, {"caller_nid": "api_server_startup_event", "callee": "AgentRetrievalSystem", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L104"}, {"caller_nid": "api_server_startup_event", "callee": "IngestionPipeline", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L111"}, {"caller_nid": "api_server_startup_event", "callee": "initialize", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L115"}, {"caller_nid": "api_server_startup_event", "callee": "from_url", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L119"}, {"caller_nid": "api_server_shutdown_event", "callee": "disconnect", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L128"}, {"caller_nid": "api_server_shutdown_event", "callee": "close", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L130"}, {"caller_nid": "api_server_shutdown_event", "callee": "close", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L132"}, {"caller_nid": "api_server_serve_index", "callee": "FileResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L172"}, {"caller_nid": "api_server_serve_index", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py", "source_location": "L172"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/45c5ebb5fece9b3c78652c3b2e7d3a79c75450116ee299a11c2e9e8ac6ca48d8.json b/artifacts/graphify-out/cache/ast/45c5ebb5fece9b3c78652c3b2e7d3a79c75450116ee299a11c2e9e8ac6ca48d8.json new file mode 100644 index 0000000000000000000000000000000000000000..9b7b45a64b08b8d579cddab50b84a4a3a179c4f6 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/45c5ebb5fece9b3c78652c3b2e7d3a79c75450116ee299a11c2e9e8ac6ca48d8.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "label": "evaluation.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L1"}, {"id": "routers_evaluation_evaluate_response", "label": "evaluate_response()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L19"}, {"id": "routers_evaluation_get_eval_dashboard", "label": "get_eval_dashboard()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L67"}, {"id": "routers_evaluation_rationale_23", "label": "Run RAGAS-style quality evaluation on a Q&A pair. Measures faithfulness, re", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L23"}, {"id": "routers_evaluation_rationale_71", "label": "Retrieve evaluation history for the quality dashboard", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L71"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "target": "redis", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "target": "routers_evaluation_evaluate_response", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_evaluation_py", "target": "routers_evaluation_get_eval_dashboard", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L67", "weight": 1.0}, {"source": "routers_evaluation_rationale_23", "target": "routers_evaluation_evaluate_response", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L23", "weight": 1.0}, {"source": "routers_evaluation_rationale_71", "target": "routers_evaluation_get_eval_dashboard", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L71", "weight": 1.0}], "raw_calls": [{"caller_nid": "routers_evaluation_evaluate_response", "callee": "create", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L32"}, {"caller_nid": "routers_evaluation_evaluate_response", "callee": "RAGEvaluator", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L33"}, {"caller_nid": "routers_evaluation_evaluate_response", "callee": "evaluate", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L35"}, {"caller_nid": "routers_evaluation_evaluate_response", "callee": "EvalResult", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L42"}, {"caller_nid": "routers_evaluation_evaluate_response", "callee": "save_eval_result", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L52"}, {"caller_nid": "routers_evaluation_evaluate_response", "callee": "EvalResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L54"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "get_eval_results", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L72"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "EvalDashboardResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L75"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L84"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "sum", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L85"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L85"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "sum", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L86"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L86"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "sum", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L87"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L87"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "sum", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L88"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L88"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "EvalTrendPoint", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L91"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L92"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L92"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L93"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L94"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L95"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "bool", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L96"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L96"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L97"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "EvalDashboardResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L102"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "round", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L104"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "round", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L105"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "round", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L106"}, {"caller_nid": "routers_evaluation_get_eval_dashboard", "callee": "round", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py", "source_location": "L107"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/4c17e1528ca6f1a4381da025c17d089eec8b01ff591bca0dbe1df8ce515dda72.json b/artifacts/graphify-out/cache/ast/4c17e1528ca6f1a4381da025c17d089eec8b01ff591bca0dbe1df8ce515dda72.json new file mode 100644 index 0000000000000000000000000000000000000000..046d65fce6c1e85fef1a6e64551e6652a29ebb2d --- /dev/null +++ b/artifacts/graphify-out/cache/ast/4c17e1528ca6f1a4381da025c17d089eec8b01ff591bca0dbe1df8ce515dda72.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_entity_enricher_py", "label": "entity_enricher.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L1"}, {"id": "services_entity_enricher_enrichmentresult", "label": "EnrichmentResult", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L22"}, {"id": "basemodel", "label": "BaseModel", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "services_entity_enricher_entityenricher", "label": "EntityEnricher", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L31"}, {"id": "services_entity_enricher_entityenricher_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L40"}, {"id": "services_entity_enricher_entityenricher_enrich_all_entities", "label": ".enrich_all_entities()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L52"}, {"id": "services_entity_enricher_entityenricher_enrich_entity", "label": ".enrich_entity()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L120"}, {"id": "services_entity_enricher_entityenricher_get_entity_summary", "label": ".get_entity_summary()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L140"}, {"id": "services_entity_enricher_entityenricher_enrich_single", "label": "._enrich_single()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L152"}, {"id": "services_entity_enricher_rationale_1", "label": "EntityEnricher: Entity Profile Summaries Traverses each entity's graph neighbor", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L1"}, {"id": "services_entity_enricher_rationale_23", "label": "Result from an entity enrichment operation", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L23"}, {"id": "services_entity_enricher_rationale_32", "label": "Post-ingestion enrichment pass: synthesizes a human-readable profile summar", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L32"}, {"id": "services_entity_enricher_rationale_57", "label": "Enrich all entities that: - Have >= min_connections relationships, AND", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L57"}, {"id": "services_entity_enricher_rationale_121", "label": "Enrich a single entity by name. Returns the generated summary or None.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L121"}, {"id": "services_entity_enricher_rationale_141", "label": "Get the stored summary for an entity, or None if not enriched.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L141"}, {"id": "services_entity_enricher_rationale_155", "label": "Generate and persist a summary for one entity. Returns True on success.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L155"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_entity_enricher_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_entity_enricher_py", "target": "asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_entity_enricher_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_entity_enricher_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_entity_enricher_py", "target": "pydantic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_entity_enricher_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_entity_enricher_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L18", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_entity_enricher_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_entity_enricher_py", "target": "services_entity_enricher_enrichmentresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L22", "weight": 1.0}, {"source": "services_entity_enricher_enrichmentresult", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L22", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_entity_enricher_py", "target": "services_entity_enricher_entityenricher", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L31", "weight": 1.0}, {"source": "services_entity_enricher_entityenricher", "target": "services_entity_enricher_entityenricher_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L40", "weight": 1.0}, {"source": "services_entity_enricher_entityenricher", "target": "services_entity_enricher_entityenricher_enrich_all_entities", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L52", "weight": 1.0}, {"source": "services_entity_enricher_entityenricher", "target": "services_entity_enricher_entityenricher_enrich_entity", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L120", "weight": 1.0}, {"source": "services_entity_enricher_entityenricher", "target": "services_entity_enricher_entityenricher_get_entity_summary", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L140", "weight": 1.0}, {"source": "services_entity_enricher_entityenricher", "target": "services_entity_enricher_entityenricher_enrich_single", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L152", "weight": 1.0}, {"source": "services_entity_enricher_entityenricher_enrich_all_entities", "target": "services_entity_enricher_enrichmentresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L89", "weight": 1.0}, {"source": "services_entity_enricher_entityenricher_enrich_all_entities", "target": "services_entity_enricher_entityenricher_enrich_single", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L99", "weight": 1.0}, {"source": "services_entity_enricher_entityenricher_enrich_entity", "target": "services_entity_enricher_entityenricher_enrich_single", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L130", "weight": 1.0}, {"source": "services_entity_enricher_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_entity_enricher_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L1", "weight": 1.0}, {"source": "services_entity_enricher_rationale_23", "target": "services_entity_enricher_enrichmentresult", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L23", "weight": 1.0}, {"source": "services_entity_enricher_rationale_32", "target": "services_entity_enricher_entityenricher", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L32", "weight": 1.0}, {"source": "services_entity_enricher_rationale_57", "target": "services_entity_enricher_entityenricher_enrich_all_entities", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L57", "weight": 1.0}, {"source": "services_entity_enricher_rationale_121", "target": "services_entity_enricher_entityenricher_enrich_entity", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L121", "weight": 1.0}, {"source": "services_entity_enricher_rationale_141", "target": "services_entity_enricher_entityenricher_get_entity_summary", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L141", "weight": 1.0}, {"source": "services_entity_enricher_rationale_155", "target": "services_entity_enricher_entityenricher_enrich_single", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L155", "weight": 1.0}], "raw_calls": [{"caller_nid": "services_entity_enricher_entityenricher_init", "callee": "create", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L47"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_all_entities", "callee": "time", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L70"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_all_entities", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L85"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_all_entities", "callee": "range", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L96"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_all_entities", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L96"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_all_entities", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L99"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_all_entities", "callee": "gather", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L102"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_all_entities", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L104"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_all_entities", "callee": "time", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L111"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_all_entities", "callee": "round", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L116"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_all_entities", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L117"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_entity", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L125"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_entity", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L133"}, {"caller_nid": "services_entity_enricher_entityenricher_get_entity_summary", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L142"}, {"caller_nid": "services_entity_enricher_entityenricher_get_entity_summary", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L148"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_single", "callee": "get_neighbors", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L158"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_single", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L167"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_single", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L173"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_single", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L180"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_single", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L194"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_single", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L195"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_single", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L201"}, {"caller_nid": "services_entity_enricher_entityenricher_enrich_single", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py", "source_location": "L211"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/4ea9a6deda7b01c2d193f35e7be1c4fd008b78c3fa46052d45b08103608b1095.json b/artifacts/graphify-out/cache/ast/4ea9a6deda7b01c2d193f35e7be1c4fd008b78c3fa46052d45b08103608b1095.json new file mode 100644 index 0000000000000000000000000000000000000000..3fe501876330f243e27299587bdbfd7d66e7e514 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/4ea9a6deda7b01c2d193f35e7be1c4fd008b78c3fa46052d45b08103608b1095.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "label": "neo4j_store.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L1"}, {"id": "core_neo4j_store_neo4jstore", "label": "Neo4jStore", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L25"}, {"id": "graphstore", "label": "GraphStore", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "vectorstore", "label": "VectorStore", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "core_neo4j_store_neo4jstore_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L31"}, {"id": "core_neo4j_store_neo4jstore_connect", "label": ".connect()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L44"}, {"id": "core_neo4j_store_neo4jstore_disconnect", "label": ".disconnect()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L56"}, {"id": "core_neo4j_store_neo4jstore_create_vector_index", "label": "._create_vector_index()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L63"}, {"id": "core_neo4j_store_neo4jstore_create_fulltext_index", "label": "._create_fulltext_index()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L92"}, {"id": "core_neo4j_store_neo4jstore_create_constraints", "label": "._create_constraints()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L108"}, {"id": "core_neo4j_store_neo4jstore_create_node", "label": ".create_node()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L129"}, {"id": "core_neo4j_store_neo4jstore_create_relationship", "label": ".create_relationship()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L165"}, {"id": "core_neo4j_store_neo4jstore_execute_query", "label": ".execute_query()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L214"}, {"id": "core_neo4j_store_neo4jstore_find_path", "label": ".find_path()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L232"}, {"id": "core_neo4j_store_neo4jstore_get_neighbors", "label": ".get_neighbors()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L264"}, {"id": "core_neo4j_store_neo4jstore_merge_entities", "label": ".merge_entities()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L294"}, {"id": "core_neo4j_store_neo4jstore_bm25_search", "label": ".bm25_search()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L324"}, {"id": "core_neo4j_store_neo4jstore_get_communities", "label": ".get_communities()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L367"}, {"id": "core_neo4j_store_neo4jstore_get_community_entities", "label": ".get_community_entities()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L402"}, {"id": "core_neo4j_store_neo4jstore_assign_community_ids", "label": ".assign_community_ids()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L417"}, {"id": "core_neo4j_store_neo4jstore_get_entities_at_time", "label": ".get_entities_at_time()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L457"}, {"id": "core_neo4j_store_neo4jstore_add_vectors", "label": ".add_vectors()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L481"}, {"id": "core_neo4j_store_neo4jstore_search", "label": ".search()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L529"}, {"id": "core_neo4j_store_neo4jstore_fallback_search", "label": "._fallback_search()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L568"}, {"id": "core_neo4j_store_neo4jstore_delete_vectors", "label": ".delete_vectors()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L583"}, {"id": "core_neo4j_store_neo4jstore_save_ontology", "label": ".save_ontology()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L595"}, {"id": "core_neo4j_store_neo4jstore_load_ontology", "label": ".load_ontology()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L618"}, {"id": "core_neo4j_store_neo4jstore_save_eval_result", "label": ".save_eval_result()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L646"}, {"id": "core_neo4j_store_neo4jstore_get_eval_results", "label": ".get_eval_results()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L680"}, {"id": "core_neo4j_store_neo4jstore_get_semantic_cache", "label": ".get_semantic_cache()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L695"}, {"id": "core_neo4j_store_neo4jstore_set_semantic_cache", "label": ".set_semantic_cache()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L711"}, {"id": "core_neo4j_store_neo4jstore_create_chunk_with_entities", "label": ".create_chunk_with_entities()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L733"}, {"id": "core_neo4j_store_neo4jstore_create_user", "label": ".create_user()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L787"}, {"id": "core_neo4j_store_neo4jstore_get_user", "label": ".get_user()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L819"}, {"id": "core_neo4j_store_rationale_1", "label": "Neo4j implementation of GraphStore and VectorStore Extended with: - Gap #1:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L1"}, {"id": "core_neo4j_store_rationale_26", "label": "Unified Neo4j implementation for both graph and vector storage Uses Neo4j 5", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L26"}, {"id": "core_neo4j_store_rationale_45", "label": "Establish connection to Neo4j", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L45"}, {"id": "core_neo4j_store_rationale_57", "label": "Close connection to Neo4j", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L57"}, {"id": "core_neo4j_store_rationale_64", "label": "Create vector index for semantic search and semantic caching", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L64"}, {"id": "core_neo4j_store_rationale_93", "label": "Gap #1 \u2014 Create BM25 fulltext index for hybrid search Neo4j 5.x support", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L93"}, {"id": "core_neo4j_store_rationale_109", "label": "Create constraints and indexes for performance", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L109"}, {"id": "core_neo4j_store_rationale_130", "label": "Create an entity node in the graph with temporal + tenant support", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L130"}, {"id": "core_neo4j_store_rationale_166", "label": "Create a relationship between entities with temporal support (Gap #5)", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L166"}, {"id": "core_neo4j_store_rationale_220", "label": "Execute a Cypher query with timeout", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L220"}, {"id": "core_neo4j_store_rationale_270", "label": "Get neighboring entities", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L270"}, {"id": "core_neo4j_store_rationale_295", "label": "Merge duplicate entities", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L295"}, {"id": "core_neo4j_store_rationale_331", "label": "BM25 fulltext (Lucene) search over chunk text. Returns results with BM2", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L331"}, {"id": "core_neo4j_store_rationale_372", "label": "Get community groupings for a list of entities. Uses community_id prope", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L372"}, {"id": "core_neo4j_store_rationale_407", "label": "Get all entities in a community", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L407"}, {"id": "core_neo4j_store_rationale_418", "label": "Server-side community assignment using Neo4j GDS Weakly Connected Components (WC", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L418"}, {"id": "core_neo4j_store_rationale_463", "label": "Get relationships valid at a specific point in time", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L463"}, {"id": "core_neo4j_store_rationale_487", "label": "Add chunk vectors to Neo4j", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L487"}, {"id": "core_neo4j_store_rationale_536", "label": "Vector similarity search using Neo4j vector index", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L536"}, {"id": "core_neo4j_store_rationale_569", "label": "Fallback search without vector index", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L569"}, {"id": "core_neo4j_store_rationale_596", "label": "Persist ontology to Neo4j", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L596"}, {"id": "core_neo4j_store_rationale_619", "label": "Load persisted ontology from Neo4j. Returns OntologySchema or None.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L619"}, {"id": "core_neo4j_store_rationale_647", "label": "Persist an EvalResult to Neo4j for dashboard trending (Gap #8)", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L647"}, {"id": "core_neo4j_store_rationale_681", "label": "Retrieve eval results for the dashboard (Gap #8)", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L681"}, {"id": "core_neo4j_store_rationale_696", "label": "Find a semantically identical query in the cache", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L696"}, {"id": "core_neo4j_store_rationale_712", "label": "Store a query answer in the semantic cache", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L712"}, {"id": "core_neo4j_store_rationale_738", "label": "Create a chunk and link it to entities it mentions", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L738"}, {"id": "core_neo4j_store_rationale_788", "label": "Create a new user node in the graph", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L788"}, {"id": "core_neo4j_store_rationale_820", "label": "Get a user by username", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L820"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "target": "asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "target": "neo4j", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "target": "uuid", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L16", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L18", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "target": "core_neo4j_store_neo4jstore", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L25", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "graphstore", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L25", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "vectorstore", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L25", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L31", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_connect", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L44", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_disconnect", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L56", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_create_vector_index", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L63", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_create_fulltext_index", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L92", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_create_constraints", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L108", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_create_node", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L129", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_create_relationship", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L165", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_execute_query", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L214", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_find_path", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L232", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_get_neighbors", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L264", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_merge_entities", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L294", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_bm25_search", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L324", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_get_communities", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L367", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_get_community_entities", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L402", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_assign_community_ids", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L417", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_get_entities_at_time", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L457", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_add_vectors", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L481", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_search", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L529", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_fallback_search", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L568", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_delete_vectors", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L583", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_save_ontology", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L595", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_load_ontology", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L618", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_save_eval_result", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L646", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_get_eval_results", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L680", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_get_semantic_cache", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L695", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_set_semantic_cache", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L711", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_create_chunk_with_entities", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L733", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_create_user", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L787", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore", "target": "core_neo4j_store_neo4jstore_get_user", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L819", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore_connect", "target": "core_neo4j_store_neo4jstore_create_vector_index", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L52", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore_connect", "target": "core_neo4j_store_neo4jstore_create_fulltext_index", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L53", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore_connect", "target": "core_neo4j_store_neo4jstore_create_constraints", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L54", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore_get_communities", "target": "core_neo4j_store_neo4jstore_execute_query", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L393", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore_get_community_entities", "target": "core_neo4j_store_neo4jstore_execute_query", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L415", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore_assign_community_ids", "target": "core_neo4j_store_neo4jstore_execute_query", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L425", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore_get_entities_at_time", "target": "core_neo4j_store_neo4jstore_execute_query", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L477", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore_search", "target": "core_neo4j_store_neo4jstore_fallback_search", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L566", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore_save_eval_result", "target": "core_neo4j_store_neo4jstore_execute_query", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L665", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore_get_eval_results", "target": "core_neo4j_store_neo4jstore_execute_query", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L691", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore_get_semantic_cache", "target": "core_neo4j_store_neo4jstore_execute_query", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L704", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore_set_semantic_cache", "target": "core_neo4j_store_neo4jstore_execute_query", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L723", "weight": 1.0}, {"source": "core_neo4j_store_neo4jstore_create_chunk_with_entities", "target": "core_neo4j_store_neo4jstore_create_node", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L770", "weight": 1.0}, {"source": "core_neo4j_store_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L1", "weight": 1.0}, {"source": "core_neo4j_store_rationale_26", "target": "core_neo4j_store_neo4jstore", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L26", "weight": 1.0}, {"source": "core_neo4j_store_rationale_45", "target": "core_neo4j_store_neo4jstore_connect", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L45", "weight": 1.0}, {"source": "core_neo4j_store_rationale_57", "target": "core_neo4j_store_neo4jstore_disconnect", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L57", "weight": 1.0}, {"source": "core_neo4j_store_rationale_64", "target": "core_neo4j_store_neo4jstore_create_vector_index", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L64", "weight": 1.0}, {"source": "core_neo4j_store_rationale_93", "target": "core_neo4j_store_neo4jstore_create_fulltext_index", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L93", "weight": 1.0}, {"source": "core_neo4j_store_rationale_109", "target": "core_neo4j_store_neo4jstore_create_constraints", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L109", "weight": 1.0}, {"source": "core_neo4j_store_rationale_130", "target": "core_neo4j_store_neo4jstore_create_node", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L130", "weight": 1.0}, {"source": "core_neo4j_store_rationale_166", "target": "core_neo4j_store_neo4jstore_create_relationship", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L166", "weight": 1.0}, {"source": "core_neo4j_store_rationale_220", "target": "core_neo4j_store_neo4jstore_execute_query", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L220", "weight": 1.0}, {"source": "core_neo4j_store_rationale_270", "target": "core_neo4j_store_neo4jstore_get_neighbors", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L270", "weight": 1.0}, {"source": "core_neo4j_store_rationale_295", "target": "core_neo4j_store_neo4jstore_merge_entities", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L295", "weight": 1.0}, {"source": "core_neo4j_store_rationale_331", "target": "core_neo4j_store_neo4jstore_bm25_search", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L331", "weight": 1.0}, {"source": "core_neo4j_store_rationale_372", "target": "core_neo4j_store_neo4jstore_get_communities", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L372", "weight": 1.0}, {"source": "core_neo4j_store_rationale_407", "target": "core_neo4j_store_neo4jstore_get_community_entities", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L407", "weight": 1.0}, {"source": "core_neo4j_store_rationale_418", "target": "core_neo4j_store_neo4jstore_assign_community_ids", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L418", "weight": 1.0}, {"source": "core_neo4j_store_rationale_463", "target": "core_neo4j_store_neo4jstore_get_entities_at_time", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L463", "weight": 1.0}, {"source": "core_neo4j_store_rationale_487", "target": "core_neo4j_store_neo4jstore_add_vectors", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L487", "weight": 1.0}, {"source": "core_neo4j_store_rationale_536", "target": "core_neo4j_store_neo4jstore_search", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L536", "weight": 1.0}, {"source": "core_neo4j_store_rationale_569", "target": "core_neo4j_store_neo4jstore_fallback_search", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L569", "weight": 1.0}, {"source": "core_neo4j_store_rationale_596", "target": "core_neo4j_store_neo4jstore_save_ontology", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L596", "weight": 1.0}, {"source": "core_neo4j_store_rationale_619", "target": "core_neo4j_store_neo4jstore_load_ontology", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L619", "weight": 1.0}, {"source": "core_neo4j_store_rationale_647", "target": "core_neo4j_store_neo4jstore_save_eval_result", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L647", "weight": 1.0}, {"source": "core_neo4j_store_rationale_681", "target": "core_neo4j_store_neo4jstore_get_eval_results", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L681", "weight": 1.0}, {"source": "core_neo4j_store_rationale_696", "target": "core_neo4j_store_neo4jstore_get_semantic_cache", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L696", "weight": 1.0}, {"source": "core_neo4j_store_rationale_712", "target": "core_neo4j_store_neo4jstore_set_semantic_cache", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L712", "weight": 1.0}, {"source": "core_neo4j_store_rationale_738", "target": "core_neo4j_store_neo4jstore_create_chunk_with_entities", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L738", "weight": 1.0}, {"source": "core_neo4j_store_rationale_788", "target": "core_neo4j_store_neo4jstore_create_user", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L788", "weight": 1.0}, {"source": "core_neo4j_store_rationale_820", "target": "core_neo4j_store_neo4jstore_get_user", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L820", "weight": 1.0}], "raw_calls": [{"caller_nid": "core_neo4j_store_neo4jstore_connect", "callee": "driver", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L46"}, {"caller_nid": "core_neo4j_store_neo4jstore_connect", "callee": "getattr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L49"}, {"caller_nid": "core_neo4j_store_neo4jstore_connect", "callee": "getattr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L50"}, {"caller_nid": "core_neo4j_store_neo4jstore_disconnect", "callee": "close", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L59"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_vector_index", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L74"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_vector_index", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L76"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_vector_index", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L88"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_vector_index", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L90"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_fulltext_index", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L102"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_fulltext_index", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L104"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_fulltext_index", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L106"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_constraints", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L120"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_constraints", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L123"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_node", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L132"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_node", "callee": "uuid4", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L132"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_node", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L148"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_node", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L149"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_node", "callee": "dumps", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L153"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_node", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L159"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_node", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L160"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_node", "callee": "single", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L162"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_relationship", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L168"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_relationship", "callee": "uuid4", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L168"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_relationship", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L170"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_relationship", "callee": "upper", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L170"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_relationship", "callee": "match", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L172"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_relationship", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L196"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_relationship", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L197"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_relationship", "callee": "dumps", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L201"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_relationship", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L205"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_relationship", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L206"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_relationship", "callee": "single", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L211"}, {"caller_nid": "core_neo4j_store_neo4jstore_execute_query", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L222"}, {"caller_nid": "core_neo4j_store_neo4jstore_execute_query", "callee": "wait_for", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L227"}, {"caller_nid": "core_neo4j_store_neo4jstore_execute_query", "callee": "_fetch", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L227"}, {"caller_nid": "core_neo4j_store_neo4jstore_execute_query", "callee": "TimeoutError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L230"}, {"caller_nid": "core_neo4j_store_neo4jstore_find_path", "callee": "int", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L241"}, {"caller_nid": "core_neo4j_store_neo4jstore_find_path", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L259"}, {"caller_nid": "core_neo4j_store_neo4jstore_find_path", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L260"}, {"caller_nid": "core_neo4j_store_neo4jstore_find_path", "callee": "data", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L261"}, {"caller_nid": "core_neo4j_store_neo4jstore_get_neighbors", "callee": "int", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L272"}, {"caller_nid": "core_neo4j_store_neo4jstore_get_neighbors", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L286"}, {"caller_nid": "core_neo4j_store_neo4jstore_get_neighbors", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L290"}, {"caller_nid": "core_neo4j_store_neo4jstore_get_neighbors", "callee": "data", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L291"}, {"caller_nid": "core_neo4j_store_neo4jstore_merge_entities", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L317"}, {"caller_nid": "core_neo4j_store_neo4jstore_merge_entities", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L318"}, {"caller_nid": "core_neo4j_store_neo4jstore_merge_entities", "callee": "single", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L319"}, {"caller_nid": "core_neo4j_store_neo4jstore_bm25_search", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L356"}, {"caller_nid": "core_neo4j_store_neo4jstore_bm25_search", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L357"}, {"caller_nid": "core_neo4j_store_neo4jstore_bm25_search", "callee": "data", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L358"}, {"caller_nid": "core_neo4j_store_neo4jstore_bm25_search", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L361"}, {"caller_nid": "core_neo4j_store_neo4jstore_get_communities", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L399"}, {"caller_nid": "core_neo4j_store_neo4jstore_assign_community_ids", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L452"}, {"caller_nid": "core_neo4j_store_neo4jstore_get_entities_at_time", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L474"}, {"caller_nid": "core_neo4j_store_neo4jstore_add_vectors", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L489"}, {"caller_nid": "core_neo4j_store_neo4jstore_add_vectors", "callee": "uuid4", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L489"}, {"caller_nid": "core_neo4j_store_neo4jstore_add_vectors", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L512"}, {"caller_nid": "core_neo4j_store_neo4jstore_add_vectors", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L513"}, {"caller_nid": "core_neo4j_store_neo4jstore_add_vectors", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L516"}, {"caller_nid": "core_neo4j_store_neo4jstore_add_vectors", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L517"}, {"caller_nid": "core_neo4j_store_neo4jstore_add_vectors", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L518"}, {"caller_nid": "core_neo4j_store_neo4jstore_add_vectors", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L519"}, {"caller_nid": "core_neo4j_store_neo4jstore_add_vectors", "callee": "range", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L521"}, {"caller_nid": "core_neo4j_store_neo4jstore_add_vectors", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L521"}, {"caller_nid": "core_neo4j_store_neo4jstore_add_vectors", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L524"}, {"caller_nid": "core_neo4j_store_neo4jstore_add_vectors", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L525"}, {"caller_nid": "core_neo4j_store_neo4jstore_add_vectors", "callee": "data", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L526"}, {"caller_nid": "core_neo4j_store_neo4jstore_search", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L552"}, {"caller_nid": "core_neo4j_store_neo4jstore_search", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L557"}, {"caller_nid": "core_neo4j_store_neo4jstore_search", "callee": "data", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L558"}, {"caller_nid": "core_neo4j_store_neo4jstore_search", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L561"}, {"caller_nid": "core_neo4j_store_neo4jstore_search", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L562"}, {"caller_nid": "core_neo4j_store_neo4jstore_search", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L562"}, {"caller_nid": "core_neo4j_store_neo4jstore_search", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L562"}, {"caller_nid": "core_neo4j_store_neo4jstore_search", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L565"}, {"caller_nid": "core_neo4j_store_neo4jstore_fallback_search", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L579"}, {"caller_nid": "core_neo4j_store_neo4jstore_fallback_search", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L580"}, {"caller_nid": "core_neo4j_store_neo4jstore_fallback_search", "callee": "data", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L581"}, {"caller_nid": "core_neo4j_store_neo4jstore_delete_vectors", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L590"}, {"caller_nid": "core_neo4j_store_neo4jstore_delete_vectors", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L591"}, {"caller_nid": "core_neo4j_store_neo4jstore_save_ontology", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L607"}, {"caller_nid": "core_neo4j_store_neo4jstore_save_ontology", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L608"}, {"caller_nid": "core_neo4j_store_neo4jstore_save_ontology", "callee": "dumps", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L613"}, {"caller_nid": "core_neo4j_store_neo4jstore_save_ontology", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L614"}, {"caller_nid": "core_neo4j_store_neo4jstore_load_ontology", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L632"}, {"caller_nid": "core_neo4j_store_neo4jstore_load_ontology", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L633"}, {"caller_nid": "core_neo4j_store_neo4jstore_load_ontology", "callee": "single", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L634"}, {"caller_nid": "core_neo4j_store_neo4jstore_load_ontology", "callee": "OntologySchema", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L637"}, {"caller_nid": "core_neo4j_store_neo4jstore_load_ontology", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L641"}, {"caller_nid": "core_neo4j_store_neo4jstore_load_ontology", "callee": "fromisoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L642"}, {"caller_nid": "core_neo4j_store_neo4jstore_save_eval_result", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L648"}, {"caller_nid": "core_neo4j_store_neo4jstore_save_eval_result", "callee": "uuid4", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L648"}, {"caller_nid": "core_neo4j_store_neo4jstore_save_eval_result", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L675"}, {"caller_nid": "core_neo4j_store_neo4jstore_get_semantic_cache", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L708"}, {"caller_nid": "core_neo4j_store_neo4jstore_set_semantic_cache", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L729"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_chunk_with_entities", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L739"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_chunk_with_entities", "callee": "uuid4", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L739"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_chunk_with_entities", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L754"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_chunk_with_entities", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L756"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_chunk_with_entities", "callee": "dumps", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L761"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_chunk_with_entities", "callee": "getattr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L766"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_chunk_with_entities", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L776"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_user", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L803"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_user", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L804"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_user", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L808"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_user", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L809"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_user", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L810"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_user", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L811"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_user", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L812"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_user", "callee": "single", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L814"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_user", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L815"}, {"caller_nid": "core_neo4j_store_neo4jstore_create_user", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L816"}, {"caller_nid": "core_neo4j_store_neo4jstore_get_user", "callee": "session", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L831"}, {"caller_nid": "core_neo4j_store_neo4jstore_get_user", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L832"}, {"caller_nid": "core_neo4j_store_neo4jstore_get_user", "callee": "single", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L833"}, {"caller_nid": "core_neo4j_store_neo4jstore_get_user", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py", "source_location": "L843"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/502da21d3ecce7c0c9b1aad11d03e386873a49dc92ae8b39e5d503eaa387af99.json b/artifacts/graphify-out/cache/ast/502da21d3ecce7c0c9b1aad11d03e386873a49dc92ae8b39e5d503eaa387af99.json new file mode 100644 index 0000000000000000000000000000000000000000..476e7362a76b99933a8a3747b56e68aa223975bb --- /dev/null +++ b/artifacts/graphify-out/cache/ast/502da21d3ecce7c0c9b1aad11d03e386873a49dc92ae8b39e5d503eaa387af99.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_init_py", "label": "__init__.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\__init__.py", "source_location": "L1"}], "edges": [], "raw_calls": []} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/561765cf0c0b096af667da179d8b360a8af0c11845af6364060c61b04001b4c1.json b/artifacts/graphify-out/cache/ast/561765cf0c0b096af667da179d8b360a8af0c11845af6364060c61b04001b4c1.json new file mode 100644 index 0000000000000000000000000000000000000000..38ebeed1cf77dbebfd906642fb4dd6f270f2ec04 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/561765cf0c0b096af667da179d8b360a8af0c11845af6364060c61b04001b4c1.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_init_py", "label": "__init__.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\__init__.py", "source_location": "L1"}, {"id": "graph_rag_service_init_rationale_1", "label": "Graph RAG as a Service - Agentic Knowledge Graph Platform", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\__init__.py", "source_location": "L1"}], "edges": [{"source": "graph_rag_service_init_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_init_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\__init__.py", "source_location": "L1", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/57c3fa1c27aa034af3880e759c4238ece1769e3547a418770eda2bef4597a766.json b/artifacts/graphify-out/cache/ast/57c3fa1c27aa034af3880e759c4238ece1769e3547a418770eda2bef4597a766.json new file mode 100644 index 0000000000000000000000000000000000000000..fb33fa92db40b8dc328aa9fc979ff1185a2985d9 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/57c3fa1c27aa034af3880e759c4238ece1769e3547a418770eda2bef4597a766.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "label": "config.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L1"}, {"id": "graph_rag_service_config_settings", "label": "Settings", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L13"}, {"id": "basesettings", "label": "BaseSettings", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "graph_rag_service_config_redis_url", "label": "redis_url()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L172"}, {"id": "graph_rag_service_config_settings_model_post_init", "label": ".model_post_init()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L178"}, {"id": "graph_rag_service_config_settings_get_llm_config", "label": ".get_llm_config()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L188"}, {"id": "graph_rag_service_config_rationale_14", "label": "Application settings with environment variable support", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L14"}, {"id": "graph_rag_service_config_rationale_179", "label": "Fallback to local Ollama if cloud API keys are missing", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L179"}, {"id": "graph_rag_service_config_rationale_189", "label": "Get LLM configuration for specified provider", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L189"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "target": "pydantic_settings", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "target": "pathlib", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "target": "graph_rag_service_config_settings", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L13", "weight": 1.0}, {"source": "graph_rag_service_config_settings", "target": "basesettings", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "target": "graph_rag_service_config_redis_url", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L172", "weight": 1.0}, {"source": "graph_rag_service_config_settings", "target": "graph_rag_service_config_settings_model_post_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L178", "weight": 1.0}, {"source": "graph_rag_service_config_settings", "target": "graph_rag_service_config_settings_get_llm_config", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L188", "weight": 1.0}, {"source": "graph_rag_service_config_rationale_14", "target": "graph_rag_service_config_settings", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L14", "weight": 1.0}, {"source": "graph_rag_service_config_rationale_179", "target": "graph_rag_service_config_settings_model_post_init", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L179", "weight": 1.0}, {"source": "graph_rag_service_config_rationale_189", "target": "graph_rag_service_config_settings_get_llm_config", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L189", "weight": 1.0}], "raw_calls": [{"caller_nid": "graph_rag_service_config_settings_model_post_init", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L181"}, {"caller_nid": "graph_rag_service_config_settings_model_post_init", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L185"}, {"caller_nid": "graph_rag_service_config_settings_get_llm_config", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py", "source_location": "L211"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/590128de4e2d44c922029e4de6ee14be1a2fa27641f2c2be67248d9e8b0cd946.json b/artifacts/graphify-out/cache/ast/590128de4e2d44c922029e4de6ee14be1a2fa27641f2c2be67248d9e8b0cd946.json new file mode 100644 index 0000000000000000000000000000000000000000..d2eed35b97f98651134dd8c13724f5ffdcde815a --- /dev/null +++ b/artifacts/graphify-out/cache/ast/590128de4e2d44c922029e4de6ee14be1a2fa27641f2c2be67248d9e8b0cd946.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "label": "document_processor.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L1"}, {"id": "ingestion_document_processor_documentprocessor", "label": "DocumentProcessor", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L31"}, {"id": "ingestion_document_processor_documentprocessor_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L37"}, {"id": "ingestion_document_processor_documentprocessor_process_document", "label": ".process_document()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L61"}, {"id": "ingestion_document_processor_documentprocessor_chunk_document", "label": ".chunk_document()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L88"}, {"id": "ingestion_document_processor_documentprocessor_extract_text", "label": "._extract_text()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L124"}, {"id": "ingestion_document_processor_documentprocessor_extract_pdf", "label": "._extract_pdf()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L148"}, {"id": "ingestion_document_processor_documentprocessor_extract_txt", "label": "._extract_txt()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L169"}, {"id": "ingestion_document_processor_documentprocessor_extract_docx", "label": "._extract_docx()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L174"}, {"id": "ingestion_document_processor_documentprocessor_extract_csv", "label": "._extract_csv()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L196"}, {"id": "ingestion_document_processor_documentprocessor_extract_excel", "label": "._extract_excel()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L224"}, {"id": "ingestion_document_processor_documentprocessor_extract_pptx", "label": "._extract_pptx()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L263"}, {"id": "ingestion_document_processor_documentprocessor_extract_json", "label": "._extract_json()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L305"}, {"id": "ingestion_document_processor_documentprocessor_generate_document_id", "label": "._generate_document_id()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L344"}, {"id": "ingestion_document_processor_rationale_32", "label": "Process and chunk documents for ingestion. Supports: PDF, TXT, MD, DOCX, CS", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L32"}, {"id": "ingestion_document_processor_rationale_62", "label": "Process a document and extract metadata Args: file_path:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L62"}, {"id": "ingestion_document_processor_rationale_92", "label": "Chunk document into smaller pieces Args: document: Docum", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L92"}, {"id": "ingestion_document_processor_rationale_125", "label": "Extract text from file based on type", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L125"}, {"id": "ingestion_document_processor_rationale_149", "label": "Extract text from PDF using LlamaParse (if available) or pypdf", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L149"}, {"id": "ingestion_document_processor_rationale_170", "label": "Extract text from TXT/MD file", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L170"}, {"id": "ingestion_document_processor_rationale_175", "label": "Extract text from DOCX", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L175"}, {"id": "ingestion_document_processor_rationale_197", "label": "Extract CSV as structured text. Each row becomes a natural language sen", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L197"}, {"id": "ingestion_document_processor_rationale_225", "label": "Extract Excel spreadsheet content. Processes all sheets, converts to st", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L225"}, {"id": "ingestion_document_processor_rationale_264", "label": "Extract PowerPoint presentation content. Processes each slide: title +", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L264"}, {"id": "ingestion_document_processor_rationale_306", "label": "Extract JSON content. Flattens nested structures into readable text for", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L306"}, {"id": "ingestion_document_processor_rationale_345", "label": "Generate unique document ID based on file content", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L345"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "aiofiles", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "pathlib", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "hashlib", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "os", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "json", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "pypdf", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "llama_index_core_node_parser", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L18", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L20", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L21", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "llama_parse", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L25", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_document_processor_py", "target": "ingestion_document_processor_documentprocessor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L31", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor", "target": "ingestion_document_processor_documentprocessor_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L37", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor", "target": "ingestion_document_processor_documentprocessor_process_document", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L61", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor", "target": "ingestion_document_processor_documentprocessor_chunk_document", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L88", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor", "target": "ingestion_document_processor_documentprocessor_extract_text", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L124", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor", "target": "ingestion_document_processor_documentprocessor_extract_pdf", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L148", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor", "target": "ingestion_document_processor_documentprocessor_extract_txt", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L169", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor", "target": "ingestion_document_processor_documentprocessor_extract_docx", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L174", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor", "target": "ingestion_document_processor_documentprocessor_extract_csv", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L196", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor", "target": "ingestion_document_processor_documentprocessor_extract_excel", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L224", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor", "target": "ingestion_document_processor_documentprocessor_extract_pptx", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L263", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor", "target": "ingestion_document_processor_documentprocessor_extract_json", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L305", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor", "target": "ingestion_document_processor_documentprocessor_generate_document_id", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L344", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor_process_document", "target": "ingestion_document_processor_documentprocessor_extract_text", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L71", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor_process_document", "target": "ingestion_document_processor_documentprocessor_generate_document_id", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L74", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor_extract_text", "target": "ingestion_document_processor_documentprocessor_extract_pdf", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L129", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor_extract_text", "target": "ingestion_document_processor_documentprocessor_extract_txt", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L131", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor_extract_text", "target": "ingestion_document_processor_documentprocessor_extract_docx", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L133", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor_extract_text", "target": "ingestion_document_processor_documentprocessor_extract_csv", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L136", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor_extract_text", "target": "ingestion_document_processor_documentprocessor_extract_excel", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L138", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor_extract_text", "target": "ingestion_document_processor_documentprocessor_extract_pptx", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L140", "weight": 1.0}, {"source": "ingestion_document_processor_documentprocessor_extract_text", "target": "ingestion_document_processor_documentprocessor_extract_json", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L142", "weight": 1.0}, {"source": "ingestion_document_processor_rationale_32", "target": "ingestion_document_processor_documentprocessor", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L32", "weight": 1.0}, {"source": "ingestion_document_processor_rationale_62", "target": "ingestion_document_processor_documentprocessor_process_document", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L62", "weight": 1.0}, {"source": "ingestion_document_processor_rationale_92", "target": "ingestion_document_processor_documentprocessor_chunk_document", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L92", "weight": 1.0}, {"source": "ingestion_document_processor_rationale_125", "target": "ingestion_document_processor_documentprocessor_extract_text", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L125", "weight": 1.0}, {"source": "ingestion_document_processor_rationale_149", "target": "ingestion_document_processor_documentprocessor_extract_pdf", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L149", "weight": 1.0}, {"source": "ingestion_document_processor_rationale_170", "target": "ingestion_document_processor_documentprocessor_extract_txt", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L170", "weight": 1.0}, {"source": "ingestion_document_processor_rationale_175", "target": "ingestion_document_processor_documentprocessor_extract_docx", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L175", "weight": 1.0}, {"source": "ingestion_document_processor_rationale_197", "target": "ingestion_document_processor_documentprocessor_extract_csv", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L197", "weight": 1.0}, {"source": "ingestion_document_processor_rationale_225", "target": "ingestion_document_processor_documentprocessor_extract_excel", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L225", "weight": 1.0}, {"source": "ingestion_document_processor_rationale_264", "target": "ingestion_document_processor_documentprocessor_extract_pptx", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L264", "weight": 1.0}, {"source": "ingestion_document_processor_rationale_306", "target": "ingestion_document_processor_documentprocessor_extract_json", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L306", "weight": 1.0}, {"source": "ingestion_document_processor_rationale_345", "target": "ingestion_document_processor_documentprocessor_generate_document_id", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L345", "weight": 1.0}], "raw_calls": [{"caller_nid": "ingestion_document_processor_documentprocessor_init", "callee": "SentenceSplitter", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L40"}, {"caller_nid": "ingestion_document_processor_documentprocessor_init", "callee": "LlamaParse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L52"}, {"caller_nid": "ingestion_document_processor_documentprocessor_init", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L58"}, {"caller_nid": "ingestion_document_processor_documentprocessor_process_document", "callee": "Document", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L73"}, {"caller_nid": "ingestion_document_processor_documentprocessor_process_document", "callee": "stat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L77"}, {"caller_nid": "ingestion_document_processor_documentprocessor_process_document", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L78"}, {"caller_nid": "ingestion_document_processor_documentprocessor_process_document", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L78"}, {"caller_nid": "ingestion_document_processor_documentprocessor_process_document", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L81"}, {"caller_nid": "ingestion_document_processor_documentprocessor_chunk_document", "callee": "split_text", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L104"}, {"caller_nid": "ingestion_document_processor_documentprocessor_chunk_document", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L107"}, {"caller_nid": "ingestion_document_processor_documentprocessor_chunk_document", "callee": "Chunk", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L108"}, {"caller_nid": "ingestion_document_processor_documentprocessor_chunk_document", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L117"}, {"caller_nid": "ingestion_document_processor_documentprocessor_chunk_document", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L120"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_text", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L126"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_text", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L144"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L152"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "aload_data", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L153"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L153"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L154"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L155"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L155"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L156"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L158"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L160"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "PdfReader", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L161"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L161"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L163"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "extract_text", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L164"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pdf", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L167"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_txt", "callee": "open", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L171"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_txt", "callee": "read", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L172"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_docx", "callee": "ZipFile", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L180"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_docx", "callee": "read", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L181"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_docx", "callee": "XML", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L182"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_docx", "callee": "iter", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L185"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_docx", "callee": "endswith", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L186"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_docx", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L188"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_docx", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L190"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_docx", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L192"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "open", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L205"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "read", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L206"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "DictReader", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L208"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "splitlines", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L208"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L211"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L212"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L212"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L213"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L215"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L217"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L217"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L218"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L218"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L220"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_csv", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L222"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "load_workbook", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L231"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L231"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L236"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "iter_rows", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L241"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "all", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L242"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L245"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L246"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L246"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "zip", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L251"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L252"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L252"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L253"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L255"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L255"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L257"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L259"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_excel", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L261"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "Presentation", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L270"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L270"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L273"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L278"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L278"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L285"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L287"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L289"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L289"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L293"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L295"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L297"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L297"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L299"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L301"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_pptx", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L303"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "open", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L311"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "read", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L312"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L314"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L332"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L333"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L333"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L334"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L335"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L336"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "flatten", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L336"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L338"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "flatten", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L338"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L340"}, {"caller_nid": "ingestion_document_processor_documentprocessor_extract_json", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L342"}, {"caller_nid": "ingestion_document_processor_documentprocessor_generate_document_id", "callee": "sha256", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L346"}, {"caller_nid": "ingestion_document_processor_documentprocessor_generate_document_id", "callee": "update", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L347"}, {"caller_nid": "ingestion_document_processor_documentprocessor_generate_document_id", "callee": "encode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L347"}, {"caller_nid": "ingestion_document_processor_documentprocessor_generate_document_id", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L347"}, {"caller_nid": "ingestion_document_processor_documentprocessor_generate_document_id", "callee": "update", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L348"}, {"caller_nid": "ingestion_document_processor_documentprocessor_generate_document_id", "callee": "encode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L348"}, {"caller_nid": "ingestion_document_processor_documentprocessor_generate_document_id", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L348"}, {"caller_nid": "ingestion_document_processor_documentprocessor_generate_document_id", "callee": "stat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L348"}, {"caller_nid": "ingestion_document_processor_documentprocessor_generate_document_id", "callee": "hexdigest", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py", "source_location": "L349"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/5f99c225e5e7586be27ec3cc700ac9ee3e1fbf6fbb544d77b1348df982ae8944.json b/artifacts/graphify-out/cache/ast/5f99c225e5e7586be27ec3cc700ac9ee3e1fbf6fbb544d77b1348df982ae8944.json new file mode 100644 index 0000000000000000000000000000000000000000..b1ae16e7ecb84098f9f01e964a26c818e071e501 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/5f99c225e5e7586be27ec3cc700ac9ee3e1fbf6fbb544d77b1348df982ae8944.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_simulation_runner_py", "label": "simulation_runner.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L1"}, {"id": "workers_simulation_runner_agentaction", "label": "AgentAction", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L20"}, {"id": "basemodel", "label": "BaseModel", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "workers_simulation_runner_simulationmanager", "label": "SimulationManager", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L27"}, {"id": "workers_simulation_runner_simulationmanager_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L30"}, {"id": "workers_simulation_runner_simulationmanager_get_active_agents", "label": ".get_active_agents()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L34"}, {"id": "workers_simulation_runner_simulationmanager_run_simulation_tick", "label": ".run_simulation_tick()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L44"}, {"id": "workers_simulation_runner_simulationmanager_process_agent_turn", "label": "._process_agent_turn()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L66"}, {"id": "workers_simulation_runner_rationale_28", "label": "Manages parallel multi-agent loops and pushes real-time actions to Neo4j.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L28"}, {"id": "workers_simulation_runner_rationale_35", "label": "Fetch agents with generated personas (from Point 2 PersonaGenerator)", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L35"}, {"id": "workers_simulation_runner_rationale_45", "label": "Runs one tick of the sandbox simulation: 1. Selects active agents", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L45"}, {"id": "workers_simulation_runner_rationale_67", "label": "Process a single agent's turn asynchronously.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L67"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_simulation_runner_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_simulation_runner_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_simulation_runner_py", "target": "pydantic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_simulation_runner_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_simulation_runner_py", "target": "asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_simulation_runner_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L16", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_simulation_runner_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_simulation_runner_py", "target": "workers_simulation_runner_agentaction", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L20", "weight": 1.0}, {"source": "workers_simulation_runner_agentaction", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L20", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_simulation_runner_py", "target": "workers_simulation_runner_simulationmanager", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L27", "weight": 1.0}, {"source": "workers_simulation_runner_simulationmanager", "target": "workers_simulation_runner_simulationmanager_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L30", "weight": 1.0}, {"source": "workers_simulation_runner_simulationmanager", "target": "workers_simulation_runner_simulationmanager_get_active_agents", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L34", "weight": 1.0}, {"source": "workers_simulation_runner_simulationmanager", "target": "workers_simulation_runner_simulationmanager_run_simulation_tick", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L44", "weight": 1.0}, {"source": "workers_simulation_runner_simulationmanager", "target": "workers_simulation_runner_simulationmanager_process_agent_turn", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L66", "weight": 1.0}, {"source": "workers_simulation_runner_simulationmanager_run_simulation_tick", "target": "workers_simulation_runner_simulationmanager_get_active_agents", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L52", "weight": 1.0}, {"source": "workers_simulation_runner_simulationmanager_run_simulation_tick", "target": "workers_simulation_runner_simulationmanager_process_agent_turn", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L57", "weight": 1.0}, {"source": "workers_simulation_runner_rationale_28", "target": "workers_simulation_runner_simulationmanager", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L28", "weight": 1.0}, {"source": "workers_simulation_runner_rationale_35", "target": "workers_simulation_runner_simulationmanager_get_active_agents", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L35", "weight": 1.0}, {"source": "workers_simulation_runner_rationale_45", "target": "workers_simulation_runner_simulationmanager_run_simulation_tick", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L45", "weight": 1.0}, {"source": "workers_simulation_runner_rationale_67", "target": "workers_simulation_runner_simulationmanager_process_agent_turn", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L67", "weight": 1.0}], "raw_calls": [{"caller_nid": "workers_simulation_runner_simulationmanager_get_active_agents", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L42"}, {"caller_nid": "workers_simulation_runner_simulationmanager_run_simulation_tick", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L53"}, {"caller_nid": "workers_simulation_runner_simulationmanager_run_simulation_tick", "callee": "gather", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L58"}, {"caller_nid": "workers_simulation_runner_simulationmanager_run_simulation_tick", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L61"}, {"caller_nid": "workers_simulation_runner_simulationmanager_process_agent_turn", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L73"}, {"caller_nid": "workers_simulation_runner_simulationmanager_process_agent_turn", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L82"}, {"caller_nid": "workers_simulation_runner_simulationmanager_process_agent_turn", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L83"}, {"caller_nid": "workers_simulation_runner_simulationmanager_process_agent_turn", "callee": "complete_structured", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L95"}, {"caller_nid": "workers_simulation_runner_simulationmanager_process_agent_turn", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L103"}, {"caller_nid": "workers_simulation_runner_simulationmanager_process_agent_turn", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L103"}, {"caller_nid": "workers_simulation_runner_simulationmanager_process_agent_turn", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L103"}, {"caller_nid": "workers_simulation_runner_simulationmanager_process_agent_turn", "callee": "upper", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L105"}, {"caller_nid": "workers_simulation_runner_simulationmanager_process_agent_turn", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L105"}, {"caller_nid": "workers_simulation_runner_simulationmanager_process_agent_turn", "callee": "sub", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L106"}, {"caller_nid": "workers_simulation_runner_simulationmanager_process_agent_turn", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L122"}, {"caller_nid": "workers_simulation_runner_simulationmanager_process_agent_turn", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py", "source_location": "L135"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/6ef5427b7e283f349e878ebded691bbc40a1df6d7fd7f9416793ec80bb4b16bf.json b/artifacts/graphify-out/cache/ast/6ef5427b7e283f349e878ebded691bbc40a1df6d7fd7f9416793ec80bb4b16bf.json new file mode 100644 index 0000000000000000000000000000000000000000..3ce2e02b46fc848acdc3259276227f85ffe7a876 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/6ef5427b7e283f349e878ebded691bbc40a1df6d7fd7f9416793ec80bb4b16bf.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_report_py", "label": "report.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L1"}, {"id": "routers_report_generate_report", "label": "generate_report()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L19"}, {"id": "routers_report_rationale_23", "label": "Generate an analytical report using the full ReACT ReportAgent. The agent", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L23"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_report_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_report_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_report_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_report_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_report_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_report_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_report_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_report_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_report_py", "target": "redis", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_report_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_report_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_report_py", "target": "routers_report_generate_report", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L19", "weight": 1.0}, {"source": "routers_report_rationale_23", "target": "routers_report_generate_report", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L23", "weight": 1.0}], "raw_calls": [{"caller_nid": "routers_report_generate_report", "callee": "UnifiedLLMProvider", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L34"}, {"caller_nid": "routers_report_generate_report", "callee": "ReportAgent", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L35"}, {"caller_nid": "routers_report_generate_report", "callee": "ReportResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py", "source_location": "L41"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/73029e2c6956d86d7af2c6a41c6f621e528934c7c4a3abfc3c731fe9b14c5d42.json b/artifacts/graphify-out/cache/ast/73029e2c6956d86d7af2c6a41c6f621e528934c7c4a3abfc3c731fe9b14c5d42.json new file mode 100644 index 0000000000000000000000000000000000000000..9ec8d6d2c6ccc43c7ded4e0d9c875e8695326e40 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/73029e2c6956d86d7af2c6a41c6f621e528934c7c4a3abfc3c731fe9b14c5d42.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "label": "ontology_drift_detector.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L1"}, {"id": "services_ontology_drift_detector_driftreport", "label": "DriftReport", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L26"}, {"id": "basemodel", "label": "BaseModel", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "services_ontology_drift_detector_ontologydriftdetector", "label": "OntologyDriftDetector", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L41"}, {"id": "services_ontology_drift_detector_ontologydriftdetector_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L48"}, {"id": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", "label": ".detect_drift()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L59"}, {"id": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "label": ".apply_drift_report()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L86"}, {"id": "services_ontology_drift_detector_ontologydriftdetector_reject_drift_report", "label": ".reject_drift_report()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L135"}, {"id": "services_ontology_drift_detector_ontologydriftdetector_list_drift_reports", "label": ".list_drift_reports()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L147"}, {"id": "services_ontology_drift_detector_ontologydriftdetector_get_drift_report", "label": ".get_drift_report()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L179"}, {"id": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", "label": "._get_random_chunks()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L185"}, {"id": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "label": "._compute_diff()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L210"}, {"id": "services_ontology_drift_detector_ontologydriftdetector_save_drift_report", "label": "._save_drift_report()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L262"}, {"id": "services_ontology_drift_detector_ontologydriftdetector_load_drift_report", "label": "._load_drift_report()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L290"}, {"id": "services_ontology_drift_detector_row_to_report", "label": "_row_to_report()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L312"}, {"id": "services_ontology_drift_detector_bump_version", "label": "_bump_version()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L342"}, {"id": "services_ontology_drift_detector_rationale_1", "label": "OntologyDriftDetector \u2014 MiroFish Point 4 analogue: Schema Evolution Periodicall", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L1"}, {"id": "services_ontology_drift_detector_rationale_27", "label": "Schema drift report surfaced by the OntologyDriftDetector", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L27"}, {"id": "services_ontology_drift_detector_rationale_42", "label": "Detects when the graph's implicit schema has drifted away from the currentl", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L42"}, {"id": "services_ontology_drift_detector_rationale_62", "label": "Run a drift detection cycle: 1. Pull random chunks 2. Generate", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L62"}, {"id": "services_ontology_drift_detector_rationale_91", "label": "Merge the new types from an approved drift report into the live ontology.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L91"}, {"id": "services_ontology_drift_detector_rationale_136", "label": "Mark a drift report as rejected.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L136"}, {"id": "services_ontology_drift_detector_rationale_152", "label": "Retrieve drift reports from Neo4j, optionally filtered by status.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L152"}, {"id": "services_ontology_drift_detector_rationale_180", "label": "Fetch a single drift report by ID.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L180"}, {"id": "services_ontology_drift_detector_rationale_186", "label": "Pull random chunk texts from Neo4j for re-sampling.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L186"}, {"id": "services_ontology_drift_detector_rationale_343", "label": "Increment the semantic version based on drift score.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L343"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "uuid", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "json", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "pydantic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L20", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L21", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_ontology_generator_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L22", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L23", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "services_ontology_drift_detector_driftreport", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L26", "weight": 1.0}, {"source": "services_ontology_drift_detector_driftreport", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L26", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "services_ontology_drift_detector_ontologydriftdetector", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L41", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector", "target": "services_ontology_drift_detector_ontologydriftdetector_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L48", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector", "target": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L59", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector", "target": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L86", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector", "target": "services_ontology_drift_detector_ontologydriftdetector_reject_drift_report", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L135", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector", "target": "services_ontology_drift_detector_ontologydriftdetector_list_drift_reports", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L147", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector", "target": "services_ontology_drift_detector_ontologydriftdetector_get_drift_report", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L179", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector", "target": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L185", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector", "target": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L210", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector", "target": "services_ontology_drift_detector_ontologydriftdetector_save_drift_report", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L262", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector", "target": "services_ontology_drift_detector_ontologydriftdetector_load_drift_report", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L290", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "services_ontology_drift_detector_row_to_report", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L312", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "target": "services_ontology_drift_detector_bump_version", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L342", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", "target": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L75", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", "target": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L80", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", "target": "services_ontology_drift_detector_ontologydriftdetector_save_drift_report", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L83", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "target": "services_ontology_drift_detector_ontologydriftdetector_load_drift_report", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L95", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "target": "services_ontology_drift_detector_bump_version", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L111", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector_list_drift_reports", "target": "services_ontology_drift_detector_row_to_report", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L177", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector_get_drift_report", "target": "services_ontology_drift_detector_ontologydriftdetector_load_drift_report", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L181", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "target": "services_ontology_drift_detector_driftreport", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L252", "weight": 1.0}, {"source": "services_ontology_drift_detector_ontologydriftdetector_load_drift_report", "target": "services_ontology_drift_detector_row_to_report", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L309", "weight": 1.0}, {"source": "services_ontology_drift_detector_row_to_report", "target": "services_ontology_drift_detector_driftreport", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L327", "weight": 1.0}, {"source": "services_ontology_drift_detector_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L1", "weight": 1.0}, {"source": "services_ontology_drift_detector_rationale_27", "target": "services_ontology_drift_detector_driftreport", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L27", "weight": 1.0}, {"source": "services_ontology_drift_detector_rationale_42", "target": "services_ontology_drift_detector_ontologydriftdetector", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L42", "weight": 1.0}, {"source": "services_ontology_drift_detector_rationale_62", "target": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L62", "weight": 1.0}, {"source": "services_ontology_drift_detector_rationale_91", "target": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L91", "weight": 1.0}, {"source": "services_ontology_drift_detector_rationale_136", "target": "services_ontology_drift_detector_ontologydriftdetector_reject_drift_report", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L136", "weight": 1.0}, {"source": "services_ontology_drift_detector_rationale_152", "target": "services_ontology_drift_detector_ontologydriftdetector_list_drift_reports", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L152", "weight": 1.0}, {"source": "services_ontology_drift_detector_rationale_180", "target": "services_ontology_drift_detector_ontologydriftdetector_get_drift_report", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L180", "weight": 1.0}, {"source": "services_ontology_drift_detector_rationale_186", "target": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L186", "weight": 1.0}, {"source": "services_ontology_drift_detector_rationale_343", "target": "services_ontology_drift_detector_ontologydriftdetector_bump_version", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L343", "weight": 1.0}], "raw_calls": [{"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_init", "callee": "create", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L54"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_init", "callee": "OntologyGenerator", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L55"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", "callee": "load_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L71"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", "callee": "generate_initial_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L79"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "load_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L99"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "list", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L104"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L105"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L105"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "list", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L107"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L108"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L108"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "OntologySchema", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L112"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "sorted", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L114"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "sorted", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L115"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L117"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L117"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "save_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L121"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L124"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_reject_drift_report", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L137"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_reject_drift_report", "callee": "bool", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L145"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_list_drift_reports", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L158"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L189"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L199"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L200"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", "callee": "Chunk", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L201"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L202"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L202"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", "callee": "uuid4", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L202"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L203"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L204"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L218"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L219"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L220"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L221"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "get_unmatched", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L237"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "get_unmatched", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L238"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "get_unmatched", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L241"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "get_unmatched", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L242"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L247"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L247"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L247"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "min", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L250"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "round", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L250"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "float", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L250"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", "callee": "log1p", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L250"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_save_drift_report", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L263"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_save_drift_report", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L279"}, {"caller_nid": "services_ontology_drift_detector_ontologydriftdetector_load_drift_report", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L291"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L313"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L314"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "fromisoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L316"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L318"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L318"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L320"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L321"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "fromisoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L323"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L328"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L328"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "uuid4", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L328"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L329"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L329"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L330"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L331"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L332"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L333"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L334"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L335"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L336"}, {"caller_nid": "services_ontology_drift_detector_row_to_report", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L337"}, {"caller_nid": "services_ontology_drift_detector_bump_version", "callee": "search", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L346"}, {"caller_nid": "services_ontology_drift_detector_bump_version", "callee": "group", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L349"}, {"caller_nid": "services_ontology_drift_detector_bump_version", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L350"}, {"caller_nid": "services_ontology_drift_detector_bump_version", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L353"}, {"caller_nid": "services_ontology_drift_detector_bump_version", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L354"}, {"caller_nid": "services_ontology_drift_detector_bump_version", "callee": "int", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L356"}, {"caller_nid": "services_ontology_drift_detector_bump_version", "callee": "int", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L356"}, {"caller_nid": "services_ontology_drift_detector_bump_version", "callee": "int", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py", "source_location": "L356"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/75187f52b4df5632a0d2eb1dcd4b6973d256b2d04a6db313d9a5b88496d5634a.json b/artifacts/graphify-out/cache/ast/75187f52b4df5632a0d2eb1dcd4b6973d256b2d04a6db313d9a5b88496d5634a.json new file mode 100644 index 0000000000000000000000000000000000000000..b1d87905a9182d127166ec3aba2196fe7c2571d4 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/75187f52b4df5632a0d2eb1dcd4b6973d256b2d04a6db313d9a5b88496d5634a.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "label": "ontology.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L1"}, {"id": "routers_ontology_get_ontology", "label": "get_ontology()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L23"}, {"id": "routers_ontology_get_ontology_stats", "label": "get_ontology_stats()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L53"}, {"id": "routers_ontology_refine_ontology", "label": "refine_ontology()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L99"}, {"id": "routers_ontology_update_ontology", "label": "update_ontology()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L152"}, {"id": "routers_ontology_trigger_drift_detection", "label": "trigger_drift_detection()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L195"}, {"id": "routers_ontology_list_drift_reports", "label": "list_drift_reports()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L229"}, {"id": "routers_ontology_approve_drift_report", "label": "approve_drift_report()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L258"}, {"id": "routers_ontology_reject_drift_report", "label": "reject_drift_report()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L281"}, {"id": "routers_ontology_rationale_24", "label": "Get current ontology schema", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L24"}, {"id": "routers_ontology_rationale_57", "label": "Return entity type counts and relationship type counts, optionally filtered to a", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L57"}, {"id": "routers_ontology_rationale_103", "label": "Use LLM to suggest ontology improvements based on current graph data + optional", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L103"}, {"id": "routers_ontology_rationale_156", "label": "Update ontology schema (admin only)", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L156"}, {"id": "routers_ontology_rationale_199", "label": "Manually trigger a drift detection cycle. Samples random chunks, proposes a", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L199"}, {"id": "routers_ontology_rationale_234", "label": "List all drift reports, optionally filtered by status (pending/approved/rejected", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L234"}, {"id": "routers_ontology_rationale_262", "label": "Approve a drift report: merge the new entity/relationship types into the li", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L262"}, {"id": "routers_ontology_rationale_285", "label": "Reject a drift report without applying any ontology changes.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L285"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "os", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L3", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_ontology_generator_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "redis", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "routers_ontology_get_ontology", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L23", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "routers_ontology_get_ontology_stats", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L53", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "routers_ontology_refine_ontology", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L99", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "routers_ontology_update_ontology", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L152", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "routers_ontology_trigger_drift_detection", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L195", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "routers_ontology_list_drift_reports", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L229", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "routers_ontology_approve_drift_report", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L258", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_ontology_py", "target": "routers_ontology_reject_drift_report", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L281", "weight": 1.0}, {"source": "routers_ontology_refine_ontology", "target": "routers_ontology_get_ontology", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L105", "weight": 1.0}, {"source": "routers_ontology_update_ontology", "target": "routers_ontology_get_ontology", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L158", "weight": 1.0}, {"source": "routers_ontology_rationale_24", "target": "routers_ontology_get_ontology", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L24", "weight": 1.0}, {"source": "routers_ontology_rationale_57", "target": "routers_ontology_get_ontology_stats", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L57", "weight": 1.0}, {"source": "routers_ontology_rationale_103", "target": "routers_ontology_refine_ontology", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L103", "weight": 1.0}, {"source": "routers_ontology_rationale_156", "target": "routers_ontology_update_ontology", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L156", "weight": 1.0}, {"source": "routers_ontology_rationale_199", "target": "routers_ontology_trigger_drift_detection", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L199", "weight": 1.0}, {"source": "routers_ontology_rationale_234", "target": "routers_ontology_list_drift_reports", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L234", "weight": 1.0}, {"source": "routers_ontology_rationale_262", "target": "routers_ontology_approve_drift_report", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L262", "weight": 1.0}, {"source": "routers_ontology_rationale_285", "target": "routers_ontology_reject_drift_report", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L285", "weight": 1.0}], "raw_calls": [{"caller_nid": "routers_ontology_get_ontology", "callee": "load_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L31"}, {"caller_nid": "routers_ontology_get_ontology", "callee": "set_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L33"}, {"caller_nid": "routers_ontology_get_ontology", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L36"}, {"caller_nid": "routers_ontology_get_ontology", "callee": "OntologyResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L41"}, {"caller_nid": "routers_ontology_get_ontology_stats", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L72"}, {"caller_nid": "routers_ontology_get_ontology_stats", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L73"}, {"caller_nid": "routers_ontology_get_ontology_stats", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L83"}, {"caller_nid": "routers_ontology_get_ontology_stats", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L84"}, {"caller_nid": "routers_ontology_get_ontology_stats", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L86"}, {"caller_nid": "routers_ontology_get_ontology_stats", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L87"}, {"caller_nid": "routers_ontology_get_ontology_stats", "callee": "JSONResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L89"}, {"caller_nid": "routers_ontology_get_ontology_stats", "callee": "sum", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L92"}, {"caller_nid": "routers_ontology_get_ontology_stats", "callee": "sum", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L93"}, {"caller_nid": "routers_ontology_refine_ontology", "callee": "load_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L107"}, {"caller_nid": "routers_ontology_refine_ontology", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L109"}, {"caller_nid": "routers_ontology_refine_ontology", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L117"}, {"caller_nid": "routers_ontology_refine_ontology", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L120"}, {"caller_nid": "routers_ontology_refine_ontology", "callee": "ChunkModel", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L124"}, {"caller_nid": "routers_ontology_refine_ontology", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L125"}, {"caller_nid": "routers_ontology_refine_ontology", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L125"}, {"caller_nid": "routers_ontology_refine_ontology", "callee": "OntologyGenerator", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L128"}, {"caller_nid": "routers_ontology_refine_ontology", "callee": "save_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L136"}, {"caller_nid": "routers_ontology_refine_ontology", "callee": "set_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L137"}, {"caller_nid": "routers_ontology_refine_ontology", "callee": "OntologyRefineResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L139"}, {"caller_nid": "routers_ontology_update_ontology", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L161"}, {"caller_nid": "routers_ontology_update_ontology", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L177"}, {"caller_nid": "routers_ontology_update_ontology", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L177"}, {"caller_nid": "routers_ontology_update_ontology", "callee": "set_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L179"}, {"caller_nid": "routers_ontology_update_ontology", "callee": "OntologyResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L181"}, {"caller_nid": "routers_ontology_trigger_drift_detection", "callee": "OntologyDriftDetector", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L204"}, {"caller_nid": "routers_ontology_trigger_drift_detection", "callee": "detect_drift", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L208"}, {"caller_nid": "routers_ontology_trigger_drift_detection", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L210"}, {"caller_nid": "routers_ontology_trigger_drift_detection", "callee": "DriftReportResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L214"}, {"caller_nid": "routers_ontology_list_drift_reports", "callee": "OntologyDriftDetector", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L235"}, {"caller_nid": "routers_ontology_list_drift_reports", "callee": "DriftReportResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L238"}, {"caller_nid": "routers_ontology_list_drift_reports", "callee": "DriftListResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L253"}, {"caller_nid": "routers_ontology_list_drift_reports", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L253"}, {"caller_nid": "routers_ontology_approve_drift_report", "callee": "OntologyDriftDetector", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L266"}, {"caller_nid": "routers_ontology_approve_drift_report", "callee": "apply_drift_report", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L270"}, {"caller_nid": "routers_ontology_approve_drift_report", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L275"}, {"caller_nid": "routers_ontology_reject_drift_report", "callee": "OntologyDriftDetector", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L286"}, {"caller_nid": "routers_ontology_reject_drift_report", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py", "source_location": "L289"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/7b1b59cd4df287b45dc868d017b3238c932ca1135abd4abcb97b12981a2cb7f7.json b/artifacts/graphify-out/cache/ast/7b1b59cd4df287b45dc868d017b3238c932ca1135abd4abcb97b12981a2cb7f7.json new file mode 100644 index 0000000000000000000000000000000000000000..f647233792702b84a78d1a271ba82005b588779e --- /dev/null +++ b/artifacts/graphify-out/cache/ast/7b1b59cd4df287b45dc868d017b3238c932ca1135abd4abcb97b12981a2cb7f7.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_extractor_py", "label": "extractor.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L1"}, {"id": "ingestion_extractor_knowledgeextractor", "label": "KnowledgeExtractor", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L18"}, {"id": "ingestion_extractor_knowledgeextractor_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L24"}, {"id": "ingestion_extractor_knowledgeextractor_extract_from_chunk", "label": ".extract_from_chunk()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L33"}, {"id": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "label": ".extract_from_chunks()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L87"}, {"id": "ingestion_extractor_knowledgeextractor_create_extraction_prompt", "label": "._create_extraction_prompt()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L190"}, {"id": "ingestion_extractor_knowledgeextractor_parse_extraction", "label": "._parse_extraction()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L228"}, {"id": "ingestion_extractor_knowledgeextractor_generate_embeddings", "label": ".generate_embeddings()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L285"}, {"id": "ingestion_extractor_rationale_19", "label": "Extract entities and relationships from text chunks Includes hallucination", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L19"}, {"id": "ingestion_extractor_rationale_38", "label": "Extract entities and relationships from a single chunk Args:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L38"}, {"id": "ingestion_extractor_rationale_94", "label": "Extract from multiple chunks with entity resolution Args:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L94"}, {"id": "ingestion_extractor_rationale_195", "label": "Create extraction prompt with ontology constraints", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L195"}, {"id": "ingestion_extractor_rationale_233", "label": "Parse and validate extraction response", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L233"}, {"id": "ingestion_extractor_rationale_289", "label": "Generate embeddings for chunks Args: chunks: Chu", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L289"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_extractor_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_extractor_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_extractor_py", "target": "json", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_extractor_py", "target": "asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_extractor_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_extractor_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_extractor_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_entity_resolver_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_extractor_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_extractor_py", "target": "ingestion_extractor_knowledgeextractor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L18", "weight": 1.0}, {"source": "ingestion_extractor_knowledgeextractor", "target": "ingestion_extractor_knowledgeextractor_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L24", "weight": 1.0}, {"source": "ingestion_extractor_knowledgeextractor", "target": "ingestion_extractor_knowledgeextractor_extract_from_chunk", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L33", "weight": 1.0}, {"source": "ingestion_extractor_knowledgeextractor", "target": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L87", "weight": 1.0}, {"source": "ingestion_extractor_knowledgeextractor", "target": "ingestion_extractor_knowledgeextractor_create_extraction_prompt", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L190", "weight": 1.0}, {"source": "ingestion_extractor_knowledgeextractor", "target": "ingestion_extractor_knowledgeextractor_parse_extraction", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L228", "weight": 1.0}, {"source": "ingestion_extractor_knowledgeextractor", "target": "ingestion_extractor_knowledgeextractor_generate_embeddings", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L285", "weight": 1.0}, {"source": "ingestion_extractor_knowledgeextractor_extract_from_chunk", "target": "ingestion_extractor_knowledgeextractor_create_extraction_prompt", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L57", "weight": 1.0}, {"source": "ingestion_extractor_knowledgeextractor_extract_from_chunk", "target": "ingestion_extractor_knowledgeextractor_parse_extraction", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L72", "weight": 1.0}, {"source": "ingestion_extractor_rationale_19", "target": "ingestion_extractor_knowledgeextractor", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L19", "weight": 1.0}, {"source": "ingestion_extractor_rationale_38", "target": "ingestion_extractor_knowledgeextractor_extract_from_chunk", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L38", "weight": 1.0}, {"source": "ingestion_extractor_rationale_94", "target": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L94", "weight": 1.0}, {"source": "ingestion_extractor_rationale_195", "target": "ingestion_extractor_knowledgeextractor_create_extraction_prompt", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L195", "weight": 1.0}, {"source": "ingestion_extractor_rationale_233", "target": "ingestion_extractor_knowledgeextractor_parse_extraction", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L233", "weight": 1.0}, {"source": "ingestion_extractor_rationale_289", "target": "ingestion_extractor_knowledgeextractor_generate_embeddings", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L289", "weight": 1.0}], "raw_calls": [{"caller_nid": "ingestion_extractor_knowledgeextractor_init", "callee": "create", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L29"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_init", "callee": "SemanticEntityResolver", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L31"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunk", "callee": "time", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L50"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunk", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L54"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunk", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L65"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunk", "callee": "model_copy", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L75"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunk", "callee": "time", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L77"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunk", "callee": "ExtractionResult", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L79"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "time", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L107"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "Semaphore", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L110"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "create_task", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L116"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "process_chunk", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L116"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L119"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "as_completed", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L119"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L122"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L124"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "progress_callback", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L127"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L127"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L135"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L136"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L138"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L139"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "resolve", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L143"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L149"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "next", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L151"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L153"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L159"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "values", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L160"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "update", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L161"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "update", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L162"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "keys", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L162"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L166"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "model_copy", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L172"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L173"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L174"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L175"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "time", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L180"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_extract_from_chunks", "callee": "ExtractionResult", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L182"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_create_extraction_prompt", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L201"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_create_extraction_prompt", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L202"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L237"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L239"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L239"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L241"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L241"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L242"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L244"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L248"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L250"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "Entity", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L253"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L254"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L255"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L256"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L258"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L260"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L264"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L266"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "Relationship", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L269"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L270"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L271"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L272"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L273"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L275"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L277"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_parse_extraction", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L282"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_generate_embeddings", "callee": "embed_batch", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L300"}, {"caller_nid": "ingestion_extractor_knowledgeextractor_generate_embeddings", "callee": "zip", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py", "source_location": "L302"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/8190d168a644b8c08190010a3d0cf192cbfd041b9b3b0eaf9849a3c7914f642d.json b/artifacts/graphify-out/cache/ast/8190d168a644b8c08190010a3d0cf192cbfd041b9b3b0eaf9849a3c7914f642d.json new file mode 100644 index 0000000000000000000000000000000000000000..3a2916c493475ed46f527662546cf1eea7dbd7c1 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/8190d168a644b8c08190010a3d0cf192cbfd041b9b3b0eaf9849a3c7914f642d.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "label": "tools.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L1"}, {"id": "retrieval_tools_hybridsearchtool", "label": "HybridSearchTool", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L23"}, {"id": "retrieval_tools_hybridsearchtool_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L29"}, {"id": "retrieval_tools_hybridsearchtool_run", "label": ".run()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L38"}, {"id": "retrieval_tools_hybridsearchtool_rrf_fuse", "label": "._rrf_fuse()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L105"}, {"id": "retrieval_tools_vectorsearchtool", "label": "VectorSearchTool", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L134"}, {"id": "retrieval_tools_vectorsearchtool_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L137"}, {"id": "retrieval_tools_vectorsearchtool_run", "label": ".run()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L143"}, {"id": "retrieval_tools_communitysummarytool", "label": "CommunitySummaryTool", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L163"}, {"id": "retrieval_tools_communitysummarytool_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L170"}, {"id": "retrieval_tools_communitysummarytool_get_redis", "label": "._get_redis()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L181"}, {"id": "retrieval_tools_communitysummarytool_run", "label": ".run()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L191"}, {"id": "retrieval_tools_communitysummarytool_find_relevant_entities", "label": "._find_relevant_entities()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L238"}, {"id": "retrieval_tools_communitysummarytool_get_community_summary", "label": "._get_community_summary()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L259"}, {"id": "retrieval_tools_graphtraversaltool", "label": "GraphTraversalTool", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L321"}, {"id": "retrieval_tools_graphtraversaltool_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L324"}, {"id": "retrieval_tools_graphtraversaltool_run", "label": ".run()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L330"}, {"id": "retrieval_tools_graphtraversaltool_extract_entities_from_query", "label": "._extract_entities_from_query()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L359"}, {"id": "retrieval_tools_cyphergenerationtool", "label": "CypherGenerationTool", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L383"}, {"id": "retrieval_tools_cyphergenerationtool_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L389"}, {"id": "retrieval_tools_cyphergenerationtool_run", "label": ".run()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L401"}, {"id": "retrieval_tools_cyphergenerationtool_generate_cypher", "label": "._generate_cypher()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L431"}, {"id": "retrieval_tools_cyphergenerationtool_validate_cypher", "label": "._validate_cypher()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L467"}, {"id": "retrieval_tools_cyphergenerationtool_correct_cypher", "label": "._correct_cypher()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L479"}, {"id": "retrieval_tools_cyphergenerationtool_correct_cypher_with_error", "label": "._correct_cypher_with_error()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L496"}, {"id": "retrieval_tools_metadatafiltertool", "label": "MetadataFilterTool", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L518"}, {"id": "retrieval_tools_metadatafiltertool_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L521"}, {"id": "retrieval_tools_metadatafiltertool_run", "label": ".run()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L526"}, {"id": "retrieval_tools_llmjudge", "label": "LLMJudge", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L567"}, {"id": "retrieval_tools_llmjudge_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L573"}, {"id": "retrieval_tools_llmjudge_score", "label": ".score()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L576"}, {"id": "retrieval_tools_ragevaluator", "label": "RAGEvaluator", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L678"}, {"id": "retrieval_tools_ragevaluator_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L684"}, {"id": "retrieval_tools_ragevaluator_evaluate", "label": ".evaluate()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L687"}, {"id": "retrieval_tools_ragevaluator_faithfulness", "label": "._faithfulness()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L720"}, {"id": "retrieval_tools_ragevaluator_answer_relevancy", "label": "._answer_relevancy()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L740"}, {"id": "retrieval_tools_ragevaluator_context_precision", "label": "._context_precision()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L756"}, {"id": "retrieval_tools_entitysummarysearchtool", "label": "EntitySummarySearchTool", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L780"}, {"id": "retrieval_tools_entitysummarysearchtool_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L790"}, {"id": "retrieval_tools_entitysummarysearchtool_run", "label": ".run()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L799"}, {"id": "retrieval_tools_rationale_24", "label": "Combines dense (vector) and sparse (BM25) retrieval via Reciprocal Rank Fus", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L24"}, {"id": "retrieval_tools_rationale_46", "label": "Run both BM25 and vector search in parallel, then fuse with RRF. Args", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L46"}, {"id": "retrieval_tools_rationale_113", "label": "Weighted Reciprocal Rank Fusion. Returns sorted list of (id, score) tup", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L113"}, {"id": "retrieval_tools_rationale_135", "label": "Vector similarity search tool \u2014 pure dense retrieval", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L135"}, {"id": "retrieval_tools_rationale_164", "label": "LazyGraphRAG-style community summarization. Detects entity clusters, genera", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L164"}, {"id": "retrieval_tools_rationale_182", "label": "Lazily initialize Redis connection for caching", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L182"}, {"id": "retrieval_tools_rationale_197", "label": "1. Find relevant entities via hybrid search 2. Group by community_id", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L197"}, {"id": "retrieval_tools_rationale_239", "label": "Find entity names most relevant to the query via BM25", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L239"}, {"id": "retrieval_tools_rationale_265", "label": "Generate or fetch cached LLM summary for a community", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L265"}, {"id": "retrieval_tools_rationale_322", "label": "Graph traversal and path finding tool", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L322"}, {"id": "retrieval_tools_rationale_360", "label": "Extract entity names from natural language query", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L360"}, {"id": "retrieval_tools_rationale_384", "label": "Text-to-Cypher tool with hallucination guards. Generates Cypher queries fro", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L384"}, {"id": "retrieval_tools_rationale_519", "label": "Filter-based retrieval using metadata constraints", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L519"}, {"id": "retrieval_tools_rationale_568", "label": "LLM-as-a-Judge for real confidence scoring. Replaces the fake len(contexts)", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L568"}, {"id": "retrieval_tools_rationale_582", "label": "Evaluate how well the answer is grounded in the retrieved contexts. R", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L582"}, {"id": "retrieval_tools_rationale_679", "label": "RAGAS-style evaluation metrics for the quality dashboard. Computes faithful", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L679"}, {"id": "retrieval_tools_rationale_694", "label": "Run all evaluation metrics in parallel. Returns dict with metric scores", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L694"}, {"id": "retrieval_tools_rationale_721", "label": "Measure: Are all claims in the answer supported by the contexts?", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L721"}, {"id": "retrieval_tools_rationale_741", "label": "Measure: Does the answer actually address the question?", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L741"}, {"id": "retrieval_tools_rationale_757", "label": "Measure: Are the retrieved contexts useful for answering the question?", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L757"}, {"id": "retrieval_tools_rationale_781", "label": "Searches entity-level LLM summaries (from EntityEnricher) as a second retri", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L781"}, {"id": "retrieval_tools_rationale_805", "label": "Find entities whose summaries are relevant to the query. Uses fulltex", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L805"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "json", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "hashlib", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L16", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L18", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "retrieval_tools_hybridsearchtool", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L23", "weight": 1.0}, {"source": "retrieval_tools_hybridsearchtool", "target": "retrieval_tools_hybridsearchtool_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L29", "weight": 1.0}, {"source": "retrieval_tools_hybridsearchtool", "target": "retrieval_tools_hybridsearchtool_run", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L38", "weight": 1.0}, {"source": "retrieval_tools_hybridsearchtool", "target": "retrieval_tools_hybridsearchtool_rrf_fuse", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L105", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "retrieval_tools_vectorsearchtool", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L134", "weight": 1.0}, {"source": "retrieval_tools_vectorsearchtool", "target": "retrieval_tools_vectorsearchtool_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L137", "weight": 1.0}, {"source": "retrieval_tools_vectorsearchtool", "target": "retrieval_tools_vectorsearchtool_run", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L143", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "retrieval_tools_communitysummarytool", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L163", "weight": 1.0}, {"source": "retrieval_tools_communitysummarytool", "target": "retrieval_tools_communitysummarytool_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L170", "weight": 1.0}, {"source": "retrieval_tools_communitysummarytool", "target": "retrieval_tools_communitysummarytool_get_redis", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L181", "weight": 1.0}, {"source": "retrieval_tools_communitysummarytool", "target": "retrieval_tools_communitysummarytool_run", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L191", "weight": 1.0}, {"source": "retrieval_tools_communitysummarytool", "target": "retrieval_tools_communitysummarytool_find_relevant_entities", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L238", "weight": 1.0}, {"source": "retrieval_tools_communitysummarytool", "target": "retrieval_tools_communitysummarytool_get_community_summary", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L259", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "retrieval_tools_graphtraversaltool", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L321", "weight": 1.0}, {"source": "retrieval_tools_graphtraversaltool", "target": "retrieval_tools_graphtraversaltool_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L324", "weight": 1.0}, {"source": "retrieval_tools_graphtraversaltool", "target": "retrieval_tools_graphtraversaltool_run", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L330", "weight": 1.0}, {"source": "retrieval_tools_graphtraversaltool", "target": "retrieval_tools_graphtraversaltool_extract_entities_from_query", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L359", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "retrieval_tools_cyphergenerationtool", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L383", "weight": 1.0}, {"source": "retrieval_tools_cyphergenerationtool", "target": "retrieval_tools_cyphergenerationtool_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L389", "weight": 1.0}, {"source": "retrieval_tools_cyphergenerationtool", "target": "retrieval_tools_cyphergenerationtool_run", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L401", "weight": 1.0}, {"source": "retrieval_tools_cyphergenerationtool", "target": "retrieval_tools_cyphergenerationtool_generate_cypher", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L431", "weight": 1.0}, {"source": "retrieval_tools_cyphergenerationtool", "target": "retrieval_tools_cyphergenerationtool_validate_cypher", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L467", "weight": 1.0}, {"source": "retrieval_tools_cyphergenerationtool", "target": "retrieval_tools_cyphergenerationtool_correct_cypher", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L479", "weight": 1.0}, {"source": "retrieval_tools_cyphergenerationtool", "target": "retrieval_tools_cyphergenerationtool_correct_cypher_with_error", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L496", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "retrieval_tools_metadatafiltertool", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L518", "weight": 1.0}, {"source": "retrieval_tools_metadatafiltertool", "target": "retrieval_tools_metadatafiltertool_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L521", "weight": 1.0}, {"source": "retrieval_tools_metadatafiltertool", "target": "retrieval_tools_metadatafiltertool_run", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L526", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "retrieval_tools_llmjudge", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L567", "weight": 1.0}, {"source": "retrieval_tools_llmjudge", "target": "retrieval_tools_llmjudge_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L573", "weight": 1.0}, {"source": "retrieval_tools_llmjudge", "target": "retrieval_tools_llmjudge_score", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L576", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "retrieval_tools_ragevaluator", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L678", "weight": 1.0}, {"source": "retrieval_tools_ragevaluator", "target": "retrieval_tools_ragevaluator_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L684", "weight": 1.0}, {"source": "retrieval_tools_ragevaluator", "target": "retrieval_tools_ragevaluator_evaluate", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L687", "weight": 1.0}, {"source": "retrieval_tools_ragevaluator", "target": "retrieval_tools_ragevaluator_faithfulness", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L720", "weight": 1.0}, {"source": "retrieval_tools_ragevaluator", "target": "retrieval_tools_ragevaluator_answer_relevancy", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L740", "weight": 1.0}, {"source": "retrieval_tools_ragevaluator", "target": "retrieval_tools_ragevaluator_context_precision", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L756", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "target": "retrieval_tools_entitysummarysearchtool", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L780", "weight": 1.0}, {"source": "retrieval_tools_entitysummarysearchtool", "target": "retrieval_tools_entitysummarysearchtool_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L790", "weight": 1.0}, {"source": "retrieval_tools_entitysummarysearchtool", "target": "retrieval_tools_entitysummarysearchtool_run", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L799", "weight": 1.0}, {"source": "retrieval_tools_hybridsearchtool_run", "target": "retrieval_tools_hybridsearchtool_rrf_fuse", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L82", "weight": 1.0}, {"source": "retrieval_tools_communitysummarytool_run", "target": "retrieval_tools_communitysummarytool_find_relevant_entities", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L213", "weight": 1.0}, {"source": "retrieval_tools_communitysummarytool_run", "target": "retrieval_tools_communitysummarytool_get_community_summary", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L225", "weight": 1.0}, {"source": "retrieval_tools_communitysummarytool_get_community_summary", "target": "retrieval_tools_communitysummarytool_get_redis", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L271", "weight": 1.0}, {"source": "retrieval_tools_graphtraversaltool_run", "target": "retrieval_tools_graphtraversaltool_extract_entities_from_query", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L341", "weight": 1.0}, {"source": "retrieval_tools_cyphergenerationtool_run", "target": "retrieval_tools_cyphergenerationtool_generate_cypher", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L406", "weight": 1.0}, {"source": "retrieval_tools_cyphergenerationtool_run", "target": "retrieval_tools_cyphergenerationtool_validate_cypher", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L410", "weight": 1.0}, {"source": "retrieval_tools_cyphergenerationtool_run", "target": "retrieval_tools_cyphergenerationtool_correct_cypher", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L411", "weight": 1.0}, {"source": "retrieval_tools_cyphergenerationtool_run", "target": "retrieval_tools_cyphergenerationtool_correct_cypher_with_error", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L422", "weight": 1.0}, {"source": "retrieval_tools_ragevaluator_evaluate", "target": "retrieval_tools_ragevaluator_faithfulness", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L699", "weight": 1.0}, {"source": "retrieval_tools_ragevaluator_evaluate", "target": "retrieval_tools_ragevaluator_answer_relevancy", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L700", "weight": 1.0}, {"source": "retrieval_tools_ragevaluator_evaluate", "target": "retrieval_tools_ragevaluator_context_precision", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L701", "weight": 1.0}, {"source": "retrieval_tools_rationale_24", "target": "retrieval_tools_hybridsearchtool", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L24", "weight": 1.0}, {"source": "retrieval_tools_rationale_46", "target": "retrieval_tools_hybridsearchtool_run", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L46", "weight": 1.0}, {"source": "retrieval_tools_rationale_113", "target": "retrieval_tools_hybridsearchtool_rrf_fuse", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L113", "weight": 1.0}, {"source": "retrieval_tools_rationale_135", "target": "retrieval_tools_vectorsearchtool", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L135", "weight": 1.0}, {"source": "retrieval_tools_rationale_164", "target": "retrieval_tools_communitysummarytool", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L164", "weight": 1.0}, {"source": "retrieval_tools_rationale_182", "target": "retrieval_tools_communitysummarytool_get_redis", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L182", "weight": 1.0}, {"source": "retrieval_tools_rationale_197", "target": "retrieval_tools_communitysummarytool_run", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L197", "weight": 1.0}, {"source": "retrieval_tools_rationale_239", "target": "retrieval_tools_communitysummarytool_find_relevant_entities", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L239", "weight": 1.0}, {"source": "retrieval_tools_rationale_265", "target": "retrieval_tools_communitysummarytool_get_community_summary", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L265", "weight": 1.0}, {"source": "retrieval_tools_rationale_322", "target": "retrieval_tools_graphtraversaltool", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L322", "weight": 1.0}, {"source": "retrieval_tools_rationale_360", "target": "retrieval_tools_graphtraversaltool_extract_entities_from_query", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L360", "weight": 1.0}, {"source": "retrieval_tools_rationale_384", "target": "retrieval_tools_cyphergenerationtool", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L384", "weight": 1.0}, {"source": "retrieval_tools_rationale_519", "target": "retrieval_tools_metadatafiltertool", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L519", "weight": 1.0}, {"source": "retrieval_tools_rationale_568", "target": "retrieval_tools_llmjudge", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L568", "weight": 1.0}, {"source": "retrieval_tools_rationale_582", "target": "retrieval_tools_llmjudge_score", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L582", "weight": 1.0}, {"source": "retrieval_tools_rationale_679", "target": "retrieval_tools_ragevaluator", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L679", "weight": 1.0}, {"source": "retrieval_tools_rationale_694", "target": "retrieval_tools_ragevaluator_evaluate", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L694", "weight": 1.0}, {"source": "retrieval_tools_rationale_721", "target": "retrieval_tools_ragevaluator_faithfulness", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L721", "weight": 1.0}, {"source": "retrieval_tools_rationale_741", "target": "retrieval_tools_ragevaluator_answer_relevancy", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L741", "weight": 1.0}, {"source": "retrieval_tools_rationale_757", "target": "retrieval_tools_ragevaluator_context_precision", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L757", "weight": 1.0}, {"source": "retrieval_tools_rationale_781", "target": "retrieval_tools_entitysummarysearchtool", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L781", "weight": 1.0}, {"source": "retrieval_tools_rationale_805", "target": "retrieval_tools_entitysummarysearchtool_run", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L805", "weight": 1.0}], "raw_calls": [{"caller_nid": "retrieval_tools_hybridsearchtool_run", "callee": "embed", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L62"}, {"caller_nid": "retrieval_tools_hybridsearchtool_run", "callee": "bm25_search", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L64"}, {"caller_nid": "retrieval_tools_hybridsearchtool_run", "callee": "search", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L65"}, {"caller_nid": "retrieval_tools_hybridsearchtool_run", "callee": "gather", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L72"}, {"caller_nid": "retrieval_tools_hybridsearchtool_run", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L76"}, {"caller_nid": "retrieval_tools_hybridsearchtool_run", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L78"}, {"caller_nid": "retrieval_tools_hybridsearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L93"}, {"caller_nid": "retrieval_tools_hybridsearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L98"}, {"caller_nid": "retrieval_tools_hybridsearchtool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L101"}, {"caller_nid": "retrieval_tools_hybridsearchtool_rrf_fuse", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L119"}, {"caller_nid": "retrieval_tools_hybridsearchtool_rrf_fuse", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L120"}, {"caller_nid": "retrieval_tools_hybridsearchtool_rrf_fuse", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L122"}, {"caller_nid": "retrieval_tools_hybridsearchtool_rrf_fuse", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L124"}, {"caller_nid": "retrieval_tools_hybridsearchtool_rrf_fuse", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L125"}, {"caller_nid": "retrieval_tools_hybridsearchtool_rrf_fuse", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L127"}, {"caller_nid": "retrieval_tools_hybridsearchtool_rrf_fuse", "callee": "sorted", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L129"}, {"caller_nid": "retrieval_tools_hybridsearchtool_rrf_fuse", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L129"}, {"caller_nid": "retrieval_tools_vectorsearchtool_run", "callee": "embed", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L150"}, {"caller_nid": "retrieval_tools_vectorsearchtool_run", "callee": "search", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L151"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_redis", "callee": "from_url", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L186"}, {"caller_nid": "retrieval_tools_communitysummarytool_run", "callee": "get_communities", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L218"}, {"caller_nid": "retrieval_tools_communitysummarytool_run", "callee": "list", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L224"}, {"caller_nid": "retrieval_tools_communitysummarytool_run", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L224"}, {"caller_nid": "retrieval_tools_communitysummarytool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L227"}, {"caller_nid": "retrieval_tools_communitysummarytool_run", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L231"}, {"caller_nid": "retrieval_tools_communitysummarytool_find_relevant_entities", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L254"}, {"caller_nid": "retrieval_tools_communitysummarytool_find_relevant_entities", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L255"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "sorted", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L267"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L267"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "hexdigest", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L268"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "md5", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L268"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "encode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L268"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L268"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L274"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "decode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L276"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L283"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L283"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L284"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L289"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L290"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "chr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L290"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L299"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L300"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "setex", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L305"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "encode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L308"}, {"caller_nid": "retrieval_tools_communitysummarytool_get_community_summary", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L315"}, {"caller_nid": "retrieval_tools_graphtraversaltool_run", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L342"}, {"caller_nid": "retrieval_tools_graphtraversaltool_run", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L345"}, {"caller_nid": "retrieval_tools_graphtraversaltool_run", "callee": "find_path", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L349"}, {"caller_nid": "retrieval_tools_graphtraversaltool_run", "callee": "get_neighbors", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L351"}, {"caller_nid": "retrieval_tools_graphtraversaltool_extract_entities_from_query", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L367"}, {"caller_nid": "retrieval_tools_graphtraversaltool_extract_entities_from_query", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L369"}, {"caller_nid": "retrieval_tools_graphtraversaltool_extract_entities_from_query", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L371"}, {"caller_nid": "retrieval_tools_graphtraversaltool_extract_entities_from_query", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L371"}, {"caller_nid": "retrieval_tools_graphtraversaltool_extract_entities_from_query", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L373"}, {"caller_nid": "retrieval_tools_graphtraversaltool_extract_entities_from_query", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L373"}, {"caller_nid": "retrieval_tools_graphtraversaltool_extract_entities_from_query", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L374"}, {"caller_nid": "retrieval_tools_graphtraversaltool_extract_entities_from_query", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L375"}, {"caller_nid": "retrieval_tools_graphtraversaltool_extract_entities_from_query", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L376"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_run", "callee": "warning", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L403"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L416"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_run", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L421"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_run", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L422"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L424"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_generate_cypher", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L436"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_generate_cypher", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L437"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_generate_cypher", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L455"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_generate_cypher", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L460"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_generate_cypher", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L462"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_generate_cypher", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L462"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_generate_cypher", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L464"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_generate_cypher", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L464"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_generate_cypher", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L465"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_validate_cypher", "callee": "upper", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L470"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_correct_cypher", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L487"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_correct_cypher", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L488"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_correct_cypher", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L490"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_correct_cypher", "callee": "startswith", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L491"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_correct_cypher", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L493"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_correct_cypher", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L494"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_correct_cypher_with_error", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L506"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_correct_cypher_with_error", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L507"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_correct_cypher_with_error", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L509"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_correct_cypher_with_error", "callee": "startswith", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L510"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_correct_cypher_with_error", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L512"}, {"caller_nid": "retrieval_tools_cyphergenerationtool_correct_cypher_with_error", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L513"}, {"caller_nid": "retrieval_tools_metadatafiltertool_run", "callee": "compile", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L534"}, {"caller_nid": "retrieval_tools_metadatafiltertool_run", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L538"}, {"caller_nid": "retrieval_tools_metadatafiltertool_run", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L538"}, {"caller_nid": "retrieval_tools_metadatafiltertool_run", "callee": "match", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L539"}, {"caller_nid": "retrieval_tools_metadatafiltertool_run", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L543"}, {"caller_nid": "retrieval_tools_metadatafiltertool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L544"}, {"caller_nid": "retrieval_tools_metadatafiltertool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L546"}, {"caller_nid": "retrieval_tools_metadatafiltertool_run", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L549"}, {"caller_nid": "retrieval_tools_metadatafiltertool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L559"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L603"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L604"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L604"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L605"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L631"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L636"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L639"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "startswith", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L640"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L642"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L643"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L643"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "float", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L645"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L645"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "int", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L646"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L646"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "int", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L647"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L647"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L658"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L664"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "min", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L666"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L666"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "max", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L666"}, {"caller_nid": "retrieval_tools_llmjudge_score", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L670"}, {"caller_nid": "retrieval_tools_ragevaluator_evaluate", "callee": "gather", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L704"}, {"caller_nid": "retrieval_tools_ragevaluator_evaluate", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L706"}, {"caller_nid": "retrieval_tools_ragevaluator_evaluate", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L707"}, {"caller_nid": "retrieval_tools_ragevaluator_evaluate", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L708"}, {"caller_nid": "retrieval_tools_ragevaluator_faithfulness", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L724"}, {"caller_nid": "retrieval_tools_ragevaluator_faithfulness", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L735"}, {"caller_nid": "retrieval_tools_ragevaluator_faithfulness", "callee": "float", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L736"}, {"caller_nid": "retrieval_tools_ragevaluator_faithfulness", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L736"}, {"caller_nid": "retrieval_tools_ragevaluator_faithfulness", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L736"}, {"caller_nid": "retrieval_tools_ragevaluator_answer_relevancy", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L751"}, {"caller_nid": "retrieval_tools_ragevaluator_answer_relevancy", "callee": "float", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L752"}, {"caller_nid": "retrieval_tools_ragevaluator_answer_relevancy", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L752"}, {"caller_nid": "retrieval_tools_ragevaluator_answer_relevancy", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L752"}, {"caller_nid": "retrieval_tools_ragevaluator_context_precision", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L762"}, {"caller_nid": "retrieval_tools_ragevaluator_context_precision", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L762"}, {"caller_nid": "retrieval_tools_ragevaluator_context_precision", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L772"}, {"caller_nid": "retrieval_tools_ragevaluator_context_precision", "callee": "float", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L773"}, {"caller_nid": "retrieval_tools_ragevaluator_context_precision", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L773"}, {"caller_nid": "retrieval_tools_ragevaluator_context_precision", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L773"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L841"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L843"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L847"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L849"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L853"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "compile", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L861"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L863"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L864"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "match", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L864"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L869"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L871"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L872"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L873"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L881"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L883"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L887"}, {"caller_nid": "retrieval_tools_entitysummarysearchtool_run", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py", "source_location": "L893"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/829f2e149fa14f04ada376e6dd26cb2d609f20737647a704c12ae2086622f5d6.json b/artifacts/graphify-out/cache/ast/829f2e149fa14f04ada376e6dd26cb2d609f20737647a704c12ae2086622f5d6.json new file mode 100644 index 0000000000000000000000000000000000000000..16fa1cb53330e1fd133657d97a2c2a9153aaadc8 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/829f2e149fa14f04ada376e6dd26cb2d609f20737647a704c12ae2086622f5d6.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_ontology_generator_py", "label": "ontology_generator.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L1"}, {"id": "ingestion_ontology_generator_ontologygenerator", "label": "OntologyGenerator", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L15"}, {"id": "ingestion_ontology_generator_ontologygenerator_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L21"}, {"id": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "label": ".generate_initial_ontology()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L25"}, {"id": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "label": ".refine_ontology()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L115"}, {"id": "ingestion_ontology_generator_ontologygenerator_get_extraction_prompt", "label": ".get_extraction_prompt()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L195"}, {"id": "ingestion_ontology_generator_rationale_1", "label": "Ontology generation and evolution LLM-powered automatic ontology discovery with", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L1"}, {"id": "ingestion_ontology_generator_rationale_16", "label": "Generate and refine ontologies from documents Supports versioning and evolu", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L16"}, {"id": "ingestion_ontology_generator_rationale_30", "label": "Generate initial ontology from sample chunks Args:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L30"}, {"id": "ingestion_ontology_generator_rationale_121", "label": "Refine ontology based on new data or human feedback Args:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L121"}, {"id": "ingestion_ontology_generator_rationale_200", "label": "Generate extraction prompt based on ontology schema Args:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L200"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_ontology_generator_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_ontology_generator_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_ontology_generator_py", "target": "json", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_ontology_generator_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_ontology_generator_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_ontology_generator_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_ontology_generator_py", "target": "ingestion_ontology_generator_ontologygenerator", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L15", "weight": 1.0}, {"source": "ingestion_ontology_generator_ontologygenerator", "target": "ingestion_ontology_generator_ontologygenerator_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L21", "weight": 1.0}, {"source": "ingestion_ontology_generator_ontologygenerator", "target": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L25", "weight": 1.0}, {"source": "ingestion_ontology_generator_ontologygenerator", "target": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L115", "weight": 1.0}, {"source": "ingestion_ontology_generator_ontologygenerator", "target": "ingestion_ontology_generator_ontologygenerator_get_extraction_prompt", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L195", "weight": 1.0}, {"source": "ingestion_ontology_generator_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_ontology_generator_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L1", "weight": 1.0}, {"source": "ingestion_ontology_generator_rationale_16", "target": "ingestion_ontology_generator_ontologygenerator", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L16", "weight": 1.0}, {"source": "ingestion_ontology_generator_rationale_30", "target": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L30", "weight": 1.0}, {"source": "ingestion_ontology_generator_rationale_121", "target": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L121", "weight": 1.0}, {"source": "ingestion_ontology_generator_rationale_200", "target": "ingestion_ontology_generator_ontologygenerator_get_extraction_prompt", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L200", "weight": 1.0}], "raw_calls": [{"caller_nid": "ingestion_ontology_generator_ontologygenerator_init", "callee": "create", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L22"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L42"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L76"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L81"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "startswith", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L82"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "startswith", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L84"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "endswith", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L86"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L88"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L90"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "OntologySchema", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L92"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L94"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L95"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L96"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L97"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L97"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "OntologySchema", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L106"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L111"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L111"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L133"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L137"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L138"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L164"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L167"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L169"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L169"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L171"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L171"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L172"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L174"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "float", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L177"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L177"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "OntologySchema", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L180"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L182"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L183"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L184"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L185"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_refine_ontology", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L185"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_get_extraction_prompt", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L213"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_get_extraction_prompt", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L219"}, {"caller_nid": "ingestion_ontology_generator_ontologygenerator_get_extraction_prompt", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py", "source_location": "L220"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/8455e08477551895f72f86bc6cd29ed62880b9faabb3c3c21406bfdbf6e7c2d7.json b/artifacts/graphify-out/cache/ast/8455e08477551895f72f86bc6cd29ed62880b9faabb3c3c21406bfdbf6e7c2d7.json new file mode 100644 index 0000000000000000000000000000000000000000..433990d37391dcf7bdf2a0e2bb1e8da2fd780b08 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/8455e08477551895f72f86bc6cd29ed62880b9faabb3c3c21406bfdbf6e7c2d7.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "label": "abstractions.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L1"}, {"id": "core_abstractions_graphstore", "label": "GraphStore", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L11"}, {"id": "abc", "label": "ABC", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "core_abstractions_connect", "label": "connect()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L15"}, {"id": "core_abstractions_disconnect", "label": "disconnect()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L20"}, {"id": "core_abstractions_create_node", "label": "create_node()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L25"}, {"id": "core_abstractions_create_relationship", "label": "create_relationship()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L38"}, {"id": "core_abstractions_execute_query", "label": "execute_query()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L51"}, {"id": "core_abstractions_find_path", "label": "find_path()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L65"}, {"id": "core_abstractions_get_neighbors", "label": "get_neighbors()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L80"}, {"id": "core_abstractions_merge_entities", "label": "merge_entities()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L94"}, {"id": "core_abstractions_vectorstore", "label": "VectorStore", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L108"}, {"id": "core_abstractions_add_vectors", "label": "add_vectors()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L122"}, {"id": "core_abstractions_search", "label": "search()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L142"}, {"id": "core_abstractions_delete_vectors", "label": "delete_vectors()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L162"}, {"id": "core_abstractions_llmprovider", "label": "LLMProvider", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L172"}, {"id": "core_abstractions_complete", "label": "complete()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L176"}, {"id": "core_abstractions_complete_structured", "label": "complete_structured()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L198"}, {"id": "core_abstractions_embed", "label": "embed()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L218"}, {"id": "core_abstractions_embed_batch", "label": "embed_batch()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L231"}, {"id": "core_abstractions_entityresolver", "label": "EntityResolver", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L244"}, {"id": "core_abstractions_resolve", "label": "resolve()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L248"}, {"id": "core_abstractions_compute_similarity", "label": "compute_similarity()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L266"}, {"id": "core_abstractions_rationale_1", "label": "Abstract base classes for pluggable components Ensures no vendor lock-in and ea", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L1"}, {"id": "core_abstractions_rationale_12", "label": "Abstract interface for graph database operations", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L12"}, {"id": "core_abstractions_rationale_16", "label": "Establish connection to graph database", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L16"}, {"id": "core_abstractions_rationale_21", "label": "Close connection to graph database", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L21"}, {"id": "core_abstractions_rationale_26", "label": "Create a node in the graph Args: entity: Entity", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L26"}, {"id": "core_abstractions_rationale_39", "label": "Create a relationship between nodes Args: relati", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L39"}, {"id": "core_abstractions_rationale_52", "label": "Execute a raw query (Cypher for Neo4j, Gremlin for Neptune) A", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L52"}, {"id": "core_abstractions_rationale_66", "label": "Find paths between two entities Args: source: So", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L66"}, {"id": "core_abstractions_rationale_81", "label": "Get neighboring entities Args: entity_name: Enti", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L81"}, {"id": "core_abstractions_rationale_95", "label": "Merge duplicate entities Args: entity1_id: First", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L95"}, {"id": "core_abstractions_rationale_109", "label": "Abstract interface for vector database operations", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L109"}, {"id": "core_abstractions_rationale_113", "label": "Establish connection to vector store", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L113"}, {"id": "core_abstractions_rationale_118", "label": "Close connection to vector store", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L118"}, {"id": "core_abstractions_rationale_128", "label": "Add vectors to the store Args: vectors: List of", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L128"}, {"id": "core_abstractions_rationale_148", "label": "Search for similar vectors Args: query_vector: Q", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L148"}, {"id": "core_abstractions_rationale_163", "label": "Delete vectors by ID Args: ids: Vector IDs to de", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L163"}, {"id": "core_abstractions_rationale_173", "label": "Abstract interface for LLM operations", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L173"}, {"id": "core_abstractions_rationale_183", "label": "Generate completion from prompt Args: prompt: Us", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L183"}, {"id": "core_abstractions_rationale_204", "label": "Generate structured output conforming to a model Args:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L204"}, {"id": "core_abstractions_rationale_219", "label": "Generate embedding for text Args: text: Text to", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L219"}, {"id": "core_abstractions_rationale_232", "label": "Generate embeddings for multiple texts Args: tex", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L232"}, {"id": "core_abstractions_rationale_245", "label": "Abstract interface for entity resolution", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L245"}, {"id": "core_abstractions_rationale_253", "label": "Resolve and deduplicate entities Args: entities:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L253"}, {"id": "core_abstractions_rationale_267", "label": "Compute similarity between two entities Args: en", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L267"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "abc", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_graphstore", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L11", "weight": 1.0}, {"source": "core_abstractions_graphstore", "target": "abc", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_connect", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_disconnect", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L20", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_create_node", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L25", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_create_relationship", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L38", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_execute_query", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L51", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_find_path", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L65", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_get_neighbors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L80", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_merge_entities", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L94", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_vectorstore", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L108", "weight": 1.0}, {"source": "core_abstractions_vectorstore", "target": "abc", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L108", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_connect", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L112", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_disconnect", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L117", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_add_vectors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L122", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_search", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L142", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_delete_vectors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L162", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_llmprovider", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L172", "weight": 1.0}, {"source": "core_abstractions_llmprovider", "target": "abc", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L172", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_complete", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L176", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_complete_structured", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L198", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_embed", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L218", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_embed_batch", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L231", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_entityresolver", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L244", "weight": 1.0}, {"source": "core_abstractions_entityresolver", "target": "abc", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L244", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_resolve", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L248", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "target": "core_abstractions_compute_similarity", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L266", "weight": 1.0}, {"source": "core_abstractions_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L1", "weight": 1.0}, {"source": "core_abstractions_rationale_12", "target": "core_abstractions_graphstore", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L12", "weight": 1.0}, {"source": "core_abstractions_rationale_16", "target": "core_abstractions_graphstore_connect", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L16", "weight": 1.0}, {"source": "core_abstractions_rationale_21", "target": "core_abstractions_graphstore_disconnect", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L21", "weight": 1.0}, {"source": "core_abstractions_rationale_26", "target": "core_abstractions_graphstore_create_node", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L26", "weight": 1.0}, {"source": "core_abstractions_rationale_39", "target": "core_abstractions_graphstore_create_relationship", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L39", "weight": 1.0}, {"source": "core_abstractions_rationale_52", "target": "core_abstractions_graphstore_execute_query", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L52", "weight": 1.0}, {"source": "core_abstractions_rationale_66", "target": "core_abstractions_graphstore_find_path", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L66", "weight": 1.0}, {"source": "core_abstractions_rationale_81", "target": "core_abstractions_graphstore_get_neighbors", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L81", "weight": 1.0}, {"source": "core_abstractions_rationale_95", "target": "core_abstractions_graphstore_merge_entities", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L95", "weight": 1.0}, {"source": "core_abstractions_rationale_109", "target": "core_abstractions_vectorstore", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L109", "weight": 1.0}, {"source": "core_abstractions_rationale_113", "target": "core_abstractions_vectorstore_connect", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L113", "weight": 1.0}, {"source": "core_abstractions_rationale_118", "target": "core_abstractions_vectorstore_disconnect", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L118", "weight": 1.0}, {"source": "core_abstractions_rationale_128", "target": "core_abstractions_vectorstore_add_vectors", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L128", "weight": 1.0}, {"source": "core_abstractions_rationale_148", "target": "core_abstractions_vectorstore_search", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L148", "weight": 1.0}, {"source": "core_abstractions_rationale_163", "target": "core_abstractions_vectorstore_delete_vectors", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L163", "weight": 1.0}, {"source": "core_abstractions_rationale_173", "target": "core_abstractions_llmprovider", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L173", "weight": 1.0}, {"source": "core_abstractions_rationale_183", "target": "core_abstractions_llmprovider_complete", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L183", "weight": 1.0}, {"source": "core_abstractions_rationale_204", "target": "core_abstractions_llmprovider_complete_structured", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L204", "weight": 1.0}, {"source": "core_abstractions_rationale_219", "target": "core_abstractions_llmprovider_embed", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L219", "weight": 1.0}, {"source": "core_abstractions_rationale_232", "target": "core_abstractions_llmprovider_embed_batch", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L232", "weight": 1.0}, {"source": "core_abstractions_rationale_245", "target": "core_abstractions_entityresolver", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L245", "weight": 1.0}, {"source": "core_abstractions_rationale_253", "target": "core_abstractions_entityresolver_resolve", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L253", "weight": 1.0}, {"source": "core_abstractions_rationale_267", "target": "core_abstractions_entityresolver_compute_similarity", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py", "source_location": "L267", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/87fb69946aa0421030f16a526639f6a75489a8724de98f1d82a4798737a4bd00.json b/artifacts/graphify-out/cache/ast/87fb69946aa0421030f16a526639f6a75489a8724de98f1d82a4798737a4bd00.json new file mode 100644 index 0000000000000000000000000000000000000000..660253bce81fab2fda9659791faa21b8b38fec65 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/87fb69946aa0421030f16a526639f6a75489a8724de98f1d82a4798737a4bd00.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "label": "agent.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L1"}, {"id": "retrieval_agent_agentretrievalsystem", "label": "AgentRetrievalSystem", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L38"}, {"id": "retrieval_agent_agentretrievalsystem_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L50"}, {"id": "retrieval_agent_agentretrievalsystem_cache_get", "label": "._cache_get()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L78"}, {"id": "retrieval_agent_agentretrievalsystem_cache_set", "label": "._cache_set()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L99"}, {"id": "retrieval_agent_agentretrievalsystem_build_graph", "label": "._build_graph()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L112"}, {"id": "retrieval_agent_agentretrievalsystem_query", "label": ".query()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L179"}, {"id": "retrieval_agent_agentretrievalsystem_astream", "label": ".astream()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L262"}, {"id": "retrieval_agent_agentretrievalsystem_make_initial_state", "label": "._make_initial_state()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L283"}, {"id": "retrieval_agent_agentretrievalsystem_decompose_query", "label": "._decompose_query()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L308"}, {"id": "retrieval_agent_agentretrievalsystem_route_query", "label": "._route_query()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L340"}, {"id": "retrieval_agent_agentretrievalsystem_should_continue", "label": "._should_continue()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L414"}, {"id": "retrieval_agent_agentretrievalsystem_hybrid_search", "label": "._hybrid_search()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L431"}, {"id": "retrieval_agent_agentretrievalsystem_graph_traversal", "label": "._graph_traversal()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L450"}, {"id": "retrieval_agent_agentretrievalsystem_cypher_query", "label": "._cypher_query()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L462"}, {"id": "retrieval_agent_agentretrievalsystem_metadata_filter", "label": "._metadata_filter()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L474"}, {"id": "retrieval_agent_agentretrievalsystem_community_search", "label": "._community_search()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L511"}, {"id": "retrieval_agent_agentretrievalsystem_entity_summary_search", "label": "._entity_summary_search()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L524"}, {"id": "retrieval_agent_agentretrievalsystem_hippo_search", "label": "._hippo_search()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L539"}, {"id": "retrieval_agent_agentretrievalsystem_drift_expand", "label": "._drift_expand()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L552"}, {"id": "retrieval_agent_agentretrievalsystem_got_explore", "label": "._got_explore()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L596"}, {"id": "retrieval_agent_agentretrievalsystem_score_tool_results", "label": "._score_tool_results()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L638"}, {"id": "retrieval_agent_agentretrievalsystem_synthesize_response", "label": "._synthesize_response()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L663"}, {"id": "retrieval_agent_agentretrievalsystem_format_context", "label": "._format_context()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L702"}, {"id": "retrieval_agent_agentretrievalsystem_fallback_search", "label": "._fallback_search()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L713"}, {"id": "retrieval_agent_rationale_39", "label": "Agentic retrieval system that: 1. Checks semantic cache (Gap #8) 2. De", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L39"}, {"id": "retrieval_agent_rationale_79", "label": "Check semantic cache for a query result", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L79"}, {"id": "retrieval_agent_rationale_100", "label": "Store query result in semantic cache", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L100"}, {"id": "retrieval_agent_rationale_113", "label": "Build LangGraph workflow with all new nodes", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L113"}, {"id": "retrieval_agent_rationale_270", "label": "Stream partial states after each graph node for SSE.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L270"}, {"id": "retrieval_agent_rationale_432", "label": "Gap #1 \u2014 Hybrid BM25+Vector with RRF", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L432"}, {"id": "retrieval_agent_rationale_512", "label": "Gap #2 \u2014 LazyGraphRAG community summary search", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L512"}, {"id": "retrieval_agent_rationale_525", "label": "MiroFish \u2014 Entity profile summary search via EntitySummarySearchTool", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L525"}, {"id": "retrieval_agent_rationale_540", "label": "HippoRAG Personalized PageRank search", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L540"}, {"id": "retrieval_agent_rationale_553", "label": "Gap #3 \u2014 DRIFT iterative expansion. Generates follow-up queries based o", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L553"}, {"id": "retrieval_agent_rationale_597", "label": "Gap #6 \u2014 Graph-of-Thought: run all retrieval strategies in parallel, sc", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L597"}, {"id": "retrieval_agent_rationale_643", "label": "Quick scoring of how relevant tool results are for a query", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L643"}, {"id": "retrieval_agent_rationale_720", "label": "Fallback on timeout \u2014 use hybrid search directly", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L720"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "typing_extensions", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "time", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "json", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L16", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "hashlib", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "langgraph_graph", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_tools_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L21", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_hippo_tool_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L31", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L32", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L33", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L34", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L35", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "target": "retrieval_agent_agentretrievalsystem", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L38", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L50", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_cache_get", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L78", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_cache_set", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L99", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_build_graph", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L112", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_query", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L179", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_astream", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L262", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_make_initial_state", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L283", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_decompose_query", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L308", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_route_query", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L340", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_should_continue", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L414", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_hybrid_search", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L431", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_graph_traversal", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L450", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_cypher_query", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L462", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_metadata_filter", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L474", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_community_search", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L511", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_entity_summary_search", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L524", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_hippo_search", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L539", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_drift_expand", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L552", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_got_explore", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L596", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_score_tool_results", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L638", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_synthesize_response", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L663", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_format_context", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L702", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem", "target": "retrieval_agent_agentretrievalsystem_fallback_search", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L713", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem_init", "target": "retrieval_agent_agentretrievalsystem_build_graph", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L74", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem_query", "target": "retrieval_agent_agentretrievalsystem_cache_get", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L192", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem_query", "target": "retrieval_agent_agentretrievalsystem_make_initial_state", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L209", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem_query", "target": "retrieval_agent_agentretrievalsystem_fallback_search", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L217", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem_query", "target": "retrieval_agent_agentretrievalsystem_cache_set", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L253", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem_astream", "target": "retrieval_agent_agentretrievalsystem_make_initial_state", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L271", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem_astream", "target": "retrieval_agent_agentretrievalsystem_fallback_search", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L278", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem_got_explore", "target": "retrieval_agent_agentretrievalsystem_score_tool_results", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L620", "weight": 1.0}, {"source": "retrieval_agent_agentretrievalsystem_synthesize_response", "target": "retrieval_agent_agentretrievalsystem_format_context", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L673", "weight": 1.0}, {"source": "retrieval_agent_rationale_39", "target": "retrieval_agent_agentretrievalsystem", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L39", "weight": 1.0}, {"source": "retrieval_agent_rationale_79", "target": "retrieval_agent_agentretrievalsystem_cache_get", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L79", "weight": 1.0}, {"source": "retrieval_agent_rationale_100", "target": "retrieval_agent_agentretrievalsystem_cache_set", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L100", "weight": 1.0}, {"source": "retrieval_agent_rationale_113", "target": "retrieval_agent_agentretrievalsystem_build_graph", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L113", "weight": 1.0}, {"source": "retrieval_agent_rationale_270", "target": "retrieval_agent_agentretrievalsystem_astream", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L270", "weight": 1.0}, {"source": "retrieval_agent_rationale_432", "target": "retrieval_agent_agentretrievalsystem_hybrid_search", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L432", "weight": 1.0}, {"source": "retrieval_agent_rationale_512", "target": "retrieval_agent_agentretrievalsystem_community_search", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L512", "weight": 1.0}, {"source": "retrieval_agent_rationale_525", "target": "retrieval_agent_agentretrievalsystem_entity_summary_search", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L525", "weight": 1.0}, {"source": "retrieval_agent_rationale_540", "target": "retrieval_agent_agentretrievalsystem_hippo_search", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L540", "weight": 1.0}, {"source": "retrieval_agent_rationale_553", "target": "retrieval_agent_agentretrievalsystem_drift_expand", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L553", "weight": 1.0}, {"source": "retrieval_agent_rationale_597", "target": "retrieval_agent_agentretrievalsystem_got_explore", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L597", "weight": 1.0}, {"source": "retrieval_agent_rationale_643", "target": "retrieval_agent_agentretrievalsystem_score_tool_results", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L643", "weight": 1.0}, {"source": "retrieval_agent_rationale_720", "target": "retrieval_agent_agentretrievalsystem_fallback_search", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L720", "weight": 1.0}], "raw_calls": [{"caller_nid": "retrieval_agent_agentretrievalsystem_init", "callee": "UnifiedLLMProvider", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L57"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_init", "callee": "HybridSearchTool", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L61"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_init", "callee": "VectorSearchTool", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L62"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_init", "callee": "GraphTraversalTool", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L63"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_init", "callee": "CypherGenerationTool", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L64"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_init", "callee": "MetadataFilterTool", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L65"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_init", "callee": "CommunitySummaryTool", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L66"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_init", "callee": "EntitySummarySearchTool", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L67"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_init", "callee": "HippoRAGTool", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L68"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_init", "callee": "LLMJudge", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L69"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_cache_get", "callee": "embed", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L83"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_cache_get", "callee": "get_semantic_cache", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L87"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_cache_get", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L96"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_cache_set", "callee": "embed", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L104"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_cache_set", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L105"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_cache_set", "callee": "set_semantic_cache", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L106"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_cache_set", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L108"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "StateGraph", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L130"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L132"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L133"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L134"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L135"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L136"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L137"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L138"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L139"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L140"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L141"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L142"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L143"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "set_entry_point", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L145"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_edge", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L146"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_conditional_edges", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L147"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_edge", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L164"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_edge", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L165"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_edge", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L166"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_edge", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L167"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_edge", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L168"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_edge", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L169"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_edge", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L170"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_edge", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L171"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_edge", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L172"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "add_edge", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L173"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_build_graph", "callee": "compile", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L175"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "time", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L188"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L195"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "time", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L196"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "QueryResult", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L197"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L198"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L199"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L200"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L201"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "wait_for", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L212"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "ainvoke", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L213"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "time", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L219"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L223"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L223"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "score", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L224"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "ConfidenceJudgment", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L229"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L238"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "QueryResult", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L240"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L241"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L242"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L243"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L248"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L249"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L249"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_astream", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L275"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_decompose_query", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L323"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_decompose_query", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L326"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_decompose_query", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L329"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_decompose_query", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L329"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_decompose_query", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L330"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_decompose_query", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L330"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_decompose_query", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L331"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_decompose_query", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L337"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_decompose_query", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L337"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L341"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L342"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L344"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L349"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L361"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L363"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "any", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L369"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L369"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L371"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "any", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L379"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L379"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L381"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L402"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L403"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L403"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L403"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_route_query", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L409"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_should_continue", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L415"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_should_continue", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L416"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_should_continue", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L418"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_should_continue", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L421"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_should_continue", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L422"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_should_continue", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L423"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_should_continue", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L423"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_should_continue", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L427"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_hybrid_search", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L435"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_hybrid_search", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L436"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_hybrid_search", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L438"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_hybrid_search", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L445"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_hybrid_search", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L447"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_hybrid_search", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L447"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_graph_traversal", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L453"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_graph_traversal", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L455"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_graph_traversal", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L457"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_graph_traversal", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L459"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_graph_traversal", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L459"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_cypher_query", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L465"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_cypher_query", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L467"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_cypher_query", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L469"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_cypher_query", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L471"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_cypher_query", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L471"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_metadata_filter", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L477"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_metadata_filter", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L489"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_metadata_filter", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L491"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_metadata_filter", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L494"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_metadata_filter", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L494"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_metadata_filter", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L495"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_metadata_filter", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L495"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_metadata_filter", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L501"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_metadata_filter", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L502"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_metadata_filter", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L504"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_metadata_filter", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L506"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_metadata_filter", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L508"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_metadata_filter", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L508"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_community_search", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L515"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_community_search", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L517"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_community_search", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L519"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_community_search", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L521"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_community_search", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L521"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_entity_summary_search", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L528"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_entity_summary_search", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L530"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_entity_summary_search", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L532"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_entity_summary_search", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L534"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_entity_summary_search", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L535"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_hippo_search", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L543"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_hippo_search", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L545"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_hippo_search", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L547"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_hippo_search", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L549"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_hippo_search", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L549"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L557"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L561"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L562"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L577"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L578"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L581"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L581"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L582"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L582"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L583"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L584"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L587"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L588"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_drift_expand", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L591"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L603"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L604"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L607"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L608"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L609"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L610"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "gather", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L614"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "zip", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L617"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L618"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L621"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "sort", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L624"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L628"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L629"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L631"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L633"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L634"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_got_explore", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L634"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_score_tool_results", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L647"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_score_tool_results", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L647"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_score_tool_results", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L648"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_score_tool_results", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L658"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_score_tool_results", "callee": "float", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L659"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_score_tool_results", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L659"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_score_tool_results", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L659"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_synthesize_response", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L672"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_synthesize_response", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L673"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_synthesize_response", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L674"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_synthesize_response", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L690"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_synthesize_response", "callee": "min", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L698"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_synthesize_response", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L698"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_synthesize_response", "callee": "max", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L698"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_synthesize_response", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L699"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_format_context", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L704"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_format_context", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L707"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_format_context", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L708"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_format_context", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L708"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_format_context", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L708"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_format_context", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L711"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_fallback_search", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L721"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_fallback_search", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L724"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_fallback_search", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L724"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_fallback_search", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L724"}, {"caller_nid": "retrieval_agent_agentretrievalsystem_fallback_search", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py", "source_location": "L726"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/8ced0fd1d0c2b9f51136739f9c0ba474ff348e1d51fab5b83da5e8f676a61224.json b/artifacts/graphify-out/cache/ast/8ced0fd1d0c2b9f51136739f9c0ba474ff348e1d51fab5b83da5e8f676a61224.json new file mode 100644 index 0000000000000000000000000000000000000000..a8c75c2759a7b3550093c3357cf8cb1c6f5c9ed8 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/8ced0fd1d0c2b9f51136739f9c0ba474ff348e1d51fab5b83da5e8f676a61224.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "label": "graph_memory_updater.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L1"}, {"id": "services_graph_memory_updater_graphupdateresult", "label": "GraphUpdateResult", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L22"}, {"id": "basemodel", "label": "BaseModel", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "services_graph_memory_updater_graphmemoryupdater", "label": "GraphMemoryUpdater", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L32"}, {"id": "services_graph_memory_updater_graphmemoryupdater_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L41"}, {"id": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "label": ".update_from_text()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L52"}, {"id": "services_graph_memory_updater_graphmemoryupdater_is_fact_assertion", "label": ".is_fact_assertion()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L173"}, {"id": "services_graph_memory_updater_graphmemoryupdater_get_extractor", "label": "._get_extractor()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L192"}, {"id": "services_graph_memory_updater_rationale_1", "label": "GraphMemoryUpdater: Writable Live Graph Accepts raw text snippets and merges ne", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L1"}, {"id": "services_graph_memory_updater_rationale_23", "label": "Result from a live graph update operation", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L23"}, {"id": "services_graph_memory_updater_rationale_33", "label": "Turns the static knowledge graph into a living, writable store. Usage:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L33"}, {"id": "services_graph_memory_updater_rationale_59", "label": "Extract entities/relationships from text and MERGE them into Neo4j. A", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L59"}, {"id": "services_graph_memory_updater_rationale_174", "label": "Quick LLM classifier: does this text assert a new fact? Used to decide", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L174"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "target": "uuid", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "target": "pydantic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L16", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_extractor_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L18", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "target": "services_graph_memory_updater_graphupdateresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L22", "weight": 1.0}, {"source": "services_graph_memory_updater_graphupdateresult", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L22", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "target": "services_graph_memory_updater_graphmemoryupdater", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L32", "weight": 1.0}, {"source": "services_graph_memory_updater_graphmemoryupdater", "target": "services_graph_memory_updater_graphmemoryupdater_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L41", "weight": 1.0}, {"source": "services_graph_memory_updater_graphmemoryupdater", "target": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L52", "weight": 1.0}, {"source": "services_graph_memory_updater_graphmemoryupdater", "target": "services_graph_memory_updater_graphmemoryupdater_is_fact_assertion", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L173", "weight": 1.0}, {"source": "services_graph_memory_updater_graphmemoryupdater", "target": "services_graph_memory_updater_graphmemoryupdater_get_extractor", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L192", "weight": 1.0}, {"source": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "target": "services_graph_memory_updater_graphupdateresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L76", "weight": 1.0}, {"source": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "target": "services_graph_memory_updater_graphmemoryupdater_get_extractor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L106", "weight": 1.0}, {"source": "services_graph_memory_updater_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L1", "weight": 1.0}, {"source": "services_graph_memory_updater_rationale_23", "target": "services_graph_memory_updater_graphupdateresult", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L23", "weight": 1.0}, {"source": "services_graph_memory_updater_rationale_33", "target": "services_graph_memory_updater_graphmemoryupdater", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L33", "weight": 1.0}, {"source": "services_graph_memory_updater_rationale_59", "target": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L59", "weight": 1.0}, {"source": "services_graph_memory_updater_rationale_174", "target": "services_graph_memory_updater_graphmemoryupdater_is_fact_assertion", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L174", "weight": 1.0}], "raw_calls": [{"caller_nid": "services_graph_memory_updater_graphmemoryupdater_init", "callee": "create", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L47"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L75"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L78"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L78"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "callee": "load_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L82"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "callee": "OntologySchema", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L85"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "callee": "Chunk", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L97"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L98"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "callee": "uuid4", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L98"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "callee": "extract_from_chunk", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L108"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L125"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "callee": "create_node", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L131"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L139"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_update_from_text", "callee": "create_relationship", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L157"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_is_fact_assertion", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L185"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_is_fact_assertion", "callee": "startswith", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L186"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_is_fact_assertion", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L186"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_is_fact_assertion", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L186"}, {"caller_nid": "services_graph_memory_updater_graphmemoryupdater_get_extractor", "callee": "KnowledgeExtractor", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py", "source_location": "L194"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/9b68e9be526acea450c7e20ff080a47f75933dd4cccc2babe237b2a9549c8d9c.json b/artifacts/graphify-out/cache/ast/9b68e9be526acea450c7e20ff080a47f75933dd4cccc2babe237b2a9549c8d9c.json new file mode 100644 index 0000000000000000000000000000000000000000..8c83abcf5673013704feeebe7cfad2883873a9a5 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/9b68e9be526acea450c7e20ff080a47f75933dd4cccc2babe237b2a9549c8d9c.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_init_py", "label": "__init__.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\__init__.py", "source_location": "L1"}, {"id": "core_init_rationale_1", "label": "Core module initialization", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\__init__.py", "source_location": "L1"}], "edges": [{"source": "core_init_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_init_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\__init__.py", "source_location": "L1", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/9c082784ea9fa53279ef999253bbb4cc32606dc81f75b44a06be27a8e309dd76.json b/artifacts/graphify-out/cache/ast/9c082784ea9fa53279ef999253bbb4cc32606dc81f75b44a06be27a8e309dd76.json new file mode 100644 index 0000000000000000000000000000000000000000..29cf06b8eaffdb3e06bf748cdc27ec067256b950 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/9c082784ea9fa53279ef999253bbb4cc32606dc81f75b44a06be27a8e309dd76.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_main_py", "label": "main.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\main.py", "source_location": "L1"}, {"id": "graph_rag_service_main_main", "label": "main()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\main.py", "source_location": "L11"}, {"id": "graph_rag_service_main_rationale_1", "label": "Main entry point for the Graph RAG Service", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\main.py", "source_location": "L1"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_main_py", "target": "uvicorn", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\main.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_main_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_server_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\main.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_main_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\main.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_main_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\main.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_main_py", "target": "graph_rag_service_main_main", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\main.py", "source_location": "L11", "weight": 1.0}, {"source": "graph_rag_service_main_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_main_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\main.py", "source_location": "L1", "weight": 1.0}], "raw_calls": [{"caller_nid": "graph_rag_service_main_main", "callee": "setup_observability", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\main.py", "source_location": "L15"}, {"caller_nid": "graph_rag_service_main_main", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\main.py", "source_location": "L18"}, {"caller_nid": "graph_rag_service_main_main", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\main.py", "source_location": "L22"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/9ca5ad3759dfd59c7e8fcb3f1d7436c7fc3b1fd3c3dc2b495b782529c1a1e681.json b/artifacts/graphify-out/cache/ast/9ca5ad3759dfd59c7e8fcb3f1d7436c7fc3b1fd3c3dc2b495b782529c1a1e681.json new file mode 100644 index 0000000000000000000000000000000000000000..0a8624cf4f0b310fb33be4df4ded5ada502101d1 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/9ca5ad3759dfd59c7e8fcb3f1d7436c7fc3b1fd3c3dc2b495b782529c1a1e681.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "label": "tracing.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L1"}, {"id": "observability_tracing_setup_observability", "label": "setup_observability()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L27"}, {"id": "observability_tracing_get_tracer", "label": "get_tracer()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L70"}, {"id": "observability_tracing_get_meter", "label": "get_meter()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L75"}, {"id": "observability_tracing_rationale_1", "label": "OpenTelemetry instrumentation for observability Provides tracing, metrics, and", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L1"}, {"id": "observability_tracing_rationale_28", "label": "Setup OpenTelemetry observability Args: app: FastAPI applica", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L28"}, {"id": "observability_tracing_rationale_71", "label": "Get tracer for instrumentation", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L71"}, {"id": "observability_tracing_rationale_76", "label": "Get meter for metrics", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L76"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "target": "opentelemetry", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "target": "opentelemetry_sdk_trace", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "target": "opentelemetry_sdk_trace_export", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "target": "opentelemetry_sdk_metrics", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "target": "opentelemetry_sdk_metrics_export", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "target": "opentelemetry_sdk_resources", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "target": "opentelemetry_instrumentation_fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L16", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "target": "observability_tracing_setup_observability", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L27", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "target": "observability_tracing_get_tracer", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L70", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "target": "observability_tracing_get_meter", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L75", "weight": 1.0}, {"source": "observability_tracing_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_observability_tracing_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L1", "weight": 1.0}, {"source": "observability_tracing_rationale_28", "target": "observability_tracing_setup_observability", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L28", "weight": 1.0}, {"source": "observability_tracing_rationale_71", "target": "observability_tracing_get_tracer", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L71", "weight": 1.0}, {"source": "observability_tracing_rationale_76", "target": "observability_tracing_get_meter", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L76", "weight": 1.0}], "raw_calls": [{"caller_nid": "observability_tracing_setup_observability", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L36"}, {"caller_nid": "observability_tracing_setup_observability", "callee": "create", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L40"}, {"caller_nid": "observability_tracing_setup_observability", "callee": "TracerProvider", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L48"}, {"caller_nid": "observability_tracing_setup_observability", "callee": "set_tracer_provider", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L50"}, {"caller_nid": "observability_tracing_setup_observability", "callee": "instrument_app", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L54"}, {"caller_nid": "observability_tracing_setup_observability", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L56"}, {"caller_nid": "observability_tracing_setup_observability", "callee": "MeterProvider", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L61"}, {"caller_nid": "observability_tracing_setup_observability", "callee": "set_meter_provider", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L65"}, {"caller_nid": "observability_tracing_setup_observability", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py", "source_location": "L67"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/9f64b9859d4782454ed4fc093f936357e793a7b227b1ce42bb34e481912276e8.json b/artifacts/graphify-out/cache/ast/9f64b9859d4782454ed4fc093f936357e793a7b227b1ce42bb34e481912276e8.json new file mode 100644 index 0000000000000000000000000000000000000000..471ea3438007f9ab5c147ced1ddc487ca0c97882 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/9f64b9859d4782454ed4fc093f936357e793a7b227b1ce42bb34e481912276e8.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "label": "graph.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L1"}, {"id": "routers_graph_get_graph_visualization", "label": "get_graph_visualization()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L19"}, {"id": "routers_graph_assign_communities", "label": "assign_communities()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L110"}, {"id": "routers_graph_list_communities", "label": "list_communities()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L126"}, {"id": "routers_graph_export_graph", "label": "export_graph()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L149"}, {"id": "routers_graph_update_graph_from_text", "label": "update_graph_from_text()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L228"}, {"id": "routers_graph_rationale_24", "label": "Get graph data for visualization", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L24"}, {"id": "routers_graph_rationale_113", "label": "Detect and assign community IDs to all entities using connected-components (WCC)", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L113"}, {"id": "routers_graph_rationale_130", "label": "List top communities with entity counts", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L130"}, {"id": "routers_graph_rationale_154", "label": "Export the knowledge graph in multiple formats. Supported: json, cypher, gr", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L154"}, {"id": "routers_graph_rationale_232", "label": "Merge raw text directly into the live knowledge graph. Entities and relat", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L232"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "redis", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "routers_graph_get_graph_visualization", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "routers_graph_assign_communities", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L110", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "routers_graph_list_communities", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L126", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "routers_graph_export_graph", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L149", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_graph_py", "target": "routers_graph_update_graph_from_text", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L228", "weight": 1.0}, {"source": "routers_graph_rationale_24", "target": "routers_graph_get_graph_visualization", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L24", "weight": 1.0}, {"source": "routers_graph_rationale_113", "target": "routers_graph_assign_communities", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L113", "weight": 1.0}, {"source": "routers_graph_rationale_130", "target": "routers_graph_list_communities", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L130", "weight": 1.0}, {"source": "routers_graph_rationale_154", "target": "routers_graph_export_graph", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L154", "weight": 1.0}, {"source": "routers_graph_rationale_232", "target": "routers_graph_update_graph_from_text", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L232", "weight": 1.0}], "raw_calls": [{"caller_nid": "routers_graph_get_graph_visualization", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L38"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L48"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "GraphVisualizationResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L52"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "GraphNode", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L84"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L85"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L86"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L87"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L88"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "_parse_props", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L89"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L89"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L91"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "GraphEdge", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L95"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L96"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L97"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L98"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L100"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L100"}, {"caller_nid": "routers_graph_get_graph_visualization", "callee": "GraphVisualizationResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L103"}, {"caller_nid": "routers_graph_assign_communities", "callee": "assign_community_ids", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L117"}, {"caller_nid": "routers_graph_assign_communities", "callee": "CommunityAssignResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L118"}, {"caller_nid": "routers_graph_list_communities", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L141"}, {"caller_nid": "routers_graph_list_communities", "callee": "JSONResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L142"}, {"caller_nid": "routers_graph_list_communities", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L142"}, {"caller_nid": "routers_graph_export_graph", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L177"}, {"caller_nid": "routers_graph_export_graph", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L178"}, {"caller_nid": "routers_graph_export_graph", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L183"}, {"caller_nid": "routers_graph_export_graph", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L183"}, {"caller_nid": "routers_graph_export_graph", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L184"}, {"caller_nid": "routers_graph_export_graph", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L184"}, {"caller_nid": "routers_graph_export_graph", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L186"}, {"caller_nid": "routers_graph_export_graph", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L186"}, {"caller_nid": "routers_graph_export_graph", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L187"}, {"caller_nid": "routers_graph_export_graph", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L187"}, {"caller_nid": "routers_graph_export_graph", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L188"}, {"caller_nid": "routers_graph_export_graph", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L188"}, {"caller_nid": "routers_graph_export_graph", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L190"}, {"caller_nid": "routers_graph_export_graph", "callee": "PlainTextResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L191"}, {"caller_nid": "routers_graph_export_graph", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L191"}, {"caller_nid": "routers_graph_export_graph", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L199"}, {"caller_nid": "routers_graph_export_graph", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L199"}, {"caller_nid": "routers_graph_export_graph", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L199"}, {"caller_nid": "routers_graph_export_graph", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L199"}, {"caller_nid": "routers_graph_export_graph", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L200"}, {"caller_nid": "routers_graph_export_graph", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L200"}, {"caller_nid": "routers_graph_export_graph", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L200"}, {"caller_nid": "routers_graph_export_graph", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L201"}, {"caller_nid": "routers_graph_export_graph", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L202"}, {"caller_nid": "routers_graph_export_graph", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L203"}, {"caller_nid": "routers_graph_export_graph", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L204"}, {"caller_nid": "routers_graph_export_graph", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L204"}, {"caller_nid": "routers_graph_export_graph", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L204"}, {"caller_nid": "routers_graph_export_graph", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L205"}, {"caller_nid": "routers_graph_export_graph", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L205"}, {"caller_nid": "routers_graph_export_graph", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L205"}, {"caller_nid": "routers_graph_export_graph", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L206"}, {"caller_nid": "routers_graph_export_graph", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L207"}, {"caller_nid": "routers_graph_export_graph", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L208"}, {"caller_nid": "routers_graph_export_graph", "callee": "PlainTextResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L209"}, {"caller_nid": "routers_graph_export_graph", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L209"}, {"caller_nid": "routers_graph_export_graph", "callee": "JSONResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L213"}, {"caller_nid": "routers_graph_export_graph", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L216"}, {"caller_nid": "routers_graph_export_graph", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L217"}, {"caller_nid": "routers_graph_update_graph_from_text", "callee": "GraphMemoryUpdater", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L241"}, {"caller_nid": "routers_graph_update_graph_from_text", "callee": "update_from_text", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L245"}, {"caller_nid": "routers_graph_update_graph_from_text", "callee": "GraphUpdateResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py", "source_location": "L250"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/a0b7baeb10d570a9eb67c4dc930e4a3ff90e09bdc6d423eabf10bce1799e8dc9.json b/artifacts/graphify-out/cache/ast/a0b7baeb10d570a9eb67c4dc930e4a3ff90e09bdc6d423eabf10bce1799e8dc9.json new file mode 100644 index 0000000000000000000000000000000000000000..959dd2f4a1a0012b64e279ff26a9718f244a6d0d --- /dev/null +++ b/artifacts/graphify-out/cache/ast/a0b7baeb10d570a9eb67c4dc930e4a3ff90e09bdc6d423eabf10bce1799e8dc9.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "label": "system.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L1"}, {"id": "routers_system_health_check", "label": "health_check()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L24"}, {"id": "routers_system_get_system_stats", "label": "get_system_stats()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L74"}, {"id": "routers_system_get_my_stats", "label": "get_my_stats()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L111"}, {"id": "routers_system_get_supported_formats", "label": "get_supported_formats()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L149"}, {"id": "routers_system_rationale_75", "label": "Get system statistics", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L75"}, {"id": "routers_system_rationale_112", "label": "Get activity stats for the currently authenticated user.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L112"}, {"id": "routers_system_rationale_150", "label": "List supported ingestion file formats", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L150"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L3", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "redis", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L16", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L20", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "routers_system_health_check", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L24", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "routers_system_get_system_stats", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L74", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "routers_system_get_my_stats", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L111", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_system_py", "target": "routers_system_get_supported_formats", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L149", "weight": 1.0}, {"source": "routers_system_rationale_75", "target": "routers_system_get_system_stats", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L75", "weight": 1.0}, {"source": "routers_system_rationale_112", "target": "routers_system_get_my_stats", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L112", "weight": 1.0}, {"source": "routers_system_rationale_150", "target": "routers_system_get_supported_formats", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L150", "weight": 1.0}], "raw_calls": [{"caller_nid": "routers_system_health_check", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L33"}, {"caller_nid": "routers_system_health_check", "callee": "error", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L36"}, {"caller_nid": "routers_system_health_check", "callee": "hasattr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L40"}, {"caller_nid": "routers_system_health_check", "callee": "ping", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L41"}, {"caller_nid": "routers_system_health_check", "callee": "error", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L46"}, {"caller_nid": "routers_system_health_check", "callee": "inspect", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L50"}, {"caller_nid": "routers_system_health_check", "callee": "active", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L51"}, {"caller_nid": "routers_system_health_check", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L53"}, {"caller_nid": "routers_system_health_check", "callee": "warning", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L55"}, {"caller_nid": "routers_system_health_check", "callee": "SystemHealthResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L62"}, {"caller_nid": "routers_system_health_check", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L68"}, {"caller_nid": "routers_system_health_check", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L68"}, {"caller_nid": "routers_system_get_system_stats", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L79"}, {"caller_nid": "routers_system_get_system_stats", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L84"}, {"caller_nid": "routers_system_get_system_stats", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L89"}, {"caller_nid": "routers_system_get_system_stats", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L94"}, {"caller_nid": "routers_system_get_system_stats", "callee": "get_ontology", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L97"}, {"caller_nid": "routers_system_get_system_stats", "callee": "SystemStatsResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L100"}, {"caller_nid": "routers_system_get_my_stats", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L127"}, {"caller_nid": "routers_system_get_my_stats", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L128"}, {"caller_nid": "routers_system_get_my_stats", "callee": "hasattr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L132"}, {"caller_nid": "routers_system_get_my_stats", "callee": "isoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L133"}, {"caller_nid": "routers_system_get_my_stats", "callee": "JSONResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L139"}, {"caller_nid": "routers_system_get_supported_formats", "callee": "SupportedFormatsResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py", "source_location": "L151"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/a2d519592185beb8ac284300442d3cb34718512ccc0650c801b8936f0c296e2b.json b/artifacts/graphify-out/cache/ast/a2d519592185beb8ac284300442d3cb34718512ccc0650c801b8936f0c296e2b.json new file mode 100644 index 0000000000000000000000000000000000000000..ed5931e1d245b8573bfb772885f73a8bc2df3c25 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/a2d519592185beb8ac284300442d3cb34718512ccc0650c801b8936f0c296e2b.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "label": "report_agent.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L1"}, {"id": "retrieval_report_agent_reportsection", "label": "ReportSection", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L30"}, {"id": "basemodel", "label": "BaseModel", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "retrieval_report_agent_reportresult", "label": "ReportResult", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L35"}, {"id": "retrieval_report_agent_insightforgetool", "label": "InsightForgeTool", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L48"}, {"id": "retrieval_report_agent_insightforgetool_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L60"}, {"id": "retrieval_report_agent_insightforgetool_run", "label": ".run()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L64"}, {"id": "retrieval_report_agent_panoramasearchtool", "label": "PanoramaSearchTool", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L146"}, {"id": "retrieval_report_agent_panoramasearchtool_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L157"}, {"id": "retrieval_report_agent_panoramasearchtool_run", "label": ".run()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L160"}, {"id": "retrieval_report_agent_quicksearchtool", "label": "QuickSearchTool", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L196"}, {"id": "retrieval_report_agent_quicksearchtool_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L207"}, {"id": "retrieval_report_agent_quicksearchtool_run", "label": ".run()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L211"}, {"id": "retrieval_report_agent_reportagent", "label": "ReportAgent", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L271"}, {"id": "retrieval_report_agent_reportagent_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L293"}, {"id": "retrieval_report_agent_reportagent_generate_report", "label": ".generate_report()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L303"}, {"id": "retrieval_report_agent_reportagent_decompose_topic", "label": "._decompose_topic()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L369"}, {"id": "retrieval_report_agent_reportagent_react_loop", "label": "._react_loop()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L409"}, {"id": "retrieval_report_agent_reportagent_think", "label": "._think()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L458"}, {"id": "retrieval_report_agent_reportagent_act", "label": "._act()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L489"}, {"id": "retrieval_report_agent_reportagent_write_section_with_confidence", "label": "._write_section_with_confidence()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L504"}, {"id": "retrieval_report_agent_reportagent_write_executive_summary", "label": "._write_executive_summary()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L536"}, {"id": "retrieval_report_agent_reportagent_compile_markdown", "label": "._compile_markdown()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L554"}, {"id": "retrieval_report_agent_rationale_1", "label": "ReportAgent \u2014 Full ReACT Analytical Agent Replaces the 72-line stub with a comp", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L1"}, {"id": "retrieval_report_agent_rationale_49", "label": "Broad-spectrum hybrid retriever: merges vector similarity + graph neighborh", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L49"}, {"id": "retrieval_report_agent_rationale_147", "label": "Macro-level entity sweep: returns all entities of a given type with statist", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L147"}, {"id": "retrieval_report_agent_rationale_163", "label": "Return entities of the given type with their summaries.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L163"}, {"id": "retrieval_report_agent_rationale_197", "label": "Fast single-entity lookup by name with direct 1-hop relationships. Useful f", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L197"}, {"id": "retrieval_report_agent_rationale_212", "label": "Look up an entity and return its profile + connections.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L212"}, {"id": "retrieval_report_agent_rationale_272", "label": "Full ReACT analytical reporting agent. Workflow: DECOMPOSE \u2192 Brea", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L272"}, {"id": "retrieval_report_agent_rationale_310", "label": "Generate an analytical report on the given topic. Args:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L310"}, {"id": "retrieval_report_agent_rationale_375", "label": "Ask LLM to decompose the topic into sub-questions.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L375"}, {"id": "retrieval_report_agent_rationale_412", "label": "Run a ReACT iteration for one sub-question. Returns (section_content, c", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L412"}, {"id": "retrieval_report_agent_rationale_461", "label": "Decide which tool to call next, or return DONE.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L461"}, {"id": "retrieval_report_agent_rationale_492", "label": "Dispatch tool call and return results.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L492"}, {"id": "retrieval_report_agent_rationale_507", "label": "Generate a report section from retrieved contexts and provide a structured confi", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L507"}, {"id": "retrieval_report_agent_rationale_539", "label": "Synthesize all sections into a 3-sentence executive summary.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L539"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L16", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "json", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L18", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "pydantic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L21", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L23", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L24", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L25", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "retrieval_report_agent_reportsection", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L30", "weight": 1.0}, {"source": "retrieval_report_agent_reportsection", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L30", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "retrieval_report_agent_reportresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L35", "weight": 1.0}, {"source": "retrieval_report_agent_reportresult", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L35", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "retrieval_report_agent_insightforgetool", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L48", "weight": 1.0}, {"source": "retrieval_report_agent_insightforgetool", "target": "retrieval_report_agent_insightforgetool_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L60", "weight": 1.0}, {"source": "retrieval_report_agent_insightforgetool", "target": "retrieval_report_agent_insightforgetool_run", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L64", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "retrieval_report_agent_panoramasearchtool", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L146", "weight": 1.0}, {"source": "retrieval_report_agent_panoramasearchtool", "target": "retrieval_report_agent_panoramasearchtool_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L157", "weight": 1.0}, {"source": "retrieval_report_agent_panoramasearchtool", "target": "retrieval_report_agent_panoramasearchtool_run", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L160", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "retrieval_report_agent_quicksearchtool", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L196", "weight": 1.0}, {"source": "retrieval_report_agent_quicksearchtool", "target": "retrieval_report_agent_quicksearchtool_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L207", "weight": 1.0}, {"source": "retrieval_report_agent_quicksearchtool", "target": "retrieval_report_agent_quicksearchtool_run", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L211", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "target": "retrieval_report_agent_reportagent", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L271", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent", "target": "retrieval_report_agent_reportagent_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L293", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent", "target": "retrieval_report_agent_reportagent_generate_report", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L303", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent", "target": "retrieval_report_agent_reportagent_decompose_topic", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L369", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent", "target": "retrieval_report_agent_reportagent_react_loop", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L409", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent", "target": "retrieval_report_agent_reportagent_think", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L458", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent", "target": "retrieval_report_agent_reportagent_act", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L489", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent", "target": "retrieval_report_agent_reportagent_write_section_with_confidence", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L504", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent", "target": "retrieval_report_agent_reportagent_write_executive_summary", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L536", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent", "target": "retrieval_report_agent_reportagent_compile_markdown", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L554", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent_init", "target": "retrieval_report_agent_insightforgetool", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L296", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent_init", "target": "retrieval_report_agent_panoramasearchtool", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L297", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent_init", "target": "retrieval_report_agent_quicksearchtool", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L298", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent_generate_report", "target": "retrieval_report_agent_reportagent_decompose_topic", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L324", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent_generate_report", "target": "retrieval_report_agent_reportagent_react_loop", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L336", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent_generate_report", "target": "retrieval_report_agent_reportagent_write_executive_summary", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L344", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent_generate_report", "target": "retrieval_report_agent_reportagent_compile_markdown", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L353", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent_generate_report", "target": "retrieval_report_agent_reportresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L357", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent_react_loop", "target": "retrieval_report_agent_reportagent_think", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L422", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent_react_loop", "target": "retrieval_report_agent_reportagent_act", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L432", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent_react_loop", "target": "retrieval_report_agent_reportagent_write_section_with_confidence", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L451", "weight": 1.0}, {"source": "retrieval_report_agent_reportagent_act", "target": "retrieval_report_agent_quicksearchtool_run", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L495", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L1", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_49", "target": "retrieval_report_agent_insightforgetool", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L49", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_147", "target": "retrieval_report_agent_panoramasearchtool", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L147", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_163", "target": "retrieval_report_agent_panoramasearchtool_run", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L163", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_197", "target": "retrieval_report_agent_quicksearchtool", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L197", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_212", "target": "retrieval_report_agent_quicksearchtool_run", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L212", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_272", "target": "retrieval_report_agent_reportagent", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L272", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_310", "target": "retrieval_report_agent_reportagent_generate_report", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L310", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_375", "target": "retrieval_report_agent_reportagent_decompose_topic", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L375", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_412", "target": "retrieval_report_agent_reportagent_react_loop", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L412", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_461", "target": "retrieval_report_agent_reportagent_think", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L461", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_492", "target": "retrieval_report_agent_reportagent_act", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L492", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_507", "target": "retrieval_report_agent_reportagent_write_section_with_confidence", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L507", "weight": 1.0}, {"source": "retrieval_report_agent_rationale_539", "target": "retrieval_report_agent_reportagent_write_executive_summary", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L539", "weight": 1.0}], "raw_calls": [{"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "embed", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L69"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "bm25_search", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L70"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "search", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L71"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "gather", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L72"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L75"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L77"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L78"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L80"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L95"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L99"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L100"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L119"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L121"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L121"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L122"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L125"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L125"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L135"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L138"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "add", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L140"}, {"caller_nid": "retrieval_report_agent_insightforgetool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L141"}, {"caller_nid": "retrieval_report_agent_panoramasearchtool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L175"}, {"caller_nid": "retrieval_report_agent_panoramasearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L180"}, {"caller_nid": "retrieval_report_agent_panoramasearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L180"}, {"caller_nid": "retrieval_report_agent_panoramasearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L181"}, {"caller_nid": "retrieval_report_agent_panoramasearchtool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L183"}, {"caller_nid": "retrieval_report_agent_panoramasearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L185"}, {"caller_nid": "retrieval_report_agent_panoramasearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L186"}, {"caller_nid": "retrieval_report_agent_panoramasearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L187"}, {"caller_nid": "retrieval_report_agent_panoramasearchtool_run", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L192"}, {"caller_nid": "retrieval_report_agent_quicksearchtool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L222"}, {"caller_nid": "retrieval_report_agent_quicksearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L230"}, {"caller_nid": "retrieval_report_agent_quicksearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L231"}, {"caller_nid": "retrieval_report_agent_quicksearchtool_run", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L234"}, {"caller_nid": "retrieval_report_agent_quicksearchtool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L248"}, {"caller_nid": "retrieval_report_agent_quicksearchtool_run", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L255"}, {"caller_nid": "retrieval_report_agent_quicksearchtool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L261"}, {"caller_nid": "retrieval_report_agent_quicksearchtool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L262"}, {"caller_nid": "retrieval_report_agent_quicksearchtool_run", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L263"}, {"caller_nid": "retrieval_report_agent_quicksearchtool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L264"}, {"caller_nid": "retrieval_report_agent_reportagent_generate_report", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L339"}, {"caller_nid": "retrieval_report_agent_reportagent_generate_report", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L340"}, {"caller_nid": "retrieval_report_agent_reportagent_generate_report", "callee": "list", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L347"}, {"caller_nid": "retrieval_report_agent_reportagent_generate_report", "callee": "fromkeys", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L347"}, {"caller_nid": "retrieval_report_agent_reportagent_generate_report", "callee": "round", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L350"}, {"caller_nid": "retrieval_report_agent_reportagent_generate_report", "callee": "max", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L350"}, {"caller_nid": "retrieval_report_agent_reportagent_generate_report", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L350"}, {"caller_nid": "retrieval_report_agent_reportagent_decompose_topic", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L392"}, {"caller_nid": "retrieval_report_agent_reportagent_decompose_topic", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L393"}, {"caller_nid": "retrieval_report_agent_reportagent_decompose_topic", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L396"}, {"caller_nid": "retrieval_report_agent_reportagent_decompose_topic", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L396"}, {"caller_nid": "retrieval_report_agent_reportagent_decompose_topic", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L397"}, {"caller_nid": "retrieval_report_agent_reportagent_decompose_topic", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L397"}, {"caller_nid": "retrieval_report_agent_reportagent_decompose_topic", "callee": "isinstance", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L398"}, {"caller_nid": "retrieval_report_agent_reportagent_decompose_topic", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L399"}, {"caller_nid": "retrieval_report_agent_reportagent_react_loop", "callee": "range", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L420"}, {"caller_nid": "retrieval_report_agent_reportagent_react_loop", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L426"}, {"caller_nid": "retrieval_report_agent_reportagent_react_loop", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L436"}, {"caller_nid": "retrieval_report_agent_reportagent_react_loop", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L436"}, {"caller_nid": "retrieval_report_agent_reportagent_react_loop", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L437"}, {"caller_nid": "retrieval_report_agent_reportagent_react_loop", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L438"}, {"caller_nid": "retrieval_report_agent_reportagent_react_loop", "callee": "extend", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L439"}, {"caller_nid": "retrieval_report_agent_reportagent_react_loop", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L443"}, {"caller_nid": "retrieval_report_agent_reportagent_react_loop", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L444"}, {"caller_nid": "retrieval_report_agent_reportagent_react_loop", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L446"}, {"caller_nid": "retrieval_report_agent_reportagent_think", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L462"}, {"caller_nid": "retrieval_report_agent_reportagent_think", "callee": "Field", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L475"}, {"caller_nid": "retrieval_report_agent_reportagent_think", "callee": "Field", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L476"}, {"caller_nid": "retrieval_report_agent_reportagent_think", "callee": "Field", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L477"}, {"caller_nid": "retrieval_report_agent_reportagent_think", "callee": "complete_structured", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L480"}, {"caller_nid": "retrieval_report_agent_reportagent_act", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L501"}, {"caller_nid": "retrieval_report_agent_reportagent_write_section_with_confidence", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L508"}, {"caller_nid": "retrieval_report_agent_reportagent_write_section_with_confidence", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L508"}, {"caller_nid": "retrieval_report_agent_reportagent_write_section_with_confidence", "callee": "Field", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L523"}, {"caller_nid": "retrieval_report_agent_reportagent_write_section_with_confidence", "callee": "Field", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L524"}, {"caller_nid": "retrieval_report_agent_reportagent_write_section_with_confidence", "callee": "complete_structured", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L527"}, {"caller_nid": "retrieval_report_agent_reportagent_write_executive_summary", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L540"}, {"caller_nid": "retrieval_report_agent_reportagent_write_executive_summary", "callee": "list", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L541"}, {"caller_nid": "retrieval_report_agent_reportagent_write_executive_summary", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L541"}, {"caller_nid": "retrieval_report_agent_reportagent_write_executive_summary", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L550"}, {"caller_nid": "retrieval_report_agent_reportagent_compile_markdown", "callee": "strftime", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L563"}, {"caller_nid": "retrieval_report_agent_reportagent_compile_markdown", "callee": "replace", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L563"}, {"caller_nid": "retrieval_report_agent_reportagent_compile_markdown", "callee": "now", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L563"}, {"caller_nid": "retrieval_report_agent_reportagent_compile_markdown", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L568"}, {"caller_nid": "retrieval_report_agent_reportagent_compile_markdown", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L569"}, {"caller_nid": "retrieval_report_agent_reportagent_compile_markdown", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L570"}, {"caller_nid": "retrieval_report_agent_reportagent_compile_markdown", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L571"}, {"caller_nid": "retrieval_report_agent_reportagent_compile_markdown", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L574"}, {"caller_nid": "retrieval_report_agent_reportagent_compile_markdown", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L575"}, {"caller_nid": "retrieval_report_agent_reportagent_compile_markdown", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L575"}, {"caller_nid": "retrieval_report_agent_reportagent_compile_markdown", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py", "source_location": "L577"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/a4814543637d7b5148c63c36d50cecba45788989b41090fdb74d57b77f8d38d3.json b/artifacts/graphify-out/cache/ast/a4814543637d7b5148c63c36d50cecba45788989b41090fdb74d57b77f8d38d3.json new file mode 100644 index 0000000000000000000000000000000000000000..284b46502689cc3448621e8448cad84825549e30 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/a4814543637d7b5148c63c36d50cecba45788989b41090fdb74d57b77f8d38d3.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "label": "models.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L1"}, {"id": "core_models_nodetype", "label": "NodeType", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L12"}, {"id": "str", "label": "str", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "enum", "label": "Enum", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "core_models_relationtype", "label": "RelationType", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L19"}, {"id": "core_models_ontologyversion", "label": "OntologyVersion", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L27"}, {"id": "core_models_entity", "label": "Entity", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L34"}, {"id": "basemodel", "label": "BaseModel", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "core_models_relationship", "label": "Relationship", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L64"}, {"id": "core_models_chunk", "label": "Chunk", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L93"}, {"id": "core_models_document", "label": "Document", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L107"}, {"id": "core_models_ontologyschema", "label": "OntologySchema", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L120"}, {"id": "core_models_extractionresult", "label": "ExtractionResult", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L130"}, {"id": "core_models_confidencejudgment", "label": "ConfidenceJudgment", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L139"}, {"id": "core_models_queryresult", "label": "QueryResult", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L148"}, {"id": "core_models_agentstate", "label": "AgentState", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L163"}, {"id": "core_models_searchmethod", "label": "SearchMethod", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L174"}, {"id": "core_models_evalresult", "label": "EvalResult", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L184"}, {"id": "core_models_communityreport", "label": "CommunityReport", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L198"}, {"id": "core_models_rationale_1", "label": "Core data models for Graph RAG Service Extended with: temporal fields, tenant s", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L1"}, {"id": "core_models_rationale_13", "label": "Types of nodes in the knowledge graph", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L13"}, {"id": "core_models_rationale_20", "label": "Types of relationships in the knowledge graph", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L20"}, {"id": "core_models_rationale_28", "label": "Ontology versions for schema evolution", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L28"}, {"id": "core_models_rationale_35", "label": "Entity in the knowledge graph", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L35"}, {"id": "core_models_rationale_65", "label": "Relationship between entities", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L65"}, {"id": "core_models_rationale_94", "label": "Text chunk from document", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L94"}, {"id": "core_models_rationale_121", "label": "Ontology schema definition", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L121"}, {"id": "core_models_rationale_131", "label": "Result of entity/relationship extraction", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L131"}, {"id": "core_models_rationale_140", "label": "LLM-as-a-Judge confidence assessment (Gap #4)", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L140"}, {"id": "core_models_rationale_149", "label": "Result of a retrieval query \u2014 enriched with confidence judgment", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L149"}, {"id": "core_models_rationale_164", "label": "State of the agentic retrieval system", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L164"}, {"id": "core_models_rationale_175", "label": "Search methods for retrieval", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L175"}, {"id": "core_models_rationale_185", "label": "RAG evaluation result (Gap #8)", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L185"}, {"id": "core_models_rationale_199", "label": "Community summary for LazyGraphRAG (Gap #2)", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L199"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "pydantic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "datetime", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "enum", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_nodetype", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L12", "weight": 1.0}, {"source": "core_models_nodetype", "target": "str", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L12", "weight": 1.0}, {"source": "core_models_nodetype", "target": "enum", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_relationtype", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L19", "weight": 1.0}, {"source": "core_models_relationtype", "target": "str", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L19", "weight": 1.0}, {"source": "core_models_relationtype", "target": "enum", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_ontologyversion", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L27", "weight": 1.0}, {"source": "core_models_ontologyversion", "target": "str", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L27", "weight": 1.0}, {"source": "core_models_ontologyversion", "target": "enum", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L27", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_entity", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L34", "weight": 1.0}, {"source": "core_models_entity", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L34", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_relationship", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L64", "weight": 1.0}, {"source": "core_models_relationship", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L64", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_chunk", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L93", "weight": 1.0}, {"source": "core_models_chunk", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L93", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_document", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L107", "weight": 1.0}, {"source": "core_models_document", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L107", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_ontologyschema", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L120", "weight": 1.0}, {"source": "core_models_ontologyschema", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L120", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_extractionresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L130", "weight": 1.0}, {"source": "core_models_extractionresult", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L130", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_confidencejudgment", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L139", "weight": 1.0}, {"source": "core_models_confidencejudgment", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L139", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_queryresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L148", "weight": 1.0}, {"source": "core_models_queryresult", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L148", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_agentstate", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L163", "weight": 1.0}, {"source": "core_models_agentstate", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L163", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_searchmethod", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L174", "weight": 1.0}, {"source": "core_models_searchmethod", "target": "str", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L174", "weight": 1.0}, {"source": "core_models_searchmethod", "target": "enum", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L174", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_evalresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L184", "weight": 1.0}, {"source": "core_models_evalresult", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L184", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "target": "core_models_communityreport", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L198", "weight": 1.0}, {"source": "core_models_communityreport", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L198", "weight": 1.0}, {"source": "core_models_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L1", "weight": 1.0}, {"source": "core_models_rationale_13", "target": "core_models_nodetype", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L13", "weight": 1.0}, {"source": "core_models_rationale_20", "target": "core_models_relationtype", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L20", "weight": 1.0}, {"source": "core_models_rationale_28", "target": "core_models_ontologyversion", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L28", "weight": 1.0}, {"source": "core_models_rationale_35", "target": "core_models_entity", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L35", "weight": 1.0}, {"source": "core_models_rationale_65", "target": "core_models_relationship", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L65", "weight": 1.0}, {"source": "core_models_rationale_94", "target": "core_models_chunk", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L94", "weight": 1.0}, {"source": "core_models_rationale_121", "target": "core_models_ontologyschema", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L121", "weight": 1.0}, {"source": "core_models_rationale_131", "target": "core_models_extractionresult", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L131", "weight": 1.0}, {"source": "core_models_rationale_140", "target": "core_models_confidencejudgment", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L140", "weight": 1.0}, {"source": "core_models_rationale_149", "target": "core_models_queryresult", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L149", "weight": 1.0}, {"source": "core_models_rationale_164", "target": "core_models_agentstate", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L164", "weight": 1.0}, {"source": "core_models_rationale_175", "target": "core_models_searchmethod", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L175", "weight": 1.0}, {"source": "core_models_rationale_185", "target": "core_models_evalresult", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L185", "weight": 1.0}, {"source": "core_models_rationale_199", "target": "core_models_communityreport", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py", "source_location": "L199", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/a9f4da2bf19f598e455020a2bac446ed40f66440b2af9df7ae800559327884a9.json b/artifacts/graphify-out/cache/ast/a9f4da2bf19f598e455020a2bac446ed40f66440b2af9df7ae800559327884a9.json new file mode 100644 index 0000000000000000000000000000000000000000..7069dbfffdb1129cbd42b7e1b1dae7b6ed9eb3c4 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/a9f4da2bf19f598e455020a2bac446ed40f66440b2af9df7ae800559327884a9.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_init_py", "label": "__init__.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\__init__.py", "source_location": "L1"}, {"id": "ingestion_init_rationale_1", "label": "Ingestion module initialization", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\__init__.py", "source_location": "L1"}], "edges": [{"source": "ingestion_init_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_init_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\__init__.py", "source_location": "L1", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/ad3236820c5a6bb8b86fea96bad1ee887a1e9515bac5a0618fc42cada4cce52f.json b/artifacts/graphify-out/cache/ast/ad3236820c5a6bb8b86fea96bad1ee887a1e9515bac5a0618fc42cada4cce52f.json new file mode 100644 index 0000000000000000000000000000000000000000..c5d31e4af47e6ba227427d30134cc2748ae25ed7 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/ad3236820c5a6bb8b86fea96bad1ee887a1e9515bac5a0618fc42cada4cce52f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_persona_generator_py", "label": "persona_generator.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L1"}, {"id": "ingestion_persona_generator_personaprofile", "label": "PersonaProfile", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L18"}, {"id": "basemodel", "label": "BaseModel", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "ingestion_persona_generator_personagenerator", "label": "PersonaGenerator", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L25"}, {"id": "ingestion_persona_generator_personagenerator_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L31"}, {"id": "ingestion_persona_generator_personagenerator_generate_personas_for_type", "label": ".generate_personas_for_type()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L35"}, {"id": "ingestion_persona_generator_rationale_26", "label": "Converts inert graph nodes into living Agent Personas. Runs locally against", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L26"}, {"id": "ingestion_persona_generator_rationale_36", "label": "Finds all entities of a certain type that lack a persona, generates the", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L36"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_persona_generator_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_persona_generator_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_persona_generator_py", "target": "pydantic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_persona_generator_py", "target": "json", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_persona_generator_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_persona_generator_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_persona_generator_py", "target": "ingestion_persona_generator_personaprofile", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L18", "weight": 1.0}, {"source": "ingestion_persona_generator_personaprofile", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L18", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_persona_generator_py", "target": "ingestion_persona_generator_personagenerator", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L25", "weight": 1.0}, {"source": "ingestion_persona_generator_personagenerator", "target": "ingestion_persona_generator_personagenerator_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L31", "weight": 1.0}, {"source": "ingestion_persona_generator_personagenerator", "target": "ingestion_persona_generator_personagenerator_generate_personas_for_type", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L35", "weight": 1.0}, {"source": "ingestion_persona_generator_rationale_26", "target": "ingestion_persona_generator_personagenerator", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L26", "weight": 1.0}, {"source": "ingestion_persona_generator_rationale_36", "target": "ingestion_persona_generator_personagenerator_generate_personas_for_type", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L36", "weight": 1.0}], "raw_calls": [{"caller_nid": "ingestion_persona_generator_personagenerator_generate_personas_for_type", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L46"}, {"caller_nid": "ingestion_persona_generator_personagenerator_generate_personas_for_type", "callee": "complete_structured", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L61"}, {"caller_nid": "ingestion_persona_generator_personagenerator_generate_personas_for_type", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L73"}, {"caller_nid": "ingestion_persona_generator_personagenerator_generate_personas_for_type", "callee": "model_dump_json", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L75"}, {"caller_nid": "ingestion_persona_generator_personagenerator_generate_personas_for_type", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py", "source_location": "L79"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/b4a9b2b91f76a410497e4b491169ab2b5ea26f229ce4a04c3b4537af505f72c0.json b/artifacts/graphify-out/cache/ast/b4a9b2b91f76a410497e4b491169ab2b5ea26f229ce4a04c3b4537af505f72c0.json new file mode 100644 index 0000000000000000000000000000000000000000..277435d6d4614017843567a5ea2aec817bf0186a --- /dev/null +++ b/artifacts/graphify-out/cache/ast/b4a9b2b91f76a410497e4b491169ab2b5ea26f229ce4a04c3b4537af505f72c0.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "label": "dependencies.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L1"}, {"id": "api_dependencies_get_graph_store", "label": "get_graph_store()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L7"}, {"id": "api_dependencies_get_retrieval_agent", "label": "get_retrieval_agent()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L10"}, {"id": "api_dependencies_get_ingestion_pipeline", "label": "get_ingestion_pipeline()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L13"}, {"id": "api_dependencies_get_redis_client", "label": "get_redis_client()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L16"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L3", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "target": "redis", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "target": "api_dependencies_get_graph_store", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "target": "api_dependencies_get_retrieval_agent", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "target": "api_dependencies_get_ingestion_pipeline", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "target": "api_dependencies_get_redis_client", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py", "source_location": "L16", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/c11f89e87d00eab4fba3c4df71691658891650a1e6a060b5f7a9e4adefc4b764.json b/artifacts/graphify-out/cache/ast/c11f89e87d00eab4fba3c4df71691658891650a1e6a060b5f7a9e4adefc4b764.json new file mode 100644 index 0000000000000000000000000000000000000000..08e0e423e2bcf77d8745df6d7ed2e4ff9b629c0d --- /dev/null +++ b/artifacts/graphify-out/cache/ast/c11f89e87d00eab4fba3c4df71691658891650a1e6a060b5f7a9e4adefc4b764.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_init_py", "label": "__init__.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\__init__.py", "source_location": "L1"}, {"id": "services_init_rationale_1", "label": "MiroFish-inspired services layer - GraphMemoryUpdater: Writable live graph from", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\__init__.py", "source_location": "L1"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_init_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_graph_memory_updater_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\__init__.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_init_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_entity_enricher_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\__init__.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_init_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_ontology_drift_detector_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\__init__.py", "source_location": "L10", "weight": 1.0}, {"source": "services_init_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_services_init_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\__init__.py", "source_location": "L1", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/c273aef91cf0c8f7ab60317cea0a5e07baeded641c5d999aa9f7787cba070f3a.json b/artifacts/graphify-out/cache/ast/c273aef91cf0c8f7ab60317cea0a5e07baeded641c5d999aa9f7787cba070f3a.json new file mode 100644 index 0000000000000000000000000000000000000000..feb22722c2f55f3c8ca761dd74b698248c7bfa7b --- /dev/null +++ b/artifacts/graphify-out/cache/ast/c273aef91cf0c8f7ab60317cea0a5e07baeded641c5d999aa9f7787cba070f3a.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "label": "entities.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L1"}, {"id": "routers_entities_deduplicate_entities", "label": "deduplicate_entities()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L19"}, {"id": "routers_entities_get_entity_at_time", "label": "get_entity_at_time()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L59"}, {"id": "routers_entities_trigger_entity_enrichment", "label": "trigger_entity_enrichment()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L84"}, {"id": "routers_entities_get_entity_summary", "label": "get_entity_summary()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L115"}, {"id": "routers_entities_entity_interview", "label": "entity_interview()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L150"}, {"id": "routers_entities_rationale_22", "label": "Run semantic entity resolution and merge duplicates (admin only)", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L22"}, {"id": "routers_entities_rationale_64", "label": "Get the relationships of an entity at a specific point in time. Supports te", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L64"}, {"id": "routers_entities_rationale_89", "label": "Trigger entity enrichment: traverse each entity's graph neighborhood and sy", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L89"}, {"id": "routers_entities_rationale_119", "label": "Get the enriched profile summary for a specific entity. Returns the LLM-syn", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L119"}, {"id": "routers_entities_rationale_155", "label": "Have a focused conversation scoped to a single entity's graph neighborhood.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L155"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "redis", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "routers_entities_deduplicate_entities", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "routers_entities_get_entity_at_time", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L59", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "routers_entities_trigger_entity_enrichment", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L84", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "routers_entities_get_entity_summary", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L115", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_entities_py", "target": "routers_entities_entity_interview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L150", "weight": 1.0}, {"source": "routers_entities_rationale_22", "target": "routers_entities_deduplicate_entities", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L22", "weight": 1.0}, {"source": "routers_entities_rationale_64", "target": "routers_entities_get_entity_at_time", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L64", "weight": 1.0}, {"source": "routers_entities_rationale_89", "target": "routers_entities_trigger_entity_enrichment", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L89", "weight": 1.0}, {"source": "routers_entities_rationale_119", "target": "routers_entities_get_entity_summary", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L119", "weight": 1.0}, {"source": "routers_entities_rationale_155", "target": "routers_entities_entity_interview", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L155", "weight": 1.0}], "raw_calls": [{"caller_nid": "routers_entities_deduplicate_entities", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L28"}, {"caller_nid": "routers_entities_deduplicate_entities", "callee": "EntityModel", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L32"}, {"caller_nid": "routers_entities_deduplicate_entities", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L33"}, {"caller_nid": "routers_entities_deduplicate_entities", "callee": "create", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L36"}, {"caller_nid": "routers_entities_deduplicate_entities", "callee": "SemanticEntityResolver", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L37"}, {"caller_nid": "routers_entities_deduplicate_entities", "callee": "resolve", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L38"}, {"caller_nid": "routers_entities_deduplicate_entities", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L42"}, {"caller_nid": "routers_entities_deduplicate_entities", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L43"}, {"caller_nid": "routers_entities_deduplicate_entities", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L45"}, {"caller_nid": "routers_entities_deduplicate_entities", "callee": "merge_entities", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L49"}, {"caller_nid": "routers_entities_deduplicate_entities", "callee": "DeduplicateResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L54"}, {"caller_nid": "routers_entities_get_entity_at_time", "callee": "fromisoformat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L72"}, {"caller_nid": "routers_entities_get_entity_at_time", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L74"}, {"caller_nid": "routers_entities_get_entity_at_time", "callee": "get_entities_at_time", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L76"}, {"caller_nid": "routers_entities_get_entity_at_time", "callee": "JSONResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L77"}, {"caller_nid": "routers_entities_trigger_entity_enrichment", "callee": "EntityEnricher", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L96"}, {"caller_nid": "routers_entities_trigger_entity_enrichment", "callee": "enrich_all_entities", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L100"}, {"caller_nid": "routers_entities_trigger_entity_enrichment", "callee": "EnrichmentStatusResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L104"}, {"caller_nid": "routers_entities_get_entity_summary", "callee": "EntityEnricher", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L123"}, {"caller_nid": "routers_entities_get_entity_summary", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L127"}, {"caller_nid": "routers_entities_get_entity_summary", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L132"}, {"caller_nid": "routers_entities_get_entity_summary", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L133"}, {"caller_nid": "routers_entities_get_entity_summary", "callee": "EntitySummaryResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L135"}, {"caller_nid": "routers_entities_get_entity_summary", "callee": "bool", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L140"}, {"caller_nid": "routers_entities_entity_interview", "callee": "get_neighbors", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L166"}, {"caller_nid": "routers_entities_entity_interview", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L169"}, {"caller_nid": "routers_entities_entity_interview", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L173"}, {"caller_nid": "routers_entities_entity_interview", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L174"}, {"caller_nid": "routers_entities_entity_interview", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L176"}, {"caller_nid": "routers_entities_entity_interview", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L188"}, {"caller_nid": "routers_entities_entity_interview", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L193"}, {"caller_nid": "routers_entities_entity_interview", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L195"}, {"caller_nid": "routers_entities_entity_interview", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L195"}, {"caller_nid": "routers_entities_entity_interview", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L196"}, {"caller_nid": "routers_entities_entity_interview", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L202"}, {"caller_nid": "routers_entities_entity_interview", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L205"}, {"caller_nid": "routers_entities_entity_interview", "callee": "uuid4", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L205"}, {"caller_nid": "routers_entities_entity_interview", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L208"}, {"caller_nid": "routers_entities_entity_interview", "callee": "upper", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L219"}, {"caller_nid": "routers_entities_entity_interview", "callee": "reversed", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L220"}, {"caller_nid": "routers_entities_entity_interview", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L222"}, {"caller_nid": "routers_entities_entity_interview", "callee": "UnifiedLLMProvider", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L224"}, {"caller_nid": "routers_entities_entity_interview", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L231"}, {"caller_nid": "routers_entities_entity_interview", "callee": "EntityChatResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L237"}, {"caller_nid": "routers_entities_entity_interview", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py", "source_location": "L238"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/cb604922a296bffeb5cca28727a2da2b7fa1d5028f6ae75ecfba11813f0a803d.json b/artifacts/graphify-out/cache/ast/cb604922a296bffeb5cca28727a2da2b7fa1d5028f6ae75ecfba11813f0a803d.json new file mode 100644 index 0000000000000000000000000000000000000000..01c6361eeedab66846b7123bad2aa27e130d0baa --- /dev/null +++ b/artifacts/graphify-out/cache/ast/cb604922a296bffeb5cca28727a2da2b7fa1d5028f6ae75ecfba11813f0a803d.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "label": "documents.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L1"}, {"id": "routers_documents_upload_document", "label": "upload_document()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L19"}, {"id": "routers_documents_scrape_url", "label": "scrape_url()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L109"}, {"id": "routers_documents_crawl_urls", "label": "crawl_urls()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L180"}, {"id": "routers_documents_list_documents", "label": "list_documents()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L229"}, {"id": "routers_documents_delete_document", "label": "delete_document()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L253"}, {"id": "routers_documents_download_document", "label": "download_document()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L282"}, {"id": "routers_documents_preview_document", "label": "preview_document()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L322"}, {"id": "routers_documents_get_ingestion_status", "label": "get_ingestion_status()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L362"}, {"id": "routers_documents_rationale_23", "label": "Upload document for ingestion Returns task ID for tracking ingestion progre", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L23"}, {"id": "routers_documents_rationale_113", "label": "Scrape URL content into text and ingest it.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L113"}, {"id": "routers_documents_rationale_185", "label": "Advanced async Web Crawling using locally-hosted Crawl4AI (Playwright). Thi", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L185"}, {"id": "routers_documents_rationale_230", "label": "List all ingested documents", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L230"}, {"id": "routers_documents_rationale_257", "label": "Delete a document and all its chunks and entity links from the graph", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L257"}, {"id": "routers_documents_rationale_286", "label": "Download an uploaded document", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L286"}, {"id": "routers_documents_rationale_326", "label": "Return raw text content of a document for in-app preview (works for .txt, .md sc", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L326"}, {"id": "routers_documents_rationale_366", "label": "Get ingestion task status", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L366"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_agent_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_auth_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "redis", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_dependencies_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "routers_documents_upload_document", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "routers_documents_scrape_url", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L109", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "routers_documents_crawl_urls", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L180", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "routers_documents_list_documents", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L229", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "routers_documents_delete_document", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L253", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "routers_documents_download_document", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L282", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "routers_documents_preview_document", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L322", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_routers_documents_py", "target": "routers_documents_get_ingestion_status", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L362", "weight": 1.0}, {"source": "routers_documents_rationale_23", "target": "routers_documents_upload_document", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L23", "weight": 1.0}, {"source": "routers_documents_rationale_113", "target": "routers_documents_scrape_url", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L113", "weight": 1.0}, {"source": "routers_documents_rationale_185", "target": "routers_documents_crawl_urls", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L185", "weight": 1.0}, {"source": "routers_documents_rationale_230", "target": "routers_documents_list_documents", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L230", "weight": 1.0}, {"source": "routers_documents_rationale_257", "target": "routers_documents_delete_document", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L257", "weight": 1.0}, {"source": "routers_documents_rationale_286", "target": "routers_documents_download_document", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L286", "weight": 1.0}, {"source": "routers_documents_rationale_326", "target": "routers_documents_preview_document", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L326", "weight": 1.0}, {"source": "routers_documents_rationale_366", "target": "routers_documents_get_ingestion_status", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L366", "weight": 1.0}], "raw_calls": [{"caller_nid": "routers_documents_upload_document", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L29"}, {"caller_nid": "routers_documents_upload_document", "callee": "Path", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L29"}, {"caller_nid": "routers_documents_upload_document", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L31"}, {"caller_nid": "routers_documents_upload_document", "callee": "read", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L38"}, {"caller_nid": "routers_documents_upload_document", "callee": "seek", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L39"}, {"caller_nid": "routers_documents_upload_document", "callee": "from_buffer", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L40"}, {"caller_nid": "routers_documents_upload_document", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L53"}, {"caller_nid": "routers_documents_upload_document", "callee": "sub", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L60"}, {"caller_nid": "routers_documents_upload_document", "callee": "Path", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L60"}, {"caller_nid": "routers_documents_upload_document", "callee": "relative_to", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L65"}, {"caller_nid": "routers_documents_upload_document", "callee": "resolve", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L65"}, {"caller_nid": "routers_documents_upload_document", "callee": "resolve", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L65"}, {"caller_nid": "routers_documents_upload_document", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L67"}, {"caller_nid": "routers_documents_upload_document", "callee": "open", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L73"}, {"caller_nid": "routers_documents_upload_document", "callee": "read", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L74"}, {"caller_nid": "routers_documents_upload_document", "callee": "write", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L75"}, {"caller_nid": "routers_documents_upload_document", "callee": "stat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L77"}, {"caller_nid": "routers_documents_upload_document", "callee": "sha256", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L79"}, {"caller_nid": "routers_documents_upload_document", "callee": "update", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L80"}, {"caller_nid": "routers_documents_upload_document", "callee": "encode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L80"}, {"caller_nid": "routers_documents_upload_document", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L80"}, {"caller_nid": "routers_documents_upload_document", "callee": "update", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L81"}, {"caller_nid": "routers_documents_upload_document", "callee": "encode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L81"}, {"caller_nid": "routers_documents_upload_document", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L81"}, {"caller_nid": "routers_documents_upload_document", "callee": "stat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L81"}, {"caller_nid": "routers_documents_upload_document", "callee": "hexdigest", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L82"}, {"caller_nid": "routers_documents_upload_document", "callee": "unlink", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L86"}, {"caller_nid": "routers_documents_upload_document", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L87"}, {"caller_nid": "routers_documents_upload_document", "callee": "delay", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L93"}, {"caller_nid": "routers_documents_upload_document", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L94"}, {"caller_nid": "routers_documents_upload_document", "callee": "DocumentUploadResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L98"}, {"caller_nid": "routers_documents_scrape_url", "callee": "hasattr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L124"}, {"caller_nid": "routers_documents_scrape_url", "callee": "reconfigure", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L125"}, {"caller_nid": "routers_documents_scrape_url", "callee": "reconfigure", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L126"}, {"caller_nid": "routers_documents_scrape_url", "callee": "WebCrawler", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L129"}, {"caller_nid": "routers_documents_scrape_url", "callee": "crawl", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L130"}, {"caller_nid": "routers_documents_scrape_url", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L132"}, {"caller_nid": "routers_documents_scrape_url", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L133"}, {"caller_nid": "routers_documents_scrape_url", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L136"}, {"caller_nid": "routers_documents_scrape_url", "callee": "sub", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L140"}, {"caller_nid": "routers_documents_scrape_url", "callee": "open", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L147"}, {"caller_nid": "routers_documents_scrape_url", "callee": "write", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L148"}, {"caller_nid": "routers_documents_scrape_url", "callee": "stat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L150"}, {"caller_nid": "routers_documents_scrape_url", "callee": "sha256", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L152"}, {"caller_nid": "routers_documents_scrape_url", "callee": "update", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L153"}, {"caller_nid": "routers_documents_scrape_url", "callee": "encode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L153"}, {"caller_nid": "routers_documents_scrape_url", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L153"}, {"caller_nid": "routers_documents_scrape_url", "callee": "update", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L154"}, {"caller_nid": "routers_documents_scrape_url", "callee": "encode", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L154"}, {"caller_nid": "routers_documents_scrape_url", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L154"}, {"caller_nid": "routers_documents_scrape_url", "callee": "stat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L154"}, {"caller_nid": "routers_documents_scrape_url", "callee": "hexdigest", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L155"}, {"caller_nid": "routers_documents_scrape_url", "callee": "delay", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L158"}, {"caller_nid": "routers_documents_scrape_url", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L159"}, {"caller_nid": "routers_documents_scrape_url", "callee": "DocumentUploadResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L163"}, {"caller_nid": "routers_documents_scrape_url", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L172"}, {"caller_nid": "routers_documents_scrape_url", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L174"}, {"caller_nid": "routers_documents_crawl_urls", "callee": "WebCrawler", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L193"}, {"caller_nid": "routers_documents_crawl_urls", "callee": "add_task", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L219"}, {"caller_nid": "routers_documents_list_documents", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L237"}, {"caller_nid": "routers_documents_list_documents", "callee": "DocumentInfo", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L239"}, {"caller_nid": "routers_documents_list_documents", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L244"}, {"caller_nid": "routers_documents_list_documents", "callee": "DocumentListResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L248"}, {"caller_nid": "routers_documents_list_documents", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L248"}, {"caller_nid": "routers_documents_delete_document", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L261"}, {"caller_nid": "routers_documents_delete_document", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L262"}, {"caller_nid": "routers_documents_delete_document", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L269"}, {"caller_nid": "routers_documents_delete_document", "callee": "delete_file", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L274"}, {"caller_nid": "routers_documents_download_document", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L291"}, {"caller_nid": "routers_documents_download_document", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L293"}, {"caller_nid": "routers_documents_download_document", "callee": "exists", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L297"}, {"caller_nid": "routers_documents_download_document", "callee": "FileResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L298"}, {"caller_nid": "routers_documents_download_document", "callee": "iterdir", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L305"}, {"caller_nid": "routers_documents_download_document", "callee": "startswith", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L306"}, {"caller_nid": "routers_documents_download_document", "callee": "FileResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L307"}, {"caller_nid": "routers_documents_download_document", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L313"}, {"caller_nid": "routers_documents_preview_document", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L330"}, {"caller_nid": "routers_documents_preview_document", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L332"}, {"caller_nid": "routers_documents_preview_document", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L333"}, {"caller_nid": "routers_documents_preview_document", "callee": "exists", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L339"}, {"caller_nid": "routers_documents_preview_document", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L340"}, {"caller_nid": "routers_documents_preview_document", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L342"}, {"caller_nid": "routers_documents_preview_document", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L343"}, {"caller_nid": "routers_documents_preview_document", "callee": "read_text", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L346"}, {"caller_nid": "routers_documents_preview_document", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L347"}, {"caller_nid": "routers_documents_preview_document", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L347"}, {"caller_nid": "routers_documents_preview_document", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L348"}, {"caller_nid": "routers_documents_preview_document", "callee": "JSONResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L349"}, {"caller_nid": "routers_documents_preview_document", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L357"}, {"caller_nid": "routers_documents_preview_document", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L357"}, {"caller_nid": "routers_documents_get_ingestion_status", "callee": "AsyncResult", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L368"}, {"caller_nid": "routers_documents_get_ingestion_status", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L394"}, {"caller_nid": "routers_documents_get_ingestion_status", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L396"}, {"caller_nid": "routers_documents_get_ingestion_status", "callee": "IngestionStatusResponse", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py", "source_location": "L399"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/d13a268c94a6f243ecf96418a2b89b7cb8a8793d4f79b342e27ddb3ebd39ced3.json b/artifacts/graphify-out/cache/ast/d13a268c94a6f243ecf96418a2b89b7cb8a8793d4f79b342e27ddb3ebd39ced3.json new file mode 100644 index 0000000000000000000000000000000000000000..0cb030149fab74640452ad8424ea391dc74ca9d6 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/d13a268c94a6f243ecf96418a2b89b7cb8a8793d4f79b342e27ddb3ebd39ced3.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_entity_resolver_py", "label": "entity_resolver.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L1"}, {"id": "core_entity_resolver_semanticentityresolver", "label": "SemanticEntityResolver", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L17"}, {"id": "entityresolver", "label": "EntityResolver", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "core_entity_resolver_semanticentityresolver_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L25"}, {"id": "core_entity_resolver_semanticentityresolver_resolve", "label": ".resolve()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L29"}, {"id": "core_entity_resolver_semanticentityresolver_find_duplicates", "label": "._find_duplicates()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L61"}, {"id": "core_entity_resolver_semanticentityresolver_compute_similarity", "label": ".compute_similarity()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L107"}, {"id": "core_entity_resolver_semanticentityresolver_string_similarity", "label": "._string_similarity()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L131"}, {"id": "core_entity_resolver_semanticentityresolver_property_similarity", "label": "._property_similarity()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L135"}, {"id": "core_entity_resolver_semanticentityresolver_embedding_similarity", "label": "._embedding_similarity()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L170"}, {"id": "core_entity_resolver_semanticentityresolver_get_entity_embedding", "label": "._get_entity_embedding()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L190"}, {"id": "core_entity_resolver_rationale_1", "label": "Entity resolution and deduplication Uses multi-stage blocking and semantic simi", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L1"}, {"id": "core_entity_resolver_rationale_18", "label": "Production-grade entity resolution with: 1. Blocking by label and phonetic", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L18"}, {"id": "core_entity_resolver_rationale_34", "label": "Resolve and deduplicate entities Returns: Dictio", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L34"}, {"id": "core_entity_resolver_rationale_66", "label": "Find duplicate entities within a group", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L66"}, {"id": "core_entity_resolver_rationale_108", "label": "Compute similarity between two entities Combines: -", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L108"}, {"id": "core_entity_resolver_rationale_132", "label": "Compute string similarity using SequenceMatcher", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L132"}, {"id": "core_entity_resolver_rationale_136", "label": "Compute property overlap similarity", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L136"}, {"id": "core_entity_resolver_rationale_171", "label": "Compute cosine similarity between entity embeddings", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L171"}, {"id": "core_entity_resolver_rationale_191", "label": "Get or compute entity embedding with caching", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L191"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_entity_resolver_py", "target": "asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_entity_resolver_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L7", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_entity_resolver_py", "target": "difflib", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_entity_resolver_py", "target": "collections", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_entity_resolver_py", "target": "numpy", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_entity_resolver_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_entity_resolver_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_models_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_entity_resolver_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_entity_resolver_py", "target": "core_entity_resolver_semanticentityresolver", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L17", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver", "target": "entityresolver", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L17", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver", "target": "core_entity_resolver_semanticentityresolver_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L25", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver", "target": "core_entity_resolver_semanticentityresolver_resolve", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L29", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver", "target": "core_entity_resolver_semanticentityresolver_find_duplicates", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L61", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver", "target": "core_entity_resolver_semanticentityresolver_compute_similarity", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L107", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver", "target": "core_entity_resolver_semanticentityresolver_string_similarity", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L131", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver", "target": "core_entity_resolver_semanticentityresolver_property_similarity", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L135", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver", "target": "core_entity_resolver_semanticentityresolver_embedding_similarity", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L170", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver", "target": "core_entity_resolver_semanticentityresolver_get_entity_embedding", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L190", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver_resolve", "target": "core_entity_resolver_semanticentityresolver_find_duplicates", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L56", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver_find_duplicates", "target": "core_entity_resolver_semanticentityresolver_get_entity_embedding", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L75", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver_find_duplicates", "target": "core_entity_resolver_semanticentityresolver_string_similarity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L88", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver_find_duplicates", "target": "core_entity_resolver_semanticentityresolver_compute_similarity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L93", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver_compute_similarity", "target": "core_entity_resolver_semanticentityresolver_string_similarity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L118", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver_compute_similarity", "target": "core_entity_resolver_semanticentityresolver_property_similarity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L121", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver_compute_similarity", "target": "core_entity_resolver_semanticentityresolver_embedding_similarity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L124", "weight": 1.0}, {"source": "core_entity_resolver_semanticentityresolver_embedding_similarity", "target": "core_entity_resolver_semanticentityresolver_get_entity_embedding", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L174", "weight": 1.0}, {"source": "core_entity_resolver_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_entity_resolver_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L1", "weight": 1.0}, {"source": "core_entity_resolver_rationale_18", "target": "core_entity_resolver_semanticentityresolver", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L18", "weight": 1.0}, {"source": "core_entity_resolver_rationale_34", "target": "core_entity_resolver_semanticentityresolver_resolve", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L34", "weight": 1.0}, {"source": "core_entity_resolver_rationale_66", "target": "core_entity_resolver_semanticentityresolver_find_duplicates", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L66", "weight": 1.0}, {"source": "core_entity_resolver_rationale_108", "target": "core_entity_resolver_semanticentityresolver_compute_similarity", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L108", "weight": 1.0}, {"source": "core_entity_resolver_rationale_132", "target": "core_entity_resolver_semanticentityresolver_string_similarity", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L132", "weight": 1.0}, {"source": "core_entity_resolver_rationale_136", "target": "core_entity_resolver_semanticentityresolver_property_similarity", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L136", "weight": 1.0}, {"source": "core_entity_resolver_rationale_171", "target": "core_entity_resolver_semanticentityresolver_embedding_similarity", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L171", "weight": 1.0}, {"source": "core_entity_resolver_rationale_191", "target": "core_entity_resolver_semanticentityresolver_get_entity_embedding", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L191", "weight": 1.0}], "raw_calls": [{"caller_nid": "core_entity_resolver_semanticentityresolver_init", "callee": "OrderedDict", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L27"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_resolve", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L47"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_resolve", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L51"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_resolve", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L52"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_resolve", "callee": "update", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L57"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_find_duplicates", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L69"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_find_duplicates", "callee": "range", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L73"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_find_duplicates", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L73"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_find_duplicates", "callee": "gather", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L75"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_find_duplicates", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L77"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_find_duplicates", "callee": "enumerate", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L83"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_find_duplicates", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L96"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_find_duplicates", "callee": "add", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L97"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_find_duplicates", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L99"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_find_duplicates", "callee": "add", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L103"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_string_similarity", "callee": "ratio", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L133"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_string_similarity", "callee": "SequenceMatcher", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L133"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_string_similarity", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L133"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_string_similarity", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L133"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L140"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "keys", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L140"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "set", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L141"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "keys", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L141"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L147"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "intersection", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L147"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L148"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "union", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L148"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "intersection", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L156"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L160"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L160"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L161"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L161"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_property_similarity", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L165"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_embedding_similarity", "callee": "dot", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L178"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_embedding_similarity", "callee": "norm", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L179"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_embedding_similarity", "callee": "norm", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L180"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_get_entity_embedding", "callee": "move_to_end", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L196"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_get_entity_embedding", "callee": "join", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L202"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_get_entity_embedding", "callee": "items", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L202"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_get_entity_embedding", "callee": "embed", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L206"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_get_entity_embedding", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L210"}, {"caller_nid": "core_entity_resolver_semanticentityresolver_get_entity_embedding", "callee": "popitem", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py", "source_location": "L211"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/d587fac87b792d23aea7f93cfb2d50079dd7940c369760fca70300821a510a21.json b/artifacts/graphify-out/cache/ast/d587fac87b792d23aea7f93cfb2d50079dd7940c369760fca70300821a510a21.json new file mode 100644 index 0000000000000000000000000000000000000000..19473c034f83b8d360b223025ee0c02e48b45a3b --- /dev/null +++ b/artifacts/graphify-out/cache/ast/d587fac87b792d23aea7f93cfb2d50079dd7940c369760fca70300821a510a21.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_init_py", "label": "__init__.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\__init__.py", "source_location": "L1"}, {"id": "retrieval_init_rationale_1", "label": "Retrieval module initialization", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\__init__.py", "source_location": "L1"}], "edges": [{"source": "retrieval_init_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_init_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\__init__.py", "source_location": "L1", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/d91468700d702df380b2242a2980dee5bac58ad3db2e34eca962c8d7fd14a56f.json b/artifacts/graphify-out/cache/ast/d91468700d702df380b2242a2980dee5bac58ad3db2e34eca962c8d7fd14a56f.json new file mode 100644 index 0000000000000000000000000000000000000000..e643b6a93526a5587895edf01221a58ced48912c --- /dev/null +++ b/artifacts/graphify-out/cache/ast/d91468700d702df380b2242a2980dee5bac58ad3db2e34eca962c8d7fd14a56f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "label": "celery_worker.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L1"}, {"id": "workers_celery_worker_init_worker_loop", "label": "_init_worker_loop()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L64"}, {"id": "workers_celery_worker_run_async", "label": "run_async()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L69"}, {"id": "workers_celery_worker_ingest_document_task", "label": "ingest_document_task()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L80"}, {"id": "workers_celery_worker_ingest_documents_batch_task", "label": "ingest_documents_batch_task()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L152"}, {"id": "workers_celery_worker_cleanup_orphan_nodes_task", "label": "cleanup_orphan_nodes_task()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L205"}, {"id": "workers_celery_worker_health_check", "label": "health_check()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L244"}, {"id": "workers_celery_worker_generate_personas_task", "label": "generate_personas_task()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L250"}, {"id": "workers_celery_worker_run_simulation_tick_task", "label": "run_simulation_tick_task()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L263"}, {"id": "workers_celery_worker_enrich_entities_task", "label": "enrich_entities_task()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L277"}, {"id": "workers_celery_worker_check_ontology_drift_task", "label": "check_ontology_drift_task()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L310"}, {"id": "workers_celery_worker_rationale_1", "label": "Celery workers for async document ingestion Decouples ingestion from the API re", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L1"}, {"id": "workers_celery_worker_rationale_70", "label": "Helper to run async functions in Celery tasks using a persistent loop", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L70"}, {"id": "workers_celery_worker_rationale_81", "label": "Celery task for document ingestion Args: file_path: Path to", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L81"}, {"id": "workers_celery_worker_rationale_153", "label": "Celery task for batch document ingestion Args: file_paths: L", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L153"}, {"id": "workers_celery_worker_rationale_206", "label": "Background job to clean up disconnected or orphaned nodes in Neo4j. Schedul", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L206"}, {"id": "workers_celery_worker_rationale_245", "label": "Simple health check task", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L245"}, {"id": "workers_celery_worker_rationale_251", "label": "Celery task to run the Ontology-to-Persona Pipeline asynchronously.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L251"}, {"id": "workers_celery_worker_rationale_264", "label": "Celery task to run a Multi-Agent Sandbox Simulation Tick (Point 4).", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L264"}, {"id": "workers_celery_worker_rationale_278", "label": "Background task to run Entity Enricher: generate LLM profile summaries for", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L278"}, {"id": "workers_celery_worker_rationale_311", "label": "Background task to check for ontology drift: re-samples random chunks, prop", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L311"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "celery", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "celery_schedules", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L12", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "pathlib", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L16", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_pipeline_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L18", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "tempfile", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "io", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L20", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L21", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L22", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_ingestion_persona_generator_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L23", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_simulation_runner_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L24", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "celery_signals", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L59", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "workers_celery_worker_init_worker_loop", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L64", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "workers_celery_worker_run_async", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L69", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "workers_celery_worker_ingest_document_task", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L80", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "workers_celery_worker_ingest_documents_batch_task", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L152", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "workers_celery_worker_cleanup_orphan_nodes_task", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L205", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "workers_celery_worker_health_check", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L244", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "workers_celery_worker_generate_personas_task", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L250", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "workers_celery_worker_run_simulation_tick_task", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L263", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "workers_celery_worker_enrich_entities_task", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L277", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "target": "workers_celery_worker_check_ontology_drift_task", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L310", "weight": 1.0}, {"source": "workers_celery_worker_ingest_document_task", "target": "workers_celery_worker_run_async", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L141", "weight": 1.0}, {"source": "workers_celery_worker_ingest_documents_batch_task", "target": "workers_celery_worker_run_async", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L197", "weight": 1.0}, {"source": "workers_celery_worker_cleanup_orphan_nodes_task", "target": "workers_celery_worker_run_async", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L240", "weight": 1.0}, {"source": "workers_celery_worker_generate_personas_task", "target": "workers_celery_worker_run_async", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L260", "weight": 1.0}, {"source": "workers_celery_worker_run_simulation_tick_task", "target": "workers_celery_worker_run_async", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L273", "weight": 1.0}, {"source": "workers_celery_worker_enrich_entities_task", "target": "workers_celery_worker_run_async", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L304", "weight": 1.0}, {"source": "workers_celery_worker_check_ontology_drift_task", "target": "workers_celery_worker_run_async", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L336", "weight": 1.0}, {"source": "workers_celery_worker_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L1", "weight": 1.0}, {"source": "workers_celery_worker_rationale_70", "target": "workers_celery_worker_run_async", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L70", "weight": 1.0}, {"source": "workers_celery_worker_rationale_81", "target": "workers_celery_worker_ingest_document_task", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L81", "weight": 1.0}, {"source": "workers_celery_worker_rationale_153", "target": "workers_celery_worker_ingest_documents_batch_task", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L153", "weight": 1.0}, {"source": "workers_celery_worker_rationale_206", "target": "workers_celery_worker_cleanup_orphan_nodes_task", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L206", "weight": 1.0}, {"source": "workers_celery_worker_rationale_245", "target": "workers_celery_worker_health_check", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L245", "weight": 1.0}, {"source": "workers_celery_worker_rationale_251", "target": "workers_celery_worker_generate_personas_task", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L251", "weight": 1.0}, {"source": "workers_celery_worker_rationale_264", "target": "workers_celery_worker_run_simulation_tick_task", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L264", "weight": 1.0}, {"source": "workers_celery_worker_rationale_278", "target": "workers_celery_worker_enrich_entities_task", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L278", "weight": 1.0}, {"source": "workers_celery_worker_rationale_311", "target": "workers_celery_worker_check_ontology_drift_task", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L311", "weight": 1.0}], "raw_calls": [{"caller_nid": "workers_celery_worker_init_worker_loop", "callee": "new_event_loop", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L66"}, {"caller_nid": "workers_celery_worker_init_worker_loop", "callee": "set_event_loop", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L67"}, {"caller_nid": "workers_celery_worker_run_async", "callee": "run_until_complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L73"}, {"caller_nid": "workers_celery_worker_run_async", "callee": "run", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L76"}, {"caller_nid": "workers_celery_worker_ingest_document_task", "callee": "update_state", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L138"}, {"caller_nid": "workers_celery_worker_ingest_document_task", "callee": "_ingest", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L141"}, {"caller_nid": "workers_celery_worker_ingest_document_task", "callee": "type", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L147"}, {"caller_nid": "workers_celery_worker_ingest_documents_batch_task", "callee": "update_state", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L194"}, {"caller_nid": "workers_celery_worker_ingest_documents_batch_task", "callee": "len", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L194"}, {"caller_nid": "workers_celery_worker_ingest_documents_batch_task", "callee": "_ingest_batch", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L197"}, {"caller_nid": "workers_celery_worker_ingest_documents_batch_task", "callee": "type", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L200"}, {"caller_nid": "workers_celery_worker_cleanup_orphan_nodes_task", "callee": "_clean", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L240"}, {"caller_nid": "workers_celery_worker_generate_personas_task", "callee": "async_run", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L260"}, {"caller_nid": "workers_celery_worker_run_simulation_tick_task", "callee": "async_run", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L273"}, {"caller_nid": "workers_celery_worker_enrich_entities_task", "callee": "_run", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L304"}, {"caller_nid": "workers_celery_worker_enrich_entities_task", "callee": "type", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L306"}, {"caller_nid": "workers_celery_worker_check_ontology_drift_task", "callee": "_run", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L336"}, {"caller_nid": "workers_celery_worker_check_ontology_drift_task", "callee": "type", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py", "source_location": "L338"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/de0d5a37a27352532d49c9fce2fbe4ad1779e025d7140148f540eb9a2d232d8c.json b/artifacts/graphify-out/cache/ast/de0d5a37a27352532d49c9fce2fbe4ad1779e025d7140148f540eb9a2d232d8c.json new file mode 100644 index 0000000000000000000000000000000000000000..1d0e25e2e4b3180585cdc8f6200ec06376ab745a --- /dev/null +++ b/artifacts/graphify-out/cache/ast/de0d5a37a27352532d49c9fce2fbe4ad1779e025d7140148f540eb9a2d232d8c.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_hippo_tool_py", "label": "hippo_tool.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L1"}, {"id": "retrieval_hippo_tool_hipporagtool", "label": "HippoRAGTool", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L9"}, {"id": "retrieval_hippo_tool_hipporagtool_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L15"}, {"id": "retrieval_hippo_tool_hipporagtool_run", "label": ".run()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L19"}, {"id": "retrieval_hippo_tool_rationale_10", "label": "Implements HippoRAG-style Personalized PageRank (PPR) retrieval. Propagates", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L10"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_hippo_tool_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_hippo_tool_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_hippo_tool_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L4", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_hippo_tool_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_hippo_tool_py", "target": "retrieval_hippo_tool_hipporagtool", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L9", "weight": 1.0}, {"source": "retrieval_hippo_tool_hipporagtool", "target": "retrieval_hippo_tool_hipporagtool_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L15", "weight": 1.0}, {"source": "retrieval_hippo_tool_hipporagtool", "target": "retrieval_hippo_tool_hipporagtool_run", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L19", "weight": 1.0}, {"source": "retrieval_hippo_tool_rationale_10", "target": "retrieval_hippo_tool_hipporagtool", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L10", "weight": 1.0}], "raw_calls": [{"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L22"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L23"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "split", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L23"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L23"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L32"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L39"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L50"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "repr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L54"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "repr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L55"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "repr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L55"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L57"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L82"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L88"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L92"}, {"caller_nid": "retrieval_hippo_tool_hipporagtool_run", "callee": "error", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py", "source_location": "L102"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/ed8f84ea6d0139ce855e59d3168a09745171517b28f8098e02b96429fbdff45c.json b/artifacts/graphify-out/cache/ast/ed8f84ea6d0139ce855e59d3168a09745171517b28f8098e02b96429fbdff45c.json new file mode 100644 index 0000000000000000000000000000000000000000..3310b18353d270deeb032f29fa5a426f5b82824b --- /dev/null +++ b/artifacts/graphify-out/cache/ast/ed8f84ea6d0139ce855e59d3168a09745171517b28f8098e02b96429fbdff45c.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_init_py", "label": "__init__.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\__init__.py", "source_location": "L1"}, {"id": "workers_init_rationale_1", "label": "Workers module initialization", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\__init__.py", "source_location": "L1"}], "edges": [{"source": "workers_init_rationale_1", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_init_py", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\__init__.py", "source_location": "L1", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/ef32f5e610089c20283011c540730ec77935e91555064ffd62d3d8abf2cc5109.json b/artifacts/graphify-out/cache/ast/ef32f5e610089c20283011c540730ec77935e91555064ffd62d3d8abf2cc5109.json new file mode 100644 index 0000000000000000000000000000000000000000..08644d93cf9f692d755bec91a6aa08cc03a4ccd1 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/ef32f5e610089c20283011c540730ec77935e91555064ffd62d3d8abf2cc5109.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "label": "llm_factory.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L1"}, {"id": "core_llm_factory_unifiedllmprovider", "label": "UnifiedLLMProvider", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L32"}, {"id": "llmprovider", "label": "LLMProvider", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "core_llm_factory_unifiedllmprovider_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L38"}, {"id": "core_llm_factory_unifiedllmprovider_initialize_provider", "label": "._initialize_provider()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L45"}, {"id": "core_llm_factory_unifiedllmprovider_complete", "label": ".complete()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L89"}, {"id": "core_llm_factory_unifiedllmprovider_complete_structured", "label": ".complete_structured()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L129"}, {"id": "core_llm_factory_unifiedllmprovider_embed", "label": ".embed()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L182"}, {"id": "core_llm_factory_unifiedllmprovider_embed_batch", "label": ".embed_batch()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L226"}, {"id": "core_llm_factory_llmfactory", "label": "LLMFactory", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L271"}, {"id": "core_llm_factory_create", "label": "create()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L275"}, {"id": "core_llm_factory_create_from_config", "label": "create_from_config()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L289"}, {"id": "core_llm_factory_rationale_33", "label": "Unified LLM provider that wraps multiple backends Provides consistent inter", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L33"}, {"id": "core_llm_factory_rationale_46", "label": "Initialize the appropriate LLM provider", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L46"}, {"id": "core_llm_factory_rationale_96", "label": "Generate completion from prompt with automatic rate-limit retry", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L96"}, {"id": "core_llm_factory_rationale_135", "label": "Generate structured output conforming to a Pydantic model Uses JSON mod", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L135"}, {"id": "core_llm_factory_rationale_183", "label": "Generate embedding for text", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L183"}, {"id": "core_llm_factory_rationale_227", "label": "Generate embeddings for multiple texts", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L227"}, {"id": "core_llm_factory_rationale_272", "label": "Factory for creating LLM providers", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L272"}, {"id": "core_llm_factory_rationale_276", "label": "Create an LLM provider instance Args: provider:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L276"}, {"id": "core_llm_factory_rationale_290", "label": "Create provider from configuration dictionary Args:", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L290"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L8", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "pydantic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L9", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "json", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "asyncio", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L11", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "llama_index_llms_openai", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L13", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "llama_index_llms_anthropic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L14", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "llama_index_llms_gemini", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L15", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "llama_index_llms_ollama", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L16", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "llama_index_embeddings_ollama", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "llama_index_embeddings_gemini", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L19", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "llama_index_core_llms", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L22", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_abstractions_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L24", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_config_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L25", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "core_llm_factory_unifiedllmprovider", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L32", "weight": 1.0}, {"source": "core_llm_factory_unifiedllmprovider", "target": "llmprovider", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L32", "weight": 1.0}, {"source": "core_llm_factory_unifiedllmprovider", "target": "core_llm_factory_unifiedllmprovider_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L38", "weight": 1.0}, {"source": "core_llm_factory_unifiedllmprovider", "target": "core_llm_factory_unifiedllmprovider_initialize_provider", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L45", "weight": 1.0}, {"source": "core_llm_factory_unifiedllmprovider", "target": "core_llm_factory_unifiedllmprovider_complete", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L89", "weight": 1.0}, {"source": "core_llm_factory_unifiedllmprovider", "target": "core_llm_factory_unifiedllmprovider_complete_structured", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L129", "weight": 1.0}, {"source": "core_llm_factory_unifiedllmprovider", "target": "core_llm_factory_unifiedllmprovider_embed", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L182", "weight": 1.0}, {"source": "core_llm_factory_unifiedllmprovider", "target": "core_llm_factory_unifiedllmprovider_embed_batch", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L226", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "core_llm_factory_llmfactory", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L271", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "core_llm_factory_create", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L275", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "target": "core_llm_factory_create_from_config", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L289", "weight": 1.0}, {"source": "core_llm_factory_unifiedllmprovider_init", "target": "core_llm_factory_unifiedllmprovider_initialize_provider", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L43", "weight": 1.0}, {"source": "core_llm_factory_unifiedllmprovider_complete_structured", "target": "core_llm_factory_unifiedllmprovider_complete", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L154", "weight": 1.0}, {"source": "core_llm_factory_unifiedllmprovider_embed", "target": "core_llm_factory_create", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L218", "weight": 1.0}, {"source": "core_llm_factory_unifiedllmprovider_embed_batch", "target": "core_llm_factory_create", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L262", "weight": 1.0}, {"source": "core_llm_factory_create", "target": "core_llm_factory_unifiedllmprovider", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L286", "weight": 1.0}, {"source": "core_llm_factory_create_from_config", "target": "core_llm_factory_create", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L301", "weight": 1.0}, {"source": "core_llm_factory_rationale_33", "target": "core_llm_factory_unifiedllmprovider", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L33", "weight": 1.0}, {"source": "core_llm_factory_rationale_46", "target": "core_llm_factory_unifiedllmprovider_initialize_provider", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L46", "weight": 1.0}, {"source": "core_llm_factory_rationale_96", "target": "core_llm_factory_unifiedllmprovider_complete", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L96", "weight": 1.0}, {"source": "core_llm_factory_rationale_135", "target": "core_llm_factory_unifiedllmprovider_complete_structured", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L135", "weight": 1.0}, {"source": "core_llm_factory_rationale_183", "target": "core_llm_factory_unifiedllmprovider_embed", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L183", "weight": 1.0}, {"source": "core_llm_factory_rationale_227", "target": "core_llm_factory_unifiedllmprovider_embed_batch", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L227", "weight": 1.0}, {"source": "core_llm_factory_rationale_272", "target": "core_llm_factory_llmfactory", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L272", "weight": 1.0}, {"source": "core_llm_factory_rationale_276", "target": "core_llm_factory_llmfactory_create", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L276", "weight": 1.0}, {"source": "core_llm_factory_rationale_290", "target": "core_llm_factory_llmfactory_create_from_config", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L290", "weight": 1.0}], "raw_calls": [{"caller_nid": "core_llm_factory_unifiedllmprovider_initialize_provider", "callee": "OpenAI", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L53"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_initialize_provider", "callee": "Anthropic", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L60"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_initialize_provider", "callee": "Gemini", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L67"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_initialize_provider", "callee": "Ollama", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L74"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_initialize_provider", "callee": "OllamaEmbedding", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L82"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_initialize_provider", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L87"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L100"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "ChatMessage", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L100"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "append", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L101"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "ChatMessage", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L101"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "hasattr", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L104"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "range", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L108"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "wait_for", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L110"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "achat", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L110"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L114"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "sleep", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L116"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L119"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L121"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L121"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L123"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete", "callee": "sleep", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L124"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "model_json_schema", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L141"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "dumps", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L146"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L159"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "sub", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L161"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "sub", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L162"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "strip", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L163"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L166"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "response_model", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L167"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "search", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L172"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "loads", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L175"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "group", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L175"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "response_model", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L176"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "error", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L179"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_complete_structured", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L180"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed", "callee": "GeminiEmbedding", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L188"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed", "callee": "range", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L193"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed", "callee": "aget_text_embedding", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L195"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L198"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L198"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L198"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L200"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed", "callee": "sleep", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L201"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed", "callee": "OllamaEmbedding", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L208"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed", "callee": "aget_text_embedding", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L212"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed", "callee": "AsyncOpenAI", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L217"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L224"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed_batch", "callee": "GeminiEmbedding", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L232"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed_batch", "callee": "range", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L237"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed_batch", "callee": "aget_text_embedding_batch", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L239"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed_batch", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L242"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed_batch", "callee": "lower", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L242"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed_batch", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L242"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed_batch", "callee": "info", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L244"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed_batch", "callee": "sleep", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L245"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed_batch", "callee": "OllamaEmbedding", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L252"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed_batch", "callee": "aget_text_embedding_batch", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L256"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed_batch", "callee": "AsyncOpenAI", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L261"}, {"caller_nid": "core_llm_factory_unifiedllmprovider_embed_batch", "callee": "ValueError", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L268"}, {"caller_nid": "core_llm_factory_create_from_config", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L299"}, {"caller_nid": "core_llm_factory_create_from_config", "callee": "get", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py", "source_location": "L300"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/f910688a7006f07e460332d8a0fc626aff749363eedbef9b34c2048b29f000bc.json b/artifacts/graphify-out/cache/ast/f910688a7006f07e460332d8a0fc626aff749363eedbef9b34c2048b29f000bc.json new file mode 100644 index 0000000000000000000000000000000000000000..65352236160e5a353f3116473dd01e2020decf6b --- /dev/null +++ b/artifacts/graphify-out/cache/ast/f910688a7006f07e460332d8a0fc626aff749363eedbef9b34c2048b29f000bc.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "label": "simulation.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L1"}, {"id": "api_simulation_get_global_store", "label": "get_global_store()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L10"}, {"id": "api_simulation_get_global_llm", "label": "get_global_llm()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L17"}, {"id": "api_simulation_interviewrequest", "label": "InterviewRequest", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L20"}, {"id": "basemodel", "label": "BaseModel", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "api_simulation_live_interview_agent", "label": "live_interview_agent()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L26"}, {"id": "api_simulation_get_sandbox_report", "label": "get_sandbox_report()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L89"}, {"id": "api_simulation_start_persona_generation", "label": "start_persona_generation()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L108"}, {"id": "api_simulation_start_simulation_tick", "label": "start_simulation_tick()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L114"}, {"id": "api_simulation_rationale_31", "label": "MiroFish Point 5: 'Live Interviews' with Simulated Personas. Allows users t", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L31"}, {"id": "api_simulation_rationale_93", "label": "MiroFish Point 3: Dedicated ReAct Reporting Agent & Tooling. Triggers the a", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L93"}, {"id": "api_simulation_rationale_109", "label": "Trigger background Celery task to generate personas.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L109"}, {"id": "api_simulation_rationale_115", "label": "Trigger background Celery task to run a simulation loop tick.", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L115"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "fastapi", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "typing", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "pydantic", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L3", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_neo4j_store_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L5", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_llm_factory_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L6", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "api_simulation_get_global_store", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L10", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "api_simulation_get_global_llm", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "api_simulation_interviewrequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L20", "weight": 1.0}, {"source": "api_simulation_interviewrequest", "target": "basemodel", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L20", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "api_simulation_live_interview_agent", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L26", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_retrieval_report_agent_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L86", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "api_simulation_get_sandbox_report", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L89", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_workers_celery_worker_py", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L105", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "api_simulation_start_persona_generation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L108", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_api_simulation_py", "target": "api_simulation_start_simulation_tick", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L114", "weight": 1.0}, {"source": "api_simulation_rationale_31", "target": "api_simulation_live_interview_agent", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L31", "weight": 1.0}, {"source": "api_simulation_rationale_93", "target": "api_simulation_get_sandbox_report", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L93", "weight": 1.0}, {"source": "api_simulation_rationale_109", "target": "api_simulation_start_persona_generation", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L109", "weight": 1.0}, {"source": "api_simulation_rationale_115", "target": "api_simulation_start_simulation_tick", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L115", "weight": 1.0}], "raw_calls": [{"caller_nid": "api_simulation_get_global_store", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L14"}, {"caller_nid": "api_simulation_get_global_llm", "callee": "UnifiedLLMProvider", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L18"}, {"caller_nid": "api_simulation_live_interview_agent", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L41"}, {"caller_nid": "api_simulation_live_interview_agent", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L43"}, {"caller_nid": "api_simulation_live_interview_agent", "callee": "execute_query", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L55"}, {"caller_nid": "api_simulation_live_interview_agent", "callee": "complete", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L72"}, {"caller_nid": "api_simulation_live_interview_agent", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L83"}, {"caller_nid": "api_simulation_live_interview_agent", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L83"}, {"caller_nid": "api_simulation_get_sandbox_report", "callee": "ReportAgent", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L98"}, {"caller_nid": "api_simulation_get_sandbox_report", "callee": "generate_sandbox_report", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L99"}, {"caller_nid": "api_simulation_get_sandbox_report", "callee": "model_dump", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L100"}, {"caller_nid": "api_simulation_get_sandbox_report", "callee": "HTTPException", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L102"}, {"caller_nid": "api_simulation_get_sandbox_report", "callee": "str", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L102"}, {"caller_nid": "api_simulation_start_persona_generation", "callee": "send_task", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L110"}, {"caller_nid": "api_simulation_start_simulation_tick", "callee": "send_task", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py", "source_location": "L116"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/cache/ast/fe13ffba0b8455add20ea79891747380f05130a0b0e546bf0a05b3d1b67f305c.json b/artifacts/graphify-out/cache/ast/fe13ffba0b8455add20ea79891747380f05130a0b0e546bf0a05b3d1b67f305c.json new file mode 100644 index 0000000000000000000000000000000000000000..ee6e1a079ae885521ab935322a52e14a6cb11b49 --- /dev/null +++ b/artifacts/graphify-out/cache/ast/fe13ffba0b8455add20ea79891747380f05130a0b0e546bf0a05b3d1b67f305c.json @@ -0,0 +1 @@ +{"nodes": [{"id": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "label": "storage.py", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L1"}, {"id": "core_storage_storageprovider", "label": "StorageProvider", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L7"}, {"id": "core_storage_storageprovider_normalize_filename", "label": "._normalize_filename()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L8"}, {"id": "core_storage_storageprovider_save_file", "label": ".save_file()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L11"}, {"id": "core_storage_storageprovider_read_file", "label": ".read_file()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L14"}, {"id": "core_storage_storageprovider_delete_file", "label": ".delete_file()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L17"}, {"id": "core_storage_localstorage", "label": "LocalStorage", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L20"}, {"id": "core_storage_localstorage_init", "label": ".__init__()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L21"}, {"id": "core_storage_localstorage_save_file", "label": ".save_file()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L25"}, {"id": "core_storage_localstorage_read_file", "label": ".read_file()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L34"}, {"id": "core_storage_localstorage_delete_file", "label": ".delete_file()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L40"}, {"id": "core_storage_get_storage", "label": "get_storage()", "file_type": "code", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L51"}, {"id": "core_storage_rationale_52", "label": "Returns the appropriate storage provider based on configuration. Currently", "file_type": "rationale", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L52"}], "edges": [{"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "target": "os", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L1", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "target": "logging", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L2", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "target": "pathlib", "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L3", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "target": "core_storage_storageprovider", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L7", "weight": 1.0}, {"source": "core_storage_storageprovider", "target": "core_storage_storageprovider_normalize_filename", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L8", "weight": 1.0}, {"source": "core_storage_storageprovider", "target": "core_storage_storageprovider_save_file", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L11", "weight": 1.0}, {"source": "core_storage_storageprovider", "target": "core_storage_storageprovider_read_file", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L14", "weight": 1.0}, {"source": "core_storage_storageprovider", "target": "core_storage_storageprovider_delete_file", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L17", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "target": "core_storage_localstorage", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L20", "weight": 1.0}, {"source": "core_storage_localstorage", "target": "core_storage_storageprovider", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L20", "weight": 1.0}, {"source": "core_storage_localstorage", "target": "core_storage_localstorage_init", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L21", "weight": 1.0}, {"source": "core_storage_localstorage", "target": "core_storage_localstorage_save_file", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L25", "weight": 1.0}, {"source": "core_storage_localstorage", "target": "core_storage_localstorage_read_file", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L34", "weight": 1.0}, {"source": "core_storage_localstorage", "target": "core_storage_localstorage_delete_file", "relation": "method", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L40", "weight": 1.0}, {"source": "d_desktop_march_26_lyzr_graph_rag_src_graph_rag_service_core_storage_py", "target": "core_storage_get_storage", "relation": "contains", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L51", "weight": 1.0}, {"source": "core_storage_localstorage_save_file", "target": "core_storage_storageprovider_normalize_filename", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L26", "weight": 1.0}, {"source": "core_storage_localstorage_read_file", "target": "core_storage_storageprovider_normalize_filename", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L35", "weight": 1.0}, {"source": "core_storage_localstorage_delete_file", "target": "core_storage_storageprovider_normalize_filename", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L41", "weight": 1.0}, {"source": "core_storage_get_storage", "target": "core_storage_localstorage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L56", "weight": 1.0}, {"source": "core_storage_rationale_52", "target": "core_storage_get_storage", "relation": "rationale_for", "confidence": "EXTRACTED", "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L52", "weight": 1.0}], "raw_calls": [{"caller_nid": "core_storage_storageprovider_normalize_filename", "callee": "Path", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L9"}, {"caller_nid": "core_storage_localstorage_init", "callee": "resolve", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L22"}, {"caller_nid": "core_storage_localstorage_init", "callee": "Path", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L22"}, {"caller_nid": "core_storage_localstorage_init", "callee": "mkdir", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L23"}, {"caller_nid": "core_storage_localstorage_save_file", "callee": "open", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L29"}, {"caller_nid": "core_storage_localstorage_save_file", "callee": "write", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L30"}, {"caller_nid": "core_storage_localstorage_read_file", "callee": "open", "is_member_call": false, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L37"}, {"caller_nid": "core_storage_localstorage_read_file", "callee": "read", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L38"}, {"caller_nid": "core_storage_localstorage_delete_file", "callee": "exists", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L44"}, {"caller_nid": "core_storage_localstorage_delete_file", "callee": "unlink", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L45"}, {"caller_nid": "core_storage_localstorage_delete_file", "callee": "error", "is_member_call": true, "source_file": "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py", "source_location": "L48"}]} \ No newline at end of file diff --git a/artifacts/graphify-out/graph.json b/artifacts/graphify-out/graph.json new file mode 100644 index 0000000000000000000000000000000000000000..37fb4b301695915a66f39f9744431bd29f50b37a --- /dev/null +++ b/artifacts/graphify-out/graph.json @@ -0,0 +1,19105 @@ +{ + "directed": false, + "multigraph": false, + "graph": {}, + "nodes": [ + { + "label": "config.py", + "file_type": "code", + "source_file": "config.py", + "source_location": "L1", + "id": "config_py", + "community": 14, + "norm_label": "config.py" + }, + { + "label": "Settings", + "file_type": "code", + "source_file": "config.py", + "source_location": "L13", + "id": "graph_rag_service_config_settings", + "community": 30, + "norm_label": "settings" + }, + { + "label": "BaseSettings", + "file_type": "code", + "source_file": "", + "source_location": "", + "id": "basesettings", + "community": 30, + "norm_label": "basesettings" + }, + { + "label": "redis_url()", + "file_type": "code", + "source_file": "config.py", + "source_location": "L172", + "id": "graph_rag_service_config_redis_url", + "community": 14, + "norm_label": "redis_url()" + }, + { + "label": ".model_post_init()", + "file_type": "code", + "source_file": "config.py", + "source_location": "L178", + "id": "graph_rag_service_config_settings_model_post_init", + "community": 30, + "norm_label": ".model_post_init()" + }, + { + "label": ".get_llm_config()", + "file_type": "code", + "source_file": "config.py", + "source_location": "L188", + "id": "graph_rag_service_config_settings_get_llm_config", + "community": 30, + "norm_label": ".get_llm_config()" + }, + { + "label": "Application settings with environment variable support", + "file_type": "rationale", + "source_file": "config.py", + "source_location": "L14", + "id": "graph_rag_service_config_rationale_14", + "community": 30, + "norm_label": "application settings with environment variable support" + }, + { + "label": "Fallback to local Ollama if cloud API keys are missing", + "file_type": "rationale", + "source_file": "config.py", + "source_location": "L179", + "id": "graph_rag_service_config_rationale_179", + "community": 30, + "norm_label": "fallback to local ollama if cloud api keys are missing" + }, + { + "label": "Get LLM configuration for specified provider", + "file_type": "rationale", + "source_file": "config.py", + "source_location": "L189", + "id": "graph_rag_service_config_rationale_189", + "community": 30, + "norm_label": "get llm configuration for specified provider" + }, + { + "label": "main.py", + "file_type": "code", + "source_file": "main.py", + "source_location": "L1", + "id": "main_py", + "community": 20, + "norm_label": "main.py" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "main.py", + "source_location": "L11", + "id": "graph_rag_service_main_main", + "community": 20, + "norm_label": "main()" + }, + { + "label": "Main entry point for the Graph RAG Service", + "file_type": "rationale", + "source_file": "main.py", + "source_location": "L1", + "id": "graph_rag_service_main_rationale_1", + "community": 20, + "norm_label": "main entry point for the graph rag service" + }, + { + "label": "__init__.py", + "file_type": "code", + "source_file": "__init__.py", + "source_location": "L1", + "id": "init_py", + "community": 7, + "norm_label": "__init__.py" + }, + { + "label": "Graph RAG as a Service - Agentic Knowledge Graph Platform", + "file_type": "rationale", + "source_file": "__init__.py", + "source_location": "L1", + "id": "graph_rag_service_init_rationale_1", + "community": 7, + "norm_label": "graph rag as a service - agentic knowledge graph platform" + }, + { + "label": "admin.py", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L1", + "id": "api_admin_py", + "community": 6, + "norm_label": "admin.py" + }, + { + "label": "get_graph_store()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L18", + "id": "api_admin_get_graph_store", + "community": 6, + "norm_label": "get_graph_store()" + }, + { + "label": "check_admin_scope()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L31", + "id": "api_admin_check_admin_scope", + "community": 6, + "norm_label": "check_admin_scope()" + }, + { + "label": "SystemConfig", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L40", + "id": "api_admin_systemconfig", + "community": 6, + "norm_label": "systemconfig" + }, + { + "label": "BaseModel", + "file_type": "code", + "source_file": "", + "source_location": "", + "id": "basemodel", + "community": 1, + "norm_label": "basemodel" + }, + { + "label": "TaskDashboardResponse", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L46", + "id": "api_admin_taskdashboardresponse", + "community": 6, + "norm_label": "taskdashboardresponse" + }, + { + "label": "get_admin_stats()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L52", + "id": "api_admin_get_admin_stats", + "community": 6, + "norm_label": "get_admin_stats()" + }, + { + "label": "get_tasks()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L88", + "id": "api_admin_get_tasks", + "community": 6, + "norm_label": "get_tasks()" + }, + { + "label": "update_config()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L110", + "id": "api_admin_update_config", + "community": 6, + "norm_label": "update_config()" + }, + { + "label": "get_review_queue()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L117", + "id": "api_admin_get_review_queue", + "community": 6, + "norm_label": "get_review_queue()" + }, + { + "label": "force_merge_entities()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L129", + "id": "api_admin_force_merge_entities", + "community": 6, + "norm_label": "force_merge_entities()" + }, + { + "label": "search_nodes()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L192", + "id": "api_admin_search_nodes", + "community": 6, + "norm_label": "search_nodes()" + }, + { + "label": "delete_node()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L211", + "id": "api_admin_delete_node", + "community": 6, + "norm_label": "delete_node()" + }, + { + "label": "list_documents()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L236", + "id": "api_admin_list_documents", + "community": 38, + "norm_label": "list_documents()" + }, + { + "label": "delete_document()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L245", + "id": "api_admin_delete_document", + "community": 6, + "norm_label": "delete_document()" + }, + { + "label": "get_pending_ontology()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L262", + "id": "api_admin_get_pending_ontology", + "community": 6, + "norm_label": "get_pending_ontology()" + }, + { + "label": "approve_ontology()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L271", + "id": "api_admin_approve_ontology", + "community": 6, + "norm_label": "approve_ontology()" + }, + { + "label": "reject_ontology()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L291", + "id": "api_admin_reject_ontology", + "community": 6, + "norm_label": "reject_ontology()" + }, + { + "label": "list_users()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L303", + "id": "api_admin_list_users", + "community": 6, + "norm_label": "list_users()" + }, + { + "label": "update_user_role()", + "file_type": "code", + "source_file": "api/admin.py", + "source_location": "L315", + "id": "api_admin_update_user_role", + "community": 6, + "norm_label": "update_user_role()" + }, + { + "label": "Return the app-level shared Neo4jStore (set during startup).", + "file_type": "rationale", + "source_file": "api/admin.py", + "source_location": "L19", + "id": "api_admin_rationale_19", + "community": 6, + "norm_label": "return the app-level shared neo4jstore (set during startup)." + }, + { + "label": "Dependency to check if user has admin scope", + "file_type": "rationale", + "source_file": "api/admin.py", + "source_location": "L32", + "id": "api_admin_rationale_32", + "community": 6, + "norm_label": "dependency to check if user has admin scope" + }, + { + "label": "Get system-wide stats like document counts, node sizes, LLM costs (mocked for no", + "file_type": "rationale", + "source_file": "api/admin.py", + "source_location": "L56", + "id": "api_admin_rationale_56", + "community": 6, + "norm_label": "get system-wide stats like document counts, node sizes, llm costs (mocked for no" + }, + { + "label": "Fetch all tasks from workers (integration with Flower/Celery events)", + "file_type": "rationale", + "source_file": "api/admin.py", + "source_location": "L89", + "id": "api_admin_rationale_89", + "community": 6, + "norm_label": "fetch all tasks from workers (integration with flower/celery events)" + }, + { + "label": "Dynamically update configurations - requires restart logic usually, but here we", + "file_type": "rationale", + "source_file": "api/admin.py", + "source_location": "L111", + "id": "api_admin_rationale_111", + "community": 6, + "norm_label": "dynamically update configurations - requires restart logic usually, but here we" + }, + { + "label": "Fetch entities that resolved between 0.85-0.95 confidence", + "file_type": "rationale", + "source_file": "api/admin.py", + "source_location": "L121", + "id": "api_admin_rationale_121", + "community": 6, + "norm_label": "fetch entities that resolved between 0.85-0.95 confidence" + }, + { + "label": "Admin override to merge two nodes", + "file_type": "rationale", + "source_file": "api/admin.py", + "source_location": "L135", + "id": "api_admin_rationale_135", + "community": 6, + "norm_label": "admin override to merge two nodes" + }, + { + "label": "auth.py", + "file_type": "code", + "source_file": "api/auth.py", + "source_location": "L1", + "id": "api_auth_py", + "community": 11, + "norm_label": "auth.py" + }, + { + "label": "Token", + "file_type": "code", + "source_file": "api/auth.py", + "source_location": "L20", + "id": "api_auth_token", + "community": 11, + "norm_label": "token" + }, + { + "label": "TokenData", + "file_type": "code", + "source_file": "api/auth.py", + "source_location": "L25", + "id": "api_auth_tokendata", + "community": 11, + "norm_label": "tokendata" + }, + { + "label": "User", + "file_type": "code", + "source_file": "api/auth.py", + "source_location": "L30", + "id": "api_auth_user", + "community": 11, + "norm_label": "user" + }, + { + "label": "verify_password()", + "file_type": "code", + "source_file": "api/auth.py", + "source_location": "L39", + "id": "api_auth_verify_password", + "community": 11, + "norm_label": "verify_password()" + }, + { + "label": "get_password_hash()", + "file_type": "code", + "source_file": "api/auth.py", + "source_location": "L49", + "id": "api_auth_get_password_hash", + "community": 11, + "norm_label": "get_password_hash()" + }, + { + "label": "create_access_token()", + "file_type": "code", + "source_file": "api/auth.py", + "source_location": "L55", + "id": "api_auth_create_access_token", + "community": 11, + "norm_label": "create_access_token()" + }, + { + "label": "decode_token()", + "file_type": "code", + "source_file": "api/auth.py", + "source_location": "L83", + "id": "api_auth_decode_token", + "community": 11, + "norm_label": "decode_token()" + }, + { + "label": "get_current_user()", + "file_type": "code", + "source_file": "api/auth.py", + "source_location": "L121", + "id": "api_auth_get_current_user", + "community": 11, + "norm_label": "get_current_user()" + }, + { + "label": "check_scope()", + "file_type": "code", + "source_file": "api/auth.py", + "source_location": "L171", + "id": "api_auth_check_scope", + "community": 11, + "norm_label": "check_scope()" + }, + { + "label": "Authentication and authorization JWT-based authentication with role-based acces", + "file_type": "rationale", + "source_file": "api/auth.py", + "source_location": "L1", + "id": "api_auth_rationale_1", + "community": 11, + "norm_label": "authentication and authorization jwt-based authentication with role-based acces" + }, + { + "label": "Create JWT access token Args: data: Token payload data", + "file_type": "rationale", + "source_file": "api/auth.py", + "source_location": "L56", + "id": "api_auth_rationale_56", + "community": 11, + "norm_label": "create jwt access token args: data: token payload data" + }, + { + "label": "Decode and validate JWT token Args: token: JWT token string", + "file_type": "rationale", + "source_file": "api/auth.py", + "source_location": "L84", + "id": "api_auth_rationale_84", + "community": 11, + "norm_label": "decode and validate jwt token args: token: jwt token string" + }, + { + "label": "Get current user from JWT token Args: request: FastAPI Reque", + "file_type": "rationale", + "source_file": "api/auth.py", + "source_location": "L125", + "id": "api_auth_rationale_125", + "community": 11, + "norm_label": "get current user from jwt token args: request: fastapi reque" + }, + { + "label": "Dependency to check if user has required scope Args: require", + "file_type": "rationale", + "source_file": "api/auth.py", + "source_location": "L172", + "id": "api_auth_rationale_172", + "community": 11, + "norm_label": "dependency to check if user has required scope args: require" + }, + { + "label": "dependencies.py", + "file_type": "code", + "source_file": "api/dependencies.py", + "source_location": "L1", + "id": "api_dependencies_py", + "community": 14, + "norm_label": "dependencies.py" + }, + { + "label": "get_retrieval_agent()", + "file_type": "code", + "source_file": "api/dependencies.py", + "source_location": "L10", + "id": "api_dependencies_get_retrieval_agent", + "community": 14, + "norm_label": "get_retrieval_agent()" + }, + { + "label": "get_ingestion_pipeline()", + "file_type": "code", + "source_file": "api/dependencies.py", + "source_location": "L13", + "id": "api_dependencies_get_ingestion_pipeline", + "community": 14, + "norm_label": "get_ingestion_pipeline()" + }, + { + "label": "get_redis_client()", + "file_type": "code", + "source_file": "api/dependencies.py", + "source_location": "L16", + "id": "api_dependencies_get_redis_client", + "community": 14, + "norm_label": "get_redis_client()" + }, + { + "label": "models.py", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L1", + "id": "api_models_py", + "community": 1, + "norm_label": "models.py" + }, + { + "label": "LoginRequest", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L12", + "id": "api_models_loginrequest", + "community": 1, + "norm_label": "loginrequest" + }, + { + "label": "RegisterRequest", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L16", + "id": "api_models_registerrequest", + "community": 1, + "norm_label": "registerrequest" + }, + { + "label": "TokenResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L24", + "id": "api_models_tokenresponse", + "community": 1, + "norm_label": "tokenresponse" + }, + { + "label": "DocumentUploadResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L30", + "id": "api_models_documentuploadresponse", + "community": 1, + "norm_label": "documentuploadresponse" + }, + { + "label": "ScrapeRequest", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L38", + "id": "api_models_scraperequest", + "community": 1, + "norm_label": "scraperequest" + }, + { + "label": "CrawlRequest", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L41", + "id": "api_models_crawlrequest", + "community": 1, + "norm_label": "crawlrequest" + }, + { + "label": "IngestionStatusResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L48", + "id": "api_models_ingestionstatusresponse", + "community": 1, + "norm_label": "ingestionstatusresponse" + }, + { + "label": "DocumentInfo", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L56", + "id": "api_models_documentinfo", + "community": 38, + "norm_label": "documentinfo" + }, + { + "label": "DocumentListResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L64", + "id": "api_models_documentlistresponse", + "community": 38, + "norm_label": "documentlistresponse" + }, + { + "label": "QueryRequest", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L71", + "id": "api_models_queryrequest", + "community": 1, + "norm_label": "queryrequest" + }, + { + "label": "ConfidenceJudgmentResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L82", + "id": "api_models_confidencejudgmentresponse", + "community": 23, + "norm_label": "confidencejudgmentresponse" + }, + { + "label": "QueryResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L91", + "id": "api_models_queryresponse", + "community": 23, + "norm_label": "queryresponse" + }, + { + "label": "Message", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L107", + "id": "api_models_message", + "community": 31, + "norm_label": "message" + }, + { + "label": "Conversation", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L117", + "id": "api_models_conversation", + "community": 31, + "norm_label": "conversation" + }, + { + "label": "ConversationListResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L124", + "id": "api_models_conversationlistresponse", + "community": 31, + "norm_label": "conversationlistresponse" + }, + { + "label": "OntologyResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L129", + "id": "api_models_ontologyresponse", + "community": 1, + "norm_label": "ontologyresponse" + }, + { + "label": "OntologyUpdateRequest", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L138", + "id": "api_models_ontologyupdaterequest", + "community": 1, + "norm_label": "ontologyupdaterequest" + }, + { + "label": "GraphNode", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L146", + "id": "api_models_graphnode", + "community": 34, + "norm_label": "graphnode" + }, + { + "label": "GraphEdge", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L157", + "id": "api_models_graphedge", + "community": 34, + "norm_label": "graphedge" + }, + { + "label": "EntityUpdateRequest", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L166", + "id": "api_models_entityupdaterequest", + "community": 1, + "norm_label": "entityupdaterequest" + }, + { + "label": "GraphVisualizationResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L170", + "id": "api_models_graphvisualizationresponse", + "community": 34, + "norm_label": "graphvisualizationresponse" + }, + { + "label": "SystemHealthResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L176", + "id": "api_models_systemhealthresponse", + "community": 1, + "norm_label": "systemhealthresponse" + }, + { + "label": "SystemStatsResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L185", + "id": "api_models_systemstatsresponse", + "community": 1, + "norm_label": "systemstatsresponse" + }, + { + "label": "OntologyRefineRequest", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L194", + "id": "api_models_ontologyrefinerequest", + "community": 1, + "norm_label": "ontologyrefinerequest" + }, + { + "label": "OntologyRefineResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L199", + "id": "api_models_ontologyrefineresponse", + "community": 1, + "norm_label": "ontologyrefineresponse" + }, + { + "label": "DeduplicateResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L210", + "id": "api_models_deduplicateresponse", + "community": 1, + "norm_label": "deduplicateresponse" + }, + { + "label": "EvalRequest", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L217", + "id": "api_models_evalrequest", + "community": 48, + "norm_label": "evalrequest" + }, + { + "label": "EvalResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L226", + "id": "api_models_evalresponse", + "community": 33, + "norm_label": "evalresponse" + }, + { + "label": "EvalTrendPoint", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L238", + "id": "api_models_evaltrendpoint", + "community": 32, + "norm_label": "evaltrendpoint" + }, + { + "label": "EvalDashboardResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L248", + "id": "api_models_evaldashboardresponse", + "community": 32, + "norm_label": "evaldashboardresponse" + }, + { + "label": "CommunityAssignResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L260", + "id": "api_models_communityassignresponse", + "community": 1, + "norm_label": "communityassignresponse" + }, + { + "label": "CommunitySummaryResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L266", + "id": "api_models_communitysummaryresponse", + "community": 41, + "norm_label": "communitysummaryresponse" + }, + { + "label": "SupportedFormatsResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L277", + "id": "api_models_supportedformatsresponse", + "community": 47, + "norm_label": "supportedformatsresponse" + }, + { + "label": "GraphUpdateRequest", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L285", + "id": "api_models_graphupdaterequest", + "community": 1, + "norm_label": "graphupdaterequest" + }, + { + "label": "GraphUpdateResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L298", + "id": "api_models_graphupdateresponse", + "community": 49, + "norm_label": "graphupdateresponse" + }, + { + "label": "EnrichmentStatusResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L310", + "id": "api_models_enrichmentstatusresponse", + "community": 45, + "norm_label": "enrichmentstatusresponse" + }, + { + "label": "EntitySummaryResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L319", + "id": "api_models_entitysummaryresponse", + "community": 40, + "norm_label": "entitysummaryresponse" + }, + { + "label": "ReportRequest", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L330", + "id": "api_models_reportrequest", + "community": 1, + "norm_label": "reportrequest" + }, + { + "label": "ReportResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L343", + "id": "api_models_reportresponse", + "community": 39, + "norm_label": "reportresponse" + }, + { + "label": "EntityChatRequest", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L357", + "id": "api_models_entitychatrequest", + "community": 1, + "norm_label": "entitychatrequest" + }, + { + "label": "EntityChatResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L365", + "id": "api_models_entitychatresponse", + "community": 46, + "norm_label": "entitychatresponse" + }, + { + "label": "DriftReportResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L375", + "id": "api_models_driftreportresponse", + "community": 44, + "norm_label": "driftreportresponse" + }, + { + "label": "DriftListResponse", + "file_type": "code", + "source_file": "api/models.py", + "source_location": "L390", + "id": "api_models_driftlistresponse", + "community": 42, + "norm_label": "driftlistresponse" + }, + { + "label": "API models and schemas for requests/responses Extended with: confidence judgment", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L1", + "id": "api_models_rationale_1", + "community": 1, + "norm_label": "api models and schemas for requests/responses extended with: confidence judgment" + }, + { + "label": "Gap #4 \u2014 LLM-as-a-Judge response shape", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L83", + "id": "api_models_rationale_83", + "community": 23, + "norm_label": "gap #4 \u2014 llm-as-a-judge response shape" + }, + { + "label": "Request to run quality evaluation on a Q&A pair", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L218", + "id": "api_models_rationale_218", + "community": 48, + "norm_label": "request to run quality evaluation on a q&a pair" + }, + { + "label": "Evaluation metrics for a Q&A pair", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L227", + "id": "api_models_rationale_227", + "community": 33, + "norm_label": "evaluation metrics for a q&a pair" + }, + { + "label": "Single data point for eval trending chart", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L239", + "id": "api_models_rationale_239", + "community": 32, + "norm_label": "single data point for eval trending chart" + }, + { + "label": "Full eval dashboard data", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L249", + "id": "api_models_rationale_249", + "community": 32, + "norm_label": "full eval dashboard data" + }, + { + "label": "Response from community assignment task", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L261", + "id": "api_models_rationale_261", + "community": 1, + "norm_label": "response from community assignment task" + }, + { + "label": "Summary of a graph community", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L267", + "id": "api_models_rationale_267", + "community": 41, + "norm_label": "summary of a graph community" + }, + { + "label": "List of supported ingestion file formats", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L278", + "id": "api_models_rationale_278", + "community": 47, + "norm_label": "list of supported ingestion file formats" + }, + { + "label": "Request to merge text directly into the live knowledge graph", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L286", + "id": "api_models_rationale_286", + "community": 1, + "norm_label": "request to merge text directly into the live knowledge graph" + }, + { + "label": "Response from a graph memory update operation", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L299", + "id": "api_models_rationale_299", + "community": 49, + "norm_label": "response from a graph memory update operation" + }, + { + "label": "Response from entity enrichment task", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L311", + "id": "api_models_rationale_311", + "community": 45, + "norm_label": "response from entity enrichment task" + }, + { + "label": "Entity profile summary returned from the graph", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L320", + "id": "api_models_rationale_320", + "community": 40, + "norm_label": "entity profile summary returned from the graph" + }, + { + "label": "Request to generate an analytical report", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L331", + "id": "api_models_rationale_331", + "community": 1, + "norm_label": "request to generate an analytical report" + }, + { + "label": "Analytical report generated by the ReACT ReportAgent", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L344", + "id": "api_models_rationale_344", + "community": 39, + "norm_label": "analytical report generated by the react reportagent" + }, + { + "label": "Request to chat with a single entity's knowledge neighborhood", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L358", + "id": "api_models_rationale_358", + "community": 1, + "norm_label": "request to chat with a single entity's knowledge neighborhood" + }, + { + "label": "Response from entity-scoped chat", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L366", + "id": "api_models_rationale_366", + "community": 46, + "norm_label": "response from entity-scoped chat" + }, + { + "label": "Schema drift report from OntologyDriftDetector", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L376", + "id": "api_models_rationale_376", + "community": 44, + "norm_label": "schema drift report from ontologydriftdetector" + }, + { + "label": "List of drift reports", + "file_type": "rationale", + "source_file": "api/models.py", + "source_location": "L391", + "id": "api_models_rationale_391", + "community": 42, + "norm_label": "list of drift reports" + }, + { + "label": "server.py", + "file_type": "code", + "source_file": "api/server.py", + "source_location": "L1", + "id": "api_server_py", + "community": 37, + "norm_label": "server.py" + }, + { + "label": "is_valid_origin()", + "file_type": "code", + "source_file": "api/server.py", + "source_location": "L61", + "id": "api_server_is_valid_origin", + "community": 37, + "norm_label": "is_valid_origin()" + }, + { + "label": "startup_event()", + "file_type": "code", + "source_file": "api/server.py", + "source_location": "L90", + "id": "api_server_startup_event", + "community": 12, + "norm_label": "startup_event()" + }, + { + "label": "shutdown_event()", + "file_type": "code", + "source_file": "api/server.py", + "source_location": "L125", + "id": "api_server_shutdown_event", + "community": 37, + "norm_label": "shutdown_event()" + }, + { + "label": "serve_index()", + "file_type": "code", + "source_file": "api/server.py", + "source_location": "L171", + "id": "api_server_serve_index", + "community": 37, + "norm_label": "serve_index()" + }, + { + "label": "FastAPI application - Main API server Unified API gateway for the Graph RAG ser", + "file_type": "rationale", + "source_file": "api/server.py", + "source_location": "L1", + "id": "api_server_rationale_1", + "community": 37, + "norm_label": "fastapi application - main api server unified api gateway for the graph rag ser" + }, + { + "label": "Initialize connections on startup", + "file_type": "rationale", + "source_file": "api/server.py", + "source_location": "L91", + "id": "api_server_rationale_91", + "community": 12, + "norm_label": "initialize connections on startup" + }, + { + "label": "simulation.py", + "file_type": "code", + "source_file": "api/simulation.py", + "source_location": "L1", + "id": "api_simulation_py", + "community": 5, + "norm_label": "simulation.py" + }, + { + "label": "get_global_store()", + "file_type": "code", + "source_file": "api/simulation.py", + "source_location": "L10", + "id": "api_simulation_get_global_store", + "community": 5, + "norm_label": "get_global_store()" + }, + { + "label": "get_global_llm()", + "file_type": "code", + "source_file": "api/simulation.py", + "source_location": "L17", + "id": "api_simulation_get_global_llm", + "community": 19, + "norm_label": "get_global_llm()" + }, + { + "label": "InterviewRequest", + "file_type": "code", + "source_file": "api/simulation.py", + "source_location": "L20", + "id": "api_simulation_interviewrequest", + "community": 5, + "norm_label": "interviewrequest" + }, + { + "label": "live_interview_agent()", + "file_type": "code", + "source_file": "api/simulation.py", + "source_location": "L26", + "id": "api_simulation_live_interview_agent", + "community": 5, + "norm_label": "live_interview_agent()" + }, + { + "label": "get_sandbox_report()", + "file_type": "code", + "source_file": "api/simulation.py", + "source_location": "L89", + "id": "api_simulation_get_sandbox_report", + "community": 5, + "norm_label": "get_sandbox_report()" + }, + { + "label": "start_persona_generation()", + "file_type": "code", + "source_file": "api/simulation.py", + "source_location": "L108", + "id": "api_simulation_start_persona_generation", + "community": 5, + "norm_label": "start_persona_generation()" + }, + { + "label": "start_simulation_tick()", + "file_type": "code", + "source_file": "api/simulation.py", + "source_location": "L114", + "id": "api_simulation_start_simulation_tick", + "community": 5, + "norm_label": "start_simulation_tick()" + }, + { + "label": "MiroFish Point 5: 'Live Interviews' with Simulated Personas. Allows users t", + "file_type": "rationale", + "source_file": "api/simulation.py", + "source_location": "L31", + "id": "api_simulation_rationale_31", + "community": 5, + "norm_label": "mirofish point 5: 'live interviews' with simulated personas. allows users t" + }, + { + "label": "MiroFish Point 3: Dedicated ReAct Reporting Agent & Tooling. Triggers the a", + "file_type": "rationale", + "source_file": "api/simulation.py", + "source_location": "L93", + "id": "api_simulation_rationale_93", + "community": 5, + "norm_label": "mirofish point 3: dedicated react reporting agent & tooling. triggers the a" + }, + { + "label": "Trigger background Celery task to generate personas.", + "file_type": "rationale", + "source_file": "api/simulation.py", + "source_location": "L109", + "id": "api_simulation_rationale_109", + "community": 5, + "norm_label": "trigger background celery task to generate personas." + }, + { + "label": "Trigger background Celery task to run a simulation loop tick.", + "file_type": "rationale", + "source_file": "api/simulation.py", + "source_location": "L115", + "id": "api_simulation_rationale_115", + "community": 5, + "norm_label": "trigger background celery task to run a simulation loop tick." + }, + { + "label": "API module initialization", + "file_type": "rationale", + "source_file": "api/__init__.py", + "source_location": "L1", + "id": "api_init_rationale_1", + "community": 7, + "norm_label": "api module initialization" + }, + { + "label": "register()", + "file_type": "code", + "source_file": "api/routers/auth.py", + "source_location": "L21", + "id": "routers_auth_register", + "community": 11, + "norm_label": "register()" + }, + { + "label": "login()", + "file_type": "code", + "source_file": "api/routers/auth.py", + "source_location": "L59", + "id": "routers_auth_login", + "community": 11, + "norm_label": "login()" + }, + { + "label": "get_me()", + "file_type": "code", + "source_file": "api/routers/auth.py", + "source_location": "L92", + "id": "routers_auth_get_me", + "community": 11, + "norm_label": "get_me()" + }, + { + "label": "Login and get access token Verifies user against Neo4j database", + "file_type": "rationale", + "source_file": "api/routers/auth.py", + "source_location": "L60", + "id": "routers_auth_rationale_60", + "community": 11, + "norm_label": "login and get access token verifies user against neo4j database" + }, + { + "label": "Get current user information", + "file_type": "rationale", + "source_file": "api/routers/auth.py", + "source_location": "L93", + "id": "routers_auth_rationale_93", + "community": 11, + "norm_label": "get current user information" + }, + { + "label": "documents.py", + "file_type": "code", + "source_file": "api/routers/documents.py", + "source_location": "L1", + "id": "api_routers_documents_py", + "community": 14, + "norm_label": "documents.py" + }, + { + "label": "upload_document()", + "file_type": "code", + "source_file": "api/routers/documents.py", + "source_location": "L19", + "id": "routers_documents_upload_document", + "community": 59, + "norm_label": "upload_document()" + }, + { + "label": "scrape_url()", + "file_type": "code", + "source_file": "api/routers/documents.py", + "source_location": "L109", + "id": "routers_documents_scrape_url", + "community": 25, + "norm_label": "scrape_url()" + }, + { + "label": "crawl_urls()", + "file_type": "code", + "source_file": "api/routers/documents.py", + "source_location": "L180", + "id": "routers_documents_crawl_urls", + "community": 25, + "norm_label": "crawl_urls()" + }, + { + "label": "download_document()", + "file_type": "code", + "source_file": "api/routers/documents.py", + "source_location": "L282", + "id": "routers_documents_download_document", + "community": 51, + "norm_label": "download_document()" + }, + { + "label": "preview_document()", + "file_type": "code", + "source_file": "api/routers/documents.py", + "source_location": "L322", + "id": "routers_documents_preview_document", + "community": 50, + "norm_label": "preview_document()" + }, + { + "label": "Upload document for ingestion Returns task ID for tracking ingestion progre", + "file_type": "rationale", + "source_file": "api/routers/documents.py", + "source_location": "L23", + "id": "routers_documents_rationale_23", + "community": 59, + "norm_label": "upload document for ingestion returns task id for tracking ingestion progre" + }, + { + "label": "Scrape URL content into text and ingest it.", + "file_type": "rationale", + "source_file": "api/routers/documents.py", + "source_location": "L113", + "id": "routers_documents_rationale_113", + "community": 25, + "norm_label": "scrape url content into text and ingest it." + }, + { + "label": "Advanced async Web Crawling using locally-hosted Crawl4AI (Playwright). Thi", + "file_type": "rationale", + "source_file": "api/routers/documents.py", + "source_location": "L185", + "id": "routers_documents_rationale_185", + "community": 25, + "norm_label": "advanced async web crawling using locally-hosted crawl4ai (playwright). thi" + }, + { + "label": "List all ingested documents", + "file_type": "rationale", + "source_file": "api/routers/documents.py", + "source_location": "L230", + "id": "routers_documents_rationale_230", + "community": 38, + "norm_label": "list all ingested documents" + }, + { + "label": "Delete a document and all its chunks and entity links from the graph", + "file_type": "rationale", + "source_file": "api/routers/documents.py", + "source_location": "L257", + "id": "routers_documents_rationale_257", + "community": 6, + "norm_label": "delete a document and all its chunks and entity links from the graph" + }, + { + "label": "Download an uploaded document", + "file_type": "rationale", + "source_file": "api/routers/documents.py", + "source_location": "L286", + "id": "routers_documents_rationale_286", + "community": 51, + "norm_label": "download an uploaded document" + }, + { + "label": "Return raw text content of a document for in-app preview (works for .txt, .md sc", + "file_type": "rationale", + "source_file": "api/routers/documents.py", + "source_location": "L326", + "id": "routers_documents_rationale_326", + "community": 50, + "norm_label": "return raw text content of a document for in-app preview (works for .txt, .md sc" + }, + { + "label": "Get ingestion task status", + "file_type": "rationale", + "source_file": "api/routers/documents.py", + "source_location": "L366", + "id": "routers_documents_rationale_366", + "community": 14, + "norm_label": "get ingestion task status" + }, + { + "label": "entities.py", + "file_type": "code", + "source_file": "api/routers/entities.py", + "source_location": "L1", + "id": "api_routers_entities_py", + "community": 14, + "norm_label": "entities.py" + }, + { + "label": "deduplicate_entities()", + "file_type": "code", + "source_file": "api/routers/entities.py", + "source_location": "L19", + "id": "routers_entities_deduplicate_entities", + "community": 57, + "norm_label": "deduplicate_entities()" + }, + { + "label": "get_entity_at_time()", + "file_type": "code", + "source_file": "api/routers/entities.py", + "source_location": "L59", + "id": "routers_entities_get_entity_at_time", + "community": 52, + "norm_label": "get_entity_at_time()" + }, + { + "label": "trigger_entity_enrichment()", + "file_type": "code", + "source_file": "api/routers/entities.py", + "source_location": "L84", + "id": "routers_entities_trigger_entity_enrichment", + "community": 7, + "norm_label": "trigger_entity_enrichment()" + }, + { + "label": "get_entity_summary()", + "file_type": "code", + "source_file": "api/routers/entities.py", + "source_location": "L115", + "id": "routers_entities_get_entity_summary", + "community": 7, + "norm_label": "get_entity_summary()" + }, + { + "label": "entity_interview()", + "file_type": "code", + "source_file": "api/routers/entities.py", + "source_location": "L150", + "id": "routers_entities_entity_interview", + "community": 19, + "norm_label": "entity_interview()" + }, + { + "label": "Run semantic entity resolution and merge duplicates (admin only)", + "file_type": "rationale", + "source_file": "api/routers/entities.py", + "source_location": "L22", + "id": "routers_entities_rationale_22", + "community": 57, + "norm_label": "run semantic entity resolution and merge duplicates (admin only)" + }, + { + "label": "Get the relationships of an entity at a specific point in time. Supports te", + "file_type": "rationale", + "source_file": "api/routers/entities.py", + "source_location": "L64", + "id": "routers_entities_rationale_64", + "community": 52, + "norm_label": "get the relationships of an entity at a specific point in time. supports te" + }, + { + "label": "Trigger entity enrichment: traverse each entity's graph neighborhood and sy", + "file_type": "rationale", + "source_file": "api/routers/entities.py", + "source_location": "L89", + "id": "routers_entities_rationale_89", + "community": 7, + "norm_label": "trigger entity enrichment: traverse each entity's graph neighborhood and sy" + }, + { + "label": "Get the enriched profile summary for a specific entity. Returns the LLM-syn", + "file_type": "rationale", + "source_file": "api/routers/entities.py", + "source_location": "L119", + "id": "routers_entities_rationale_119", + "community": 7, + "norm_label": "get the enriched profile summary for a specific entity. returns the llm-syn" + }, + { + "label": "Have a focused conversation scoped to a single entity's graph neighborhood.", + "file_type": "rationale", + "source_file": "api/routers/entities.py", + "source_location": "L155", + "id": "routers_entities_rationale_155", + "community": 19, + "norm_label": "have a focused conversation scoped to a single entity's graph neighborhood." + }, + { + "label": "evaluation.py", + "file_type": "code", + "source_file": "api/routers/evaluation.py", + "source_location": "L1", + "id": "api_routers_evaluation_py", + "community": 14, + "norm_label": "evaluation.py" + }, + { + "label": "evaluate_response()", + "file_type": "code", + "source_file": "api/routers/evaluation.py", + "source_location": "L19", + "id": "routers_evaluation_evaluate_response", + "community": 33, + "norm_label": "evaluate_response()" + }, + { + "label": "get_eval_dashboard()", + "file_type": "code", + "source_file": "api/routers/evaluation.py", + "source_location": "L67", + "id": "routers_evaluation_get_eval_dashboard", + "community": 32, + "norm_label": "get_eval_dashboard()" + }, + { + "label": "Run RAGAS-style quality evaluation on a Q&A pair. Measures faithfulness, re", + "file_type": "rationale", + "source_file": "api/routers/evaluation.py", + "source_location": "L23", + "id": "routers_evaluation_rationale_23", + "community": 33, + "norm_label": "run ragas-style quality evaluation on a q&a pair. measures faithfulness, re" + }, + { + "label": "Retrieve evaluation history for the quality dashboard", + "file_type": "rationale", + "source_file": "api/routers/evaluation.py", + "source_location": "L71", + "id": "routers_evaluation_rationale_71", + "community": 32, + "norm_label": "retrieve evaluation history for the quality dashboard" + }, + { + "label": "graph.py", + "file_type": "code", + "source_file": "api/routers/graph.py", + "source_location": "L1", + "id": "api_routers_graph_py", + "community": 14, + "norm_label": "graph.py" + }, + { + "label": "get_graph_visualization()", + "file_type": "code", + "source_file": "api/routers/graph.py", + "source_location": "L19", + "id": "routers_graph_get_graph_visualization", + "community": 34, + "norm_label": "get_graph_visualization()" + }, + { + "label": "assign_communities()", + "file_type": "code", + "source_file": "api/routers/graph.py", + "source_location": "L110", + "id": "routers_graph_assign_communities", + "community": 53, + "norm_label": "assign_communities()" + }, + { + "label": "list_communities()", + "file_type": "code", + "source_file": "api/routers/graph.py", + "source_location": "L126", + "id": "routers_graph_list_communities", + "community": 58, + "norm_label": "list_communities()" + }, + { + "label": "export_graph()", + "file_type": "code", + "source_file": "api/routers/graph.py", + "source_location": "L149", + "id": "routers_graph_export_graph", + "community": 55, + "norm_label": "export_graph()" + }, + { + "label": "update_graph_from_text()", + "file_type": "code", + "source_file": "api/routers/graph.py", + "source_location": "L228", + "id": "routers_graph_update_graph_from_text", + "community": 9, + "norm_label": "update_graph_from_text()" + }, + { + "label": "Get graph data for visualization", + "file_type": "rationale", + "source_file": "api/routers/graph.py", + "source_location": "L24", + "id": "routers_graph_rationale_24", + "community": 34, + "norm_label": "get graph data for visualization" + }, + { + "label": "Detect and assign community IDs to all entities using connected-components (WCC)", + "file_type": "rationale", + "source_file": "api/routers/graph.py", + "source_location": "L113", + "id": "routers_graph_rationale_113", + "community": 53, + "norm_label": "detect and assign community ids to all entities using connected-components (wcc)" + }, + { + "label": "List top communities with entity counts", + "file_type": "rationale", + "source_file": "api/routers/graph.py", + "source_location": "L130", + "id": "routers_graph_rationale_130", + "community": 58, + "norm_label": "list top communities with entity counts" + }, + { + "label": "Export the knowledge graph in multiple formats. Supported: json, cypher, gr", + "file_type": "rationale", + "source_file": "api/routers/graph.py", + "source_location": "L154", + "id": "routers_graph_rationale_154", + "community": 55, + "norm_label": "export the knowledge graph in multiple formats. supported: json, cypher, gr" + }, + { + "label": "Merge raw text directly into the live knowledge graph. Entities and relat", + "file_type": "rationale", + "source_file": "api/routers/graph.py", + "source_location": "L232", + "id": "routers_graph_rationale_232", + "community": 9, + "norm_label": "merge raw text directly into the live knowledge graph. entities and relat" + }, + { + "label": "memory.py", + "file_type": "code", + "source_file": "api/routers/memory.py", + "source_location": "L1", + "id": "api_routers_memory_py", + "community": 14, + "norm_label": "memory.py" + }, + { + "label": "list_conversations()", + "file_type": "code", + "source_file": "api/routers/memory.py", + "source_location": "L19", + "id": "routers_memory_list_conversations", + "community": 31, + "norm_label": "list_conversations()" + }, + { + "label": "get_conversation()", + "file_type": "code", + "source_file": "api/routers/memory.py", + "source_location": "L41", + "id": "routers_memory_get_conversation", + "community": 31, + "norm_label": "get_conversation()" + }, + { + "label": "delete_conversation()", + "file_type": "code", + "source_file": "api/routers/memory.py", + "source_location": "L89", + "id": "routers_memory_delete_conversation", + "community": 56, + "norm_label": "delete_conversation()" + }, + { + "label": "List all conversation threads for current user", + "file_type": "rationale", + "source_file": "api/routers/memory.py", + "source_location": "L20", + "id": "routers_memory_rationale_20", + "community": 31, + "norm_label": "list all conversation threads for current user" + }, + { + "label": "Get a specific conversation thread and its messages", + "file_type": "rationale", + "source_file": "api/routers/memory.py", + "source_location": "L45", + "id": "routers_memory_rationale_45", + "community": 31, + "norm_label": "get a specific conversation thread and its messages" + }, + { + "label": "Delete a conversation thread", + "file_type": "rationale", + "source_file": "api/routers/memory.py", + "source_location": "L93", + "id": "routers_memory_rationale_93", + "community": 56, + "norm_label": "delete a conversation thread" + }, + { + "label": "ontology.py", + "file_type": "code", + "source_file": "api/routers/ontology.py", + "source_location": "L1", + "id": "api_routers_ontology_py", + "community": 14, + "norm_label": "ontology.py" + }, + { + "label": "get_ontology()", + "file_type": "code", + "source_file": "api/routers/ontology.py", + "source_location": "L23", + "id": "routers_ontology_get_ontology", + "community": 12, + "norm_label": "get_ontology()" + }, + { + "label": "get_ontology_stats()", + "file_type": "code", + "source_file": "api/routers/ontology.py", + "source_location": "L53", + "id": "routers_ontology_get_ontology_stats", + "community": 54, + "norm_label": "get_ontology_stats()" + }, + { + "label": "refine_ontology()", + "file_type": "code", + "source_file": "api/routers/ontology.py", + "source_location": "L99", + "id": "routers_ontology_refine_ontology", + "community": 12, + "norm_label": "refine_ontology()" + }, + { + "label": "update_ontology()", + "file_type": "code", + "source_file": "api/routers/ontology.py", + "source_location": "L152", + "id": "routers_ontology_update_ontology", + "community": 12, + "norm_label": "update_ontology()" + }, + { + "label": "trigger_drift_detection()", + "file_type": "code", + "source_file": "api/routers/ontology.py", + "source_location": "L195", + "id": "routers_ontology_trigger_drift_detection", + "community": 0, + "norm_label": "trigger_drift_detection()" + }, + { + "label": "list_drift_reports()", + "file_type": "code", + "source_file": "api/routers/ontology.py", + "source_location": "L229", + "id": "routers_ontology_list_drift_reports", + "community": 0, + "norm_label": "list_drift_reports()" + }, + { + "label": "approve_drift_report()", + "file_type": "code", + "source_file": "api/routers/ontology.py", + "source_location": "L258", + "id": "routers_ontology_approve_drift_report", + "community": 0, + "norm_label": "approve_drift_report()" + }, + { + "label": "reject_drift_report()", + "file_type": "code", + "source_file": "api/routers/ontology.py", + "source_location": "L281", + "id": "routers_ontology_reject_drift_report", + "community": 0, + "norm_label": "reject_drift_report()" + }, + { + "label": "Get current ontology schema", + "file_type": "rationale", + "source_file": "api/routers/ontology.py", + "source_location": "L24", + "id": "routers_ontology_rationale_24", + "community": 12, + "norm_label": "get current ontology schema" + }, + { + "label": "Return entity type counts and relationship type counts, optionally filtered to a", + "file_type": "rationale", + "source_file": "api/routers/ontology.py", + "source_location": "L57", + "id": "routers_ontology_rationale_57", + "community": 54, + "norm_label": "return entity type counts and relationship type counts, optionally filtered to a" + }, + { + "label": "Use LLM to suggest ontology improvements based on current graph data + optional", + "file_type": "rationale", + "source_file": "api/routers/ontology.py", + "source_location": "L103", + "id": "routers_ontology_rationale_103", + "community": 12, + "norm_label": "use llm to suggest ontology improvements based on current graph data + optional" + }, + { + "label": "Update ontology schema (admin only)", + "file_type": "rationale", + "source_file": "api/routers/ontology.py", + "source_location": "L156", + "id": "routers_ontology_rationale_156", + "community": 12, + "norm_label": "update ontology schema (admin only)" + }, + { + "label": "Manually trigger a drift detection cycle. Samples random chunks, proposes a", + "file_type": "rationale", + "source_file": "api/routers/ontology.py", + "source_location": "L199", + "id": "routers_ontology_rationale_199", + "community": 0, + "norm_label": "manually trigger a drift detection cycle. samples random chunks, proposes a" + }, + { + "label": "List all drift reports, optionally filtered by status (pending/approved/rejected", + "file_type": "rationale", + "source_file": "api/routers/ontology.py", + "source_location": "L234", + "id": "routers_ontology_rationale_234", + "community": 0, + "norm_label": "list all drift reports, optionally filtered by status (pending/approved/rejected" + }, + { + "label": "Approve a drift report: merge the new entity/relationship types into the li", + "file_type": "rationale", + "source_file": "api/routers/ontology.py", + "source_location": "L262", + "id": "routers_ontology_rationale_262", + "community": 0, + "norm_label": "approve a drift report: merge the new entity/relationship types into the li" + }, + { + "label": "Reject a drift report without applying any ontology changes.", + "file_type": "rationale", + "source_file": "api/routers/ontology.py", + "source_location": "L285", + "id": "routers_ontology_rationale_285", + "community": 0, + "norm_label": "reject a drift report without applying any ontology changes." + }, + { + "label": "query.py", + "file_type": "code", + "source_file": "api/routers/query.py", + "source_location": "L1", + "id": "api_routers_query_py", + "community": 14, + "norm_label": "query.py" + }, + { + "label": "query()", + "file_type": "code", + "source_file": "api/routers/query.py", + "source_location": "L19", + "id": "routers_query_query", + "community": 23, + "norm_label": "query()" + }, + { + "label": "Execute agentic query with dynamic tool selection. When streaming=True retu", + "file_type": "rationale", + "source_file": "api/routers/query.py", + "source_location": "L23", + "id": "routers_query_rationale_23", + "community": 23, + "norm_label": "execute agentic query with dynamic tool selection. when streaming=true retu" + }, + { + "label": "report.py", + "file_type": "code", + "source_file": "api/routers/report.py", + "source_location": "L1", + "id": "api_routers_report_py", + "community": 14, + "norm_label": "report.py" + }, + { + "label": "generate_report()", + "file_type": "code", + "source_file": "api/routers/report.py", + "source_location": "L19", + "id": "routers_report_generate_report", + "community": 10, + "norm_label": "generate_report()" + }, + { + "label": "Generate an analytical report using the full ReACT ReportAgent. The agent", + "file_type": "rationale", + "source_file": "api/routers/report.py", + "source_location": "L23", + "id": "routers_report_rationale_23", + "community": 10, + "norm_label": "generate an analytical report using the full react reportagent. the agent" + }, + { + "label": "system.py", + "file_type": "code", + "source_file": "api/routers/system.py", + "source_location": "L1", + "id": "api_routers_system_py", + "community": 26, + "norm_label": "system.py" + }, + { + "label": "health_check()", + "file_type": "code", + "source_file": "api/routers/system.py", + "source_location": "L24", + "id": "routers_system_health_check", + "community": 26, + "norm_label": "health_check()" + }, + { + "label": "get_system_stats()", + "file_type": "code", + "source_file": "api/routers/system.py", + "source_location": "L74", + "id": "routers_system_get_system_stats", + "community": 26, + "norm_label": "get_system_stats()" + }, + { + "label": "get_my_stats()", + "file_type": "code", + "source_file": "api/routers/system.py", + "source_location": "L111", + "id": "routers_system_get_my_stats", + "community": 26, + "norm_label": "get_my_stats()" + }, + { + "label": "get_supported_formats()", + "file_type": "code", + "source_file": "api/routers/system.py", + "source_location": "L149", + "id": "routers_system_get_supported_formats", + "community": 26, + "norm_label": "get_supported_formats()" + }, + { + "label": "Get system statistics", + "file_type": "rationale", + "source_file": "api/routers/system.py", + "source_location": "L75", + "id": "routers_system_rationale_75", + "community": 26, + "norm_label": "get system statistics" + }, + { + "label": "Get activity stats for the currently authenticated user.", + "file_type": "rationale", + "source_file": "api/routers/system.py", + "source_location": "L112", + "id": "routers_system_rationale_112", + "community": 26, + "norm_label": "get activity stats for the currently authenticated user." + }, + { + "label": "List supported ingestion file formats", + "file_type": "rationale", + "source_file": "api/routers/system.py", + "source_location": "L150", + "id": "routers_system_rationale_150", + "community": 26, + "norm_label": "list supported ingestion file formats" + }, + { + "label": "abstractions.py", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L1", + "id": "core_abstractions_py", + "community": 3, + "norm_label": "abstractions.py" + }, + { + "label": "ABC", + "file_type": "code", + "source_file": "", + "source_location": "", + "id": "abc", + "community": 18, + "norm_label": "abc" + }, + { + "label": "connect()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L15", + "id": "core_abstractions_connect", + "community": 28, + "norm_label": "connect()" + }, + { + "label": "disconnect()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L20", + "id": "core_abstractions_disconnect", + "community": 3, + "norm_label": "disconnect()" + }, + { + "label": "create_node()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L25", + "id": "core_abstractions_create_node", + "community": 3, + "norm_label": "create_node()" + }, + { + "label": "create_relationship()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L38", + "id": "core_abstractions_create_relationship", + "community": 3, + "norm_label": "create_relationship()" + }, + { + "label": "execute_query()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L51", + "id": "core_abstractions_execute_query", + "community": 4, + "norm_label": "execute_query()" + }, + { + "label": "find_path()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L65", + "id": "core_abstractions_find_path", + "community": 3, + "norm_label": "find_path()" + }, + { + "label": "get_neighbors()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L80", + "id": "core_abstractions_get_neighbors", + "community": 3, + "norm_label": "get_neighbors()" + }, + { + "label": "merge_entities()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L94", + "id": "core_abstractions_merge_entities", + "community": 3, + "norm_label": "merge_entities()" + }, + { + "label": "add_vectors()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L122", + "id": "core_abstractions_add_vectors", + "community": 3, + "norm_label": "add_vectors()" + }, + { + "label": "search()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L142", + "id": "core_abstractions_search", + "community": 3, + "norm_label": "search()" + }, + { + "label": "delete_vectors()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L162", + "id": "core_abstractions_delete_vectors", + "community": 3, + "norm_label": "delete_vectors()" + }, + { + "label": "complete()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L176", + "id": "core_abstractions_complete", + "community": 3, + "norm_label": "complete()" + }, + { + "label": "complete_structured()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L198", + "id": "core_abstractions_complete_structured", + "community": 3, + "norm_label": "complete_structured()" + }, + { + "label": "embed()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L218", + "id": "core_abstractions_embed", + "community": 3, + "norm_label": "embed()" + }, + { + "label": "embed_batch()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L231", + "id": "core_abstractions_embed_batch", + "community": 3, + "norm_label": "embed_batch()" + }, + { + "label": "resolve()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L248", + "id": "core_abstractions_resolve", + "community": 17, + "norm_label": "resolve()" + }, + { + "label": "compute_similarity()", + "file_type": "code", + "source_file": "core/abstractions.py", + "source_location": "L266", + "id": "core_abstractions_compute_similarity", + "community": 17, + "norm_label": "compute_similarity()" + }, + { + "label": "Abstract base classes for pluggable components Ensures no vendor lock-in and ea", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L1", + "id": "core_abstractions_rationale_1", + "community": 3, + "norm_label": "abstract base classes for pluggable components ensures no vendor lock-in and ea" + }, + { + "label": "Abstract interface for graph database operations", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L12", + "id": "core_abstractions_rationale_12", + "community": 18, + "norm_label": "abstract interface for graph database operations" + }, + { + "label": "Establish connection to graph database", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L16", + "id": "core_abstractions_rationale_16", + "community": 60, + "norm_label": "establish connection to graph database" + }, + { + "label": "Close connection to graph database", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L21", + "id": "core_abstractions_rationale_21", + "community": 61, + "norm_label": "close connection to graph database" + }, + { + "label": "Create a node in the graph Args: entity: Entity", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L26", + "id": "core_abstractions_rationale_26", + "community": 62, + "norm_label": "create a node in the graph args: entity: entity" + }, + { + "label": "Create a relationship between nodes Args: relati", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L39", + "id": "core_abstractions_rationale_39", + "community": 63, + "norm_label": "create a relationship between nodes args: relati" + }, + { + "label": "Execute a raw query (Cypher for Neo4j, Gremlin for Neptune) A", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L52", + "id": "core_abstractions_rationale_52", + "community": 64, + "norm_label": "execute a raw query (cypher for neo4j, gremlin for neptune) a" + }, + { + "label": "Find paths between two entities Args: source: So", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L66", + "id": "core_abstractions_rationale_66", + "community": 65, + "norm_label": "find paths between two entities args: source: so" + }, + { + "label": "Get neighboring entities Args: entity_name: Enti", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L81", + "id": "core_abstractions_rationale_81", + "community": 66, + "norm_label": "get neighboring entities args: entity_name: enti" + }, + { + "label": "Merge duplicate entities Args: entity1_id: First", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L95", + "id": "core_abstractions_rationale_95", + "community": 67, + "norm_label": "merge duplicate entities args: entity1_id: first" + }, + { + "label": "Close connection to vector store", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L118", + "id": "core_abstractions_rationale_118", + "community": 68, + "norm_label": "close connection to vector store" + }, + { + "label": "Add vectors to the store Args: vectors: List of", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L128", + "id": "core_abstractions_rationale_128", + "community": 69, + "norm_label": "add vectors to the store args: vectors: list of" + }, + { + "label": "Search for similar vectors Args: query_vector: Q", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L148", + "id": "core_abstractions_rationale_148", + "community": 70, + "norm_label": "search for similar vectors args: query_vector: q" + }, + { + "label": "Delete vectors by ID Args: ids: Vector IDs to de", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L163", + "id": "core_abstractions_rationale_163", + "community": 71, + "norm_label": "delete vectors by id args: ids: vector ids to de" + }, + { + "label": "Abstract interface for LLM operations", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L173", + "id": "core_abstractions_rationale_173", + "community": 18, + "norm_label": "abstract interface for llm operations" + }, + { + "label": "Generate completion from prompt Args: prompt: Us", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L183", + "id": "core_abstractions_rationale_183", + "community": 72, + "norm_label": "generate completion from prompt args: prompt: us" + }, + { + "label": "Generate structured output conforming to a model Args:", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L204", + "id": "core_abstractions_rationale_204", + "community": 73, + "norm_label": "generate structured output conforming to a model args:" + }, + { + "label": "Abstract interface for entity resolution", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L245", + "id": "core_abstractions_rationale_245", + "community": 18, + "norm_label": "abstract interface for entity resolution" + }, + { + "label": "Resolve and deduplicate entities Args: entities:", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L253", + "id": "core_abstractions_rationale_253", + "community": 74, + "norm_label": "resolve and deduplicate entities args: entities:" + }, + { + "label": "Compute similarity between two entities Args: en", + "file_type": "rationale", + "source_file": "core/abstractions.py", + "source_location": "L267", + "id": "core_abstractions_rationale_267", + "community": 75, + "norm_label": "compute similarity between two entities args: en" + }, + { + "label": "SemanticEntityResolver", + "file_type": "code", + "source_file": "core/entity_resolver.py", + "source_location": "L17", + "id": "core_entity_resolver_semanticentityresolver", + "community": 17, + "norm_label": "semanticentityresolver" + }, + { + "label": "EntityResolver", + "file_type": "code", + "source_file": "", + "source_location": "", + "id": "entityresolver", + "community": 18, + "norm_label": "entityresolver" + }, + { + "label": "._find_duplicates()", + "file_type": "code", + "source_file": "core/entity_resolver.py", + "source_location": "L61", + "id": "core_entity_resolver_semanticentityresolver_find_duplicates", + "community": 17, + "norm_label": "._find_duplicates()" + }, + { + "label": "._string_similarity()", + "file_type": "code", + "source_file": "core/entity_resolver.py", + "source_location": "L131", + "id": "core_entity_resolver_semanticentityresolver_string_similarity", + "community": 17, + "norm_label": "._string_similarity()" + }, + { + "label": "._property_similarity()", + "file_type": "code", + "source_file": "core/entity_resolver.py", + "source_location": "L135", + "id": "core_entity_resolver_semanticentityresolver_property_similarity", + "community": 17, + "norm_label": "._property_similarity()" + }, + { + "label": "._embedding_similarity()", + "file_type": "code", + "source_file": "core/entity_resolver.py", + "source_location": "L170", + "id": "core_entity_resolver_semanticentityresolver_embedding_similarity", + "community": 17, + "norm_label": "._embedding_similarity()" + }, + { + "label": "._get_entity_embedding()", + "file_type": "code", + "source_file": "core/entity_resolver.py", + "source_location": "L190", + "id": "core_entity_resolver_semanticentityresolver_get_entity_embedding", + "community": 17, + "norm_label": "._get_entity_embedding()" + }, + { + "label": "Entity resolution and deduplication Uses multi-stage blocking and semantic simi", + "file_type": "rationale", + "source_file": "core/entity_resolver.py", + "source_location": "L1", + "id": "core_entity_resolver_rationale_1", + "community": 18, + "norm_label": "entity resolution and deduplication uses multi-stage blocking and semantic simi" + }, + { + "label": "Production-grade entity resolution with: 1. Blocking by label and phonetic", + "file_type": "rationale", + "source_file": "core/entity_resolver.py", + "source_location": "L18", + "id": "core_entity_resolver_rationale_18", + "community": 17, + "norm_label": "production-grade entity resolution with: 1. blocking by label and phonetic" + }, + { + "label": "Resolve and deduplicate entities Returns: Dictio", + "file_type": "rationale", + "source_file": "core/entity_resolver.py", + "source_location": "L34", + "id": "core_entity_resolver_rationale_34", + "community": 17, + "norm_label": "resolve and deduplicate entities returns: dictio" + }, + { + "label": "Find duplicate entities within a group", + "file_type": "rationale", + "source_file": "core/entity_resolver.py", + "source_location": "L66", + "id": "core_entity_resolver_rationale_66", + "community": 17, + "norm_label": "find duplicate entities within a group" + }, + { + "label": "Compute similarity between two entities Combines: -", + "file_type": "rationale", + "source_file": "core/entity_resolver.py", + "source_location": "L108", + "id": "core_entity_resolver_rationale_108", + "community": 17, + "norm_label": "compute similarity between two entities combines: -" + }, + { + "label": "Compute string similarity using SequenceMatcher", + "file_type": "rationale", + "source_file": "core/entity_resolver.py", + "source_location": "L132", + "id": "core_entity_resolver_rationale_132", + "community": 17, + "norm_label": "compute string similarity using sequencematcher" + }, + { + "label": "Compute property overlap similarity", + "file_type": "rationale", + "source_file": "core/entity_resolver.py", + "source_location": "L136", + "id": "core_entity_resolver_rationale_136", + "community": 17, + "norm_label": "compute property overlap similarity" + }, + { + "label": "Compute cosine similarity between entity embeddings", + "file_type": "rationale", + "source_file": "core/entity_resolver.py", + "source_location": "L171", + "id": "core_entity_resolver_rationale_171", + "community": 17, + "norm_label": "compute cosine similarity between entity embeddings" + }, + { + "label": "Get or compute entity embedding with caching", + "file_type": "rationale", + "source_file": "core/entity_resolver.py", + "source_location": "L191", + "id": "core_entity_resolver_rationale_191", + "community": 17, + "norm_label": "get or compute entity embedding with caching" + }, + { + "label": "llm_factory.py", + "file_type": "code", + "source_file": "core/llm_factory.py", + "source_location": "L1", + "id": "core_llm_factory_py", + "community": 19, + "norm_label": "llm_factory.py" + }, + { + "label": "UnifiedLLMProvider", + "file_type": "code", + "source_file": "core/llm_factory.py", + "source_location": "L32", + "id": "core_llm_factory_unifiedllmprovider", + "community": 19, + "norm_label": "unifiedllmprovider" + }, + { + "label": "LLMProvider", + "file_type": "code", + "source_file": "", + "source_location": "", + "id": "llmprovider", + "community": 18, + "norm_label": "llmprovider" + }, + { + "label": "._initialize_provider()", + "file_type": "code", + "source_file": "core/llm_factory.py", + "source_location": "L45", + "id": "core_llm_factory_unifiedllmprovider_initialize_provider", + "community": 15, + "norm_label": "._initialize_provider()" + }, + { + "label": "LLMFactory", + "file_type": "code", + "source_file": "core/llm_factory.py", + "source_location": "L271", + "id": "core_llm_factory_llmfactory", + "community": 0, + "norm_label": "llmfactory" + }, + { + "label": "create()", + "file_type": "code", + "source_file": "core/llm_factory.py", + "source_location": "L275", + "id": "core_llm_factory_create", + "community": 19, + "norm_label": "create()" + }, + { + "label": "create_from_config()", + "file_type": "code", + "source_file": "core/llm_factory.py", + "source_location": "L289", + "id": "core_llm_factory_create_from_config", + "community": 19, + "norm_label": "create_from_config()" + }, + { + "label": "Unified LLM provider that wraps multiple backends Provides consistent inter", + "file_type": "rationale", + "source_file": "core/llm_factory.py", + "source_location": "L33", + "id": "core_llm_factory_rationale_33", + "community": 19, + "norm_label": "unified llm provider that wraps multiple backends provides consistent inter" + }, + { + "label": "Initialize the appropriate LLM provider", + "file_type": "rationale", + "source_file": "core/llm_factory.py", + "source_location": "L46", + "id": "core_llm_factory_rationale_46", + "community": 15, + "norm_label": "initialize the appropriate llm provider" + }, + { + "label": "Generate completion from prompt with automatic rate-limit retry", + "file_type": "rationale", + "source_file": "core/llm_factory.py", + "source_location": "L96", + "id": "core_llm_factory_rationale_96", + "community": 3, + "norm_label": "generate completion from prompt with automatic rate-limit retry" + }, + { + "label": "Generate structured output conforming to a Pydantic model Uses JSON mod", + "file_type": "rationale", + "source_file": "core/llm_factory.py", + "source_location": "L135", + "id": "core_llm_factory_rationale_135", + "community": 3, + "norm_label": "generate structured output conforming to a pydantic model uses json mod" + }, + { + "label": "Generate embedding for text", + "file_type": "rationale", + "source_file": "core/llm_factory.py", + "source_location": "L183", + "id": "core_llm_factory_rationale_183", + "community": 3, + "norm_label": "generate embedding for text" + }, + { + "label": "Generate embeddings for multiple texts", + "file_type": "rationale", + "source_file": "core/llm_factory.py", + "source_location": "L227", + "id": "core_llm_factory_rationale_227", + "community": 3, + "norm_label": "generate embeddings for multiple texts" + }, + { + "label": "Factory for creating LLM providers", + "file_type": "rationale", + "source_file": "core/llm_factory.py", + "source_location": "L272", + "id": "core_llm_factory_rationale_272", + "community": 0, + "norm_label": "factory for creating llm providers" + }, + { + "label": "Create an LLM provider instance Args: provider:", + "file_type": "rationale", + "source_file": "core/llm_factory.py", + "source_location": "L276", + "id": "core_llm_factory_rationale_276", + "community": 76, + "norm_label": "create an llm provider instance args: provider:" + }, + { + "label": "Create provider from configuration dictionary Args:", + "file_type": "rationale", + "source_file": "core/llm_factory.py", + "source_location": "L290", + "id": "core_llm_factory_rationale_290", + "community": 77, + "norm_label": "create provider from configuration dictionary args:" + }, + { + "label": "NodeType", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L12", + "id": "core_models_nodetype", + "community": 24, + "norm_label": "nodetype" + }, + { + "label": "str", + "file_type": "code", + "source_file": "", + "source_location": "", + "id": "str", + "community": 3, + "norm_label": "str" + }, + { + "label": "Enum", + "file_type": "code", + "source_file": "", + "source_location": "", + "id": "enum", + "community": 24, + "norm_label": "enum" + }, + { + "label": "RelationType", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L19", + "id": "core_models_relationtype", + "community": 24, + "norm_label": "relationtype" + }, + { + "label": "OntologyVersion", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L27", + "id": "core_models_ontologyversion", + "community": 24, + "norm_label": "ontologyversion" + }, + { + "label": "Entity", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L34", + "id": "core_models_entity", + "community": 18, + "norm_label": "entity" + }, + { + "label": "Relationship", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L64", + "id": "core_models_relationship", + "community": 18, + "norm_label": "relationship" + }, + { + "label": "Chunk", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L93", + "id": "core_models_chunk", + "community": 9, + "norm_label": "chunk" + }, + { + "label": "Document", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L107", + "id": "core_models_document", + "community": 1, + "norm_label": "document" + }, + { + "label": "OntologySchema", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L120", + "id": "core_models_ontologyschema", + "community": 0, + "norm_label": "ontologyschema" + }, + { + "label": "ExtractionResult", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L130", + "id": "core_models_extractionresult", + "community": 1, + "norm_label": "extractionresult" + }, + { + "label": "ConfidenceJudgment", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L139", + "id": "core_models_confidencejudgment", + "community": 23, + "norm_label": "confidencejudgment" + }, + { + "label": "QueryResult", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L148", + "id": "core_models_queryresult", + "community": 23, + "norm_label": "queryresult" + }, + { + "label": "AgentState", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L163", + "id": "core_models_agentstate", + "community": 43, + "norm_label": "agentstate" + }, + { + "label": "SearchMethod", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L174", + "id": "core_models_searchmethod", + "community": 24, + "norm_label": "searchmethod" + }, + { + "label": "EvalResult", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L184", + "id": "core_models_evalresult", + "community": 33, + "norm_label": "evalresult" + }, + { + "label": "CommunityReport", + "file_type": "code", + "source_file": "core/models.py", + "source_location": "L198", + "id": "core_models_communityreport", + "community": 10, + "norm_label": "communityreport" + }, + { + "label": "Core data models for Graph RAG Service Extended with: temporal fields, tenant s", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L1", + "id": "core_models_rationale_1", + "community": 1, + "norm_label": "core data models for graph rag service extended with: temporal fields, tenant s" + }, + { + "label": "Types of nodes in the knowledge graph", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L13", + "id": "core_models_rationale_13", + "community": 24, + "norm_label": "types of nodes in the knowledge graph" + }, + { + "label": "Types of relationships in the knowledge graph", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L20", + "id": "core_models_rationale_20", + "community": 24, + "norm_label": "types of relationships in the knowledge graph" + }, + { + "label": "Ontology versions for schema evolution", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L28", + "id": "core_models_rationale_28", + "community": 24, + "norm_label": "ontology versions for schema evolution" + }, + { + "label": "Entity in the knowledge graph", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L35", + "id": "core_models_rationale_35", + "community": 18, + "norm_label": "entity in the knowledge graph" + }, + { + "label": "Relationship between entities", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L65", + "id": "core_models_rationale_65", + "community": 18, + "norm_label": "relationship between entities" + }, + { + "label": "Text chunk from document", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L94", + "id": "core_models_rationale_94", + "community": 9, + "norm_label": "text chunk from document" + }, + { + "label": "Ontology schema definition", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L121", + "id": "core_models_rationale_121", + "community": 0, + "norm_label": "ontology schema definition" + }, + { + "label": "Result of entity/relationship extraction", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L131", + "id": "core_models_rationale_131", + "community": 1, + "norm_label": "result of entity/relationship extraction" + }, + { + "label": "LLM-as-a-Judge confidence assessment (Gap #4)", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L140", + "id": "core_models_rationale_140", + "community": 23, + "norm_label": "llm-as-a-judge confidence assessment (gap #4)" + }, + { + "label": "Result of a retrieval query \u2014 enriched with confidence judgment", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L149", + "id": "core_models_rationale_149", + "community": 23, + "norm_label": "result of a retrieval query \u2014 enriched with confidence judgment" + }, + { + "label": "State of the agentic retrieval system", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L164", + "id": "core_models_rationale_164", + "community": 43, + "norm_label": "state of the agentic retrieval system" + }, + { + "label": "Search methods for retrieval", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L175", + "id": "core_models_rationale_175", + "community": 24, + "norm_label": "search methods for retrieval" + }, + { + "label": "RAG evaluation result (Gap #8)", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L185", + "id": "core_models_rationale_185", + "community": 33, + "norm_label": "rag evaluation result (gap #8)" + }, + { + "label": "Community summary for LazyGraphRAG (Gap #2)", + "file_type": "rationale", + "source_file": "core/models.py", + "source_location": "L199", + "id": "core_models_rationale_199", + "community": 10, + "norm_label": "community summary for lazygraphrag (gap #2)" + }, + { + "label": "neo4j_store.py", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L1", + "id": "core_neo4j_store_py", + "community": 4, + "norm_label": "neo4j_store.py" + }, + { + "label": "GraphStore", + "file_type": "code", + "source_file": "", + "source_location": "", + "id": "graphstore", + "community": 18, + "norm_label": "graphstore" + }, + { + "label": "VectorStore", + "file_type": "code", + "source_file": "", + "source_location": "", + "id": "vectorstore", + "community": 18, + "norm_label": "vectorstore" + }, + { + "label": "._create_vector_index()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L63", + "id": "core_neo4j_store_neo4jstore_create_vector_index", + "community": 28, + "norm_label": "._create_vector_index()" + }, + { + "label": "._create_fulltext_index()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L92", + "id": "core_neo4j_store_neo4jstore_create_fulltext_index", + "community": 28, + "norm_label": "._create_fulltext_index()" + }, + { + "label": "._create_constraints()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L108", + "id": "core_neo4j_store_neo4jstore_create_constraints", + "community": 28, + "norm_label": "._create_constraints()" + }, + { + "label": ".bm25_search()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L324", + "id": "core_neo4j_store_neo4jstore_bm25_search", + "community": 4, + "norm_label": ".bm25_search()" + }, + { + "label": ".get_communities()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L367", + "id": "core_neo4j_store_neo4jstore_get_communities", + "community": 4, + "norm_label": ".get_communities()" + }, + { + "label": ".get_community_entities()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L402", + "id": "core_neo4j_store_neo4jstore_get_community_entities", + "community": 4, + "norm_label": ".get_community_entities()" + }, + { + "label": ".assign_community_ids()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L417", + "id": "core_neo4j_store_neo4jstore_assign_community_ids", + "community": 4, + "norm_label": ".assign_community_ids()" + }, + { + "label": ".get_entities_at_time()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L457", + "id": "core_neo4j_store_neo4jstore_get_entities_at_time", + "community": 4, + "norm_label": ".get_entities_at_time()" + }, + { + "label": "._fallback_search()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L568", + "id": "core_neo4j_store_neo4jstore_fallback_search", + "community": 2, + "norm_label": "._fallback_search()" + }, + { + "label": ".save_ontology()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L595", + "id": "core_neo4j_store_neo4jstore_save_ontology", + "community": 4, + "norm_label": ".save_ontology()" + }, + { + "label": ".load_ontology()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L618", + "id": "core_neo4j_store_neo4jstore_load_ontology", + "community": 0, + "norm_label": ".load_ontology()" + }, + { + "label": ".save_eval_result()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L646", + "id": "core_neo4j_store_neo4jstore_save_eval_result", + "community": 4, + "norm_label": ".save_eval_result()" + }, + { + "label": ".get_eval_results()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L680", + "id": "core_neo4j_store_neo4jstore_get_eval_results", + "community": 4, + "norm_label": ".get_eval_results()" + }, + { + "label": ".get_semantic_cache()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L695", + "id": "core_neo4j_store_neo4jstore_get_semantic_cache", + "community": 4, + "norm_label": ".get_semantic_cache()" + }, + { + "label": ".create_chunk_with_entities()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L733", + "id": "core_neo4j_store_neo4jstore_create_chunk_with_entities", + "community": 3, + "norm_label": ".create_chunk_with_entities()" + }, + { + "label": ".create_user()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L787", + "id": "core_neo4j_store_neo4jstore_create_user", + "community": 4, + "norm_label": ".create_user()" + }, + { + "label": ".get_user()", + "file_type": "code", + "source_file": "core/neo4j_store.py", + "source_location": "L819", + "id": "core_neo4j_store_neo4jstore_get_user", + "community": 4, + "norm_label": ".get_user()" + }, + { + "label": "Neo4j implementation of GraphStore and VectorStore Extended with: - Gap #1:", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L1", + "id": "core_neo4j_store_rationale_1", + "community": 4, + "norm_label": "neo4j implementation of graphstore and vectorstore extended with: - gap #1:" + }, + { + "label": "Unified Neo4j implementation for both graph and vector storage Uses Neo4j 5", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L26", + "id": "core_neo4j_store_rationale_26", + "community": 4, + "norm_label": "unified neo4j implementation for both graph and vector storage uses neo4j 5" + }, + { + "label": "Establish connection to Neo4j", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L45", + "id": "core_neo4j_store_rationale_45", + "community": 28, + "norm_label": "establish connection to neo4j" + }, + { + "label": "Close connection to Neo4j", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L57", + "id": "core_neo4j_store_rationale_57", + "community": 3, + "norm_label": "close connection to neo4j" + }, + { + "label": "Create vector index for semantic search and semantic caching", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L64", + "id": "core_neo4j_store_rationale_64", + "community": 28, + "norm_label": "create vector index for semantic search and semantic caching" + }, + { + "label": "Gap #1 \u2014 Create BM25 fulltext index for hybrid search Neo4j 5.x support", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L93", + "id": "core_neo4j_store_rationale_93", + "community": 28, + "norm_label": "gap #1 \u2014 create bm25 fulltext index for hybrid search neo4j 5.x support" + }, + { + "label": "Create constraints and indexes for performance", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L109", + "id": "core_neo4j_store_rationale_109", + "community": 28, + "norm_label": "create constraints and indexes for performance" + }, + { + "label": "Create an entity node in the graph with temporal + tenant support", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L130", + "id": "core_neo4j_store_rationale_130", + "community": 3, + "norm_label": "create an entity node in the graph with temporal + tenant support" + }, + { + "label": "Create a relationship between entities with temporal support (Gap #5)", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L166", + "id": "core_neo4j_store_rationale_166", + "community": 3, + "norm_label": "create a relationship between entities with temporal support (gap #5)" + }, + { + "label": "Execute a Cypher query with timeout", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L220", + "id": "core_neo4j_store_rationale_220", + "community": 4, + "norm_label": "execute a cypher query with timeout" + }, + { + "label": "Get neighboring entities", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L270", + "id": "core_neo4j_store_rationale_270", + "community": 3, + "norm_label": "get neighboring entities" + }, + { + "label": "Merge duplicate entities", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L295", + "id": "core_neo4j_store_rationale_295", + "community": 3, + "norm_label": "merge duplicate entities" + }, + { + "label": "BM25 fulltext (Lucene) search over chunk text. Returns results with BM2", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L331", + "id": "core_neo4j_store_rationale_331", + "community": 4, + "norm_label": "bm25 fulltext (lucene) search over chunk text. returns results with bm2" + }, + { + "label": "Get community groupings for a list of entities. Uses community_id prope", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L372", + "id": "core_neo4j_store_rationale_372", + "community": 4, + "norm_label": "get community groupings for a list of entities. uses community_id prope" + }, + { + "label": "Get all entities in a community", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L407", + "id": "core_neo4j_store_rationale_407", + "community": 4, + "norm_label": "get all entities in a community" + }, + { + "label": "Server-side community assignment using Neo4j GDS Weakly Connected Components (WC", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L418", + "id": "core_neo4j_store_rationale_418", + "community": 4, + "norm_label": "server-side community assignment using neo4j gds weakly connected components (wc" + }, + { + "label": "Get relationships valid at a specific point in time", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L463", + "id": "core_neo4j_store_rationale_463", + "community": 4, + "norm_label": "get relationships valid at a specific point in time" + }, + { + "label": "Add chunk vectors to Neo4j", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L487", + "id": "core_neo4j_store_rationale_487", + "community": 3, + "norm_label": "add chunk vectors to neo4j" + }, + { + "label": "Vector similarity search using Neo4j vector index", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L536", + "id": "core_neo4j_store_rationale_536", + "community": 3, + "norm_label": "vector similarity search using neo4j vector index" + }, + { + "label": "Fallback search without vector index", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L569", + "id": "core_neo4j_store_rationale_569", + "community": 2, + "norm_label": "fallback search without vector index" + }, + { + "label": "Persist ontology to Neo4j", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L596", + "id": "core_neo4j_store_rationale_596", + "community": 4, + "norm_label": "persist ontology to neo4j" + }, + { + "label": "Load persisted ontology from Neo4j. Returns OntologySchema or None.", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L619", + "id": "core_neo4j_store_rationale_619", + "community": 0, + "norm_label": "load persisted ontology from neo4j. returns ontologyschema or none." + }, + { + "label": "Persist an EvalResult to Neo4j for dashboard trending (Gap #8)", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L647", + "id": "core_neo4j_store_rationale_647", + "community": 4, + "norm_label": "persist an evalresult to neo4j for dashboard trending (gap #8)" + }, + { + "label": "Retrieve eval results for the dashboard (Gap #8)", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L681", + "id": "core_neo4j_store_rationale_681", + "community": 4, + "norm_label": "retrieve eval results for the dashboard (gap #8)" + }, + { + "label": "Find a semantically identical query in the cache", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L696", + "id": "core_neo4j_store_rationale_696", + "community": 4, + "norm_label": "find a semantically identical query in the cache" + }, + { + "label": "Store a query answer in the semantic cache", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L712", + "id": "core_neo4j_store_rationale_712", + "community": 4, + "norm_label": "store a query answer in the semantic cache" + }, + { + "label": "Create a chunk and link it to entities it mentions", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L738", + "id": "core_neo4j_store_rationale_738", + "community": 3, + "norm_label": "create a chunk and link it to entities it mentions" + }, + { + "label": "Create a new user node in the graph", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L788", + "id": "core_neo4j_store_rationale_788", + "community": 4, + "norm_label": "create a new user node in the graph" + }, + { + "label": "Get a user by username", + "file_type": "rationale", + "source_file": "core/neo4j_store.py", + "source_location": "L820", + "id": "core_neo4j_store_rationale_820", + "community": 4, + "norm_label": "get a user by username" + }, + { + "label": "storage.py", + "file_type": "code", + "source_file": "core/storage.py", + "source_location": "L1", + "id": "core_storage_py", + "community": 14, + "norm_label": "storage.py" + }, + { + "label": "StorageProvider", + "file_type": "code", + "source_file": "core/storage.py", + "source_location": "L7", + "id": "core_storage_storageprovider", + "community": 27, + "norm_label": "storageprovider" + }, + { + "label": "._normalize_filename()", + "file_type": "code", + "source_file": "core/storage.py", + "source_location": "L8", + "id": "core_storage_storageprovider_normalize_filename", + "community": 27, + "norm_label": "._normalize_filename()" + }, + { + "label": "LocalStorage", + "file_type": "code", + "source_file": "core/storage.py", + "source_location": "L20", + "id": "core_storage_localstorage", + "community": 27, + "norm_label": "localstorage" + }, + { + "label": ".save_file()", + "file_type": "code", + "source_file": "core/storage.py", + "source_location": "L25", + "id": "core_storage_localstorage_save_file", + "community": 27, + "norm_label": ".save_file()" + }, + { + "label": ".read_file()", + "file_type": "code", + "source_file": "core/storage.py", + "source_location": "L34", + "id": "core_storage_localstorage_read_file", + "community": 27, + "norm_label": ".read_file()" + }, + { + "label": ".delete_file()", + "file_type": "code", + "source_file": "core/storage.py", + "source_location": "L40", + "id": "core_storage_localstorage_delete_file", + "community": 27, + "norm_label": ".delete_file()" + }, + { + "label": "get_storage()", + "file_type": "code", + "source_file": "core/storage.py", + "source_location": "L51", + "id": "core_storage_get_storage", + "community": 27, + "norm_label": "get_storage()" + }, + { + "label": "Returns the appropriate storage provider based on configuration. Currently", + "file_type": "rationale", + "source_file": "core/storage.py", + "source_location": "L52", + "id": "core_storage_rationale_52", + "community": 27, + "norm_label": "returns the appropriate storage provider based on configuration. currently" + }, + { + "label": "Core module initialization", + "file_type": "rationale", + "source_file": "core/__init__.py", + "source_location": "L1", + "id": "core_init_rationale_1", + "community": 7, + "norm_label": "core module initialization" + }, + { + "label": "document_processor.py", + "file_type": "code", + "source_file": "ingestion/document_processor.py", + "source_location": "L1", + "id": "ingestion_document_processor_py", + "community": 8, + "norm_label": "document_processor.py" + }, + { + "label": ".process_document()", + "file_type": "code", + "source_file": "ingestion/document_processor.py", + "source_location": "L61", + "id": "ingestion_document_processor_documentprocessor_process_document", + "community": 8, + "norm_label": ".process_document()" + }, + { + "label": ".chunk_document()", + "file_type": "code", + "source_file": "ingestion/document_processor.py", + "source_location": "L88", + "id": "ingestion_document_processor_documentprocessor_chunk_document", + "community": 8, + "norm_label": ".chunk_document()" + }, + { + "label": "._extract_text()", + "file_type": "code", + "source_file": "ingestion/document_processor.py", + "source_location": "L124", + "id": "ingestion_document_processor_documentprocessor_extract_text", + "community": 8, + "norm_label": "._extract_text()" + }, + { + "label": "._extract_pdf()", + "file_type": "code", + "source_file": "ingestion/document_processor.py", + "source_location": "L148", + "id": "ingestion_document_processor_documentprocessor_extract_pdf", + "community": 8, + "norm_label": "._extract_pdf()" + }, + { + "label": "._extract_txt()", + "file_type": "code", + "source_file": "ingestion/document_processor.py", + "source_location": "L169", + "id": "ingestion_document_processor_documentprocessor_extract_txt", + "community": 8, + "norm_label": "._extract_txt()" + }, + { + "label": "._extract_docx()", + "file_type": "code", + "source_file": "ingestion/document_processor.py", + "source_location": "L174", + "id": "ingestion_document_processor_documentprocessor_extract_docx", + "community": 8, + "norm_label": "._extract_docx()" + }, + { + "label": "._extract_csv()", + "file_type": "code", + "source_file": "ingestion/document_processor.py", + "source_location": "L196", + "id": "ingestion_document_processor_documentprocessor_extract_csv", + "community": 8, + "norm_label": "._extract_csv()" + }, + { + "label": "._extract_excel()", + "file_type": "code", + "source_file": "ingestion/document_processor.py", + "source_location": "L224", + "id": "ingestion_document_processor_documentprocessor_extract_excel", + "community": 8, + "norm_label": "._extract_excel()" + }, + { + "label": "._extract_pptx()", + "file_type": "code", + "source_file": "ingestion/document_processor.py", + "source_location": "L263", + "id": "ingestion_document_processor_documentprocessor_extract_pptx", + "community": 8, + "norm_label": "._extract_pptx()" + }, + { + "label": "._extract_json()", + "file_type": "code", + "source_file": "ingestion/document_processor.py", + "source_location": "L305", + "id": "ingestion_document_processor_documentprocessor_extract_json", + "community": 8, + "norm_label": "._extract_json()" + }, + { + "label": "._generate_document_id()", + "file_type": "code", + "source_file": "ingestion/document_processor.py", + "source_location": "L344", + "id": "ingestion_document_processor_documentprocessor_generate_document_id", + "community": 8, + "norm_label": "._generate_document_id()" + }, + { + "label": "Process and chunk documents for ingestion. Supports: PDF, TXT, MD, DOCX, CS", + "file_type": "rationale", + "source_file": "ingestion/document_processor.py", + "source_location": "L32", + "id": "ingestion_document_processor_rationale_32", + "community": 8, + "norm_label": "process and chunk documents for ingestion. supports: pdf, txt, md, docx, cs" + }, + { + "label": "Process a document and extract metadata Args: file_path:", + "file_type": "rationale", + "source_file": "ingestion/document_processor.py", + "source_location": "L62", + "id": "ingestion_document_processor_rationale_62", + "community": 8, + "norm_label": "process a document and extract metadata args: file_path:" + }, + { + "label": "Chunk document into smaller pieces Args: document: Docum", + "file_type": "rationale", + "source_file": "ingestion/document_processor.py", + "source_location": "L92", + "id": "ingestion_document_processor_rationale_92", + "community": 8, + "norm_label": "chunk document into smaller pieces args: document: docum" + }, + { + "label": "Extract text from file based on type", + "file_type": "rationale", + "source_file": "ingestion/document_processor.py", + "source_location": "L125", + "id": "ingestion_document_processor_rationale_125", + "community": 8, + "norm_label": "extract text from file based on type" + }, + { + "label": "Extract text from PDF using LlamaParse (if available) or pypdf", + "file_type": "rationale", + "source_file": "ingestion/document_processor.py", + "source_location": "L149", + "id": "ingestion_document_processor_rationale_149", + "community": 8, + "norm_label": "extract text from pdf using llamaparse (if available) or pypdf" + }, + { + "label": "Extract text from TXT/MD file", + "file_type": "rationale", + "source_file": "ingestion/document_processor.py", + "source_location": "L170", + "id": "ingestion_document_processor_rationale_170", + "community": 8, + "norm_label": "extract text from txt/md file" + }, + { + "label": "Extract text from DOCX", + "file_type": "rationale", + "source_file": "ingestion/document_processor.py", + "source_location": "L175", + "id": "ingestion_document_processor_rationale_175", + "community": 8, + "norm_label": "extract text from docx" + }, + { + "label": "Extract CSV as structured text. Each row becomes a natural language sen", + "file_type": "rationale", + "source_file": "ingestion/document_processor.py", + "source_location": "L197", + "id": "ingestion_document_processor_rationale_197", + "community": 8, + "norm_label": "extract csv as structured text. each row becomes a natural language sen" + }, + { + "label": "Extract Excel spreadsheet content. Processes all sheets, converts to st", + "file_type": "rationale", + "source_file": "ingestion/document_processor.py", + "source_location": "L225", + "id": "ingestion_document_processor_rationale_225", + "community": 8, + "norm_label": "extract excel spreadsheet content. processes all sheets, converts to st" + }, + { + "label": "Extract PowerPoint presentation content. Processes each slide: title +", + "file_type": "rationale", + "source_file": "ingestion/document_processor.py", + "source_location": "L264", + "id": "ingestion_document_processor_rationale_264", + "community": 8, + "norm_label": "extract powerpoint presentation content. processes each slide: title +" + }, + { + "label": "Extract JSON content. Flattens nested structures into readable text for", + "file_type": "rationale", + "source_file": "ingestion/document_processor.py", + "source_location": "L306", + "id": "ingestion_document_processor_rationale_306", + "community": 8, + "norm_label": "extract json content. flattens nested structures into readable text for" + }, + { + "label": "Generate unique document ID based on file content", + "file_type": "rationale", + "source_file": "ingestion/document_processor.py", + "source_location": "L345", + "id": "ingestion_document_processor_rationale_345", + "community": 8, + "norm_label": "generate unique document id based on file content" + }, + { + "label": "extractor.py", + "file_type": "code", + "source_file": "ingestion/extractor.py", + "source_location": "L1", + "id": "ingestion_extractor_py", + "community": 18, + "norm_label": "extractor.py" + }, + { + "label": "KnowledgeExtractor", + "file_type": "code", + "source_file": "ingestion/extractor.py", + "source_location": "L18", + "id": "ingestion_extractor_knowledgeextractor", + "community": 9, + "norm_label": "knowledgeextractor" + }, + { + "label": ".extract_from_chunk()", + "file_type": "code", + "source_file": "ingestion/extractor.py", + "source_location": "L33", + "id": "ingestion_extractor_knowledgeextractor_extract_from_chunk", + "community": 9, + "norm_label": ".extract_from_chunk()" + }, + { + "label": "._create_extraction_prompt()", + "file_type": "code", + "source_file": "ingestion/extractor.py", + "source_location": "L190", + "id": "ingestion_extractor_knowledgeextractor_create_extraction_prompt", + "community": 9, + "norm_label": "._create_extraction_prompt()" + }, + { + "label": "._parse_extraction()", + "file_type": "code", + "source_file": "ingestion/extractor.py", + "source_location": "L228", + "id": "ingestion_extractor_knowledgeextractor_parse_extraction", + "community": 18, + "norm_label": "._parse_extraction()" + }, + { + "label": ".generate_embeddings()", + "file_type": "code", + "source_file": "ingestion/extractor.py", + "source_location": "L285", + "id": "ingestion_extractor_knowledgeextractor_generate_embeddings", + "community": 9, + "norm_label": ".generate_embeddings()" + }, + { + "label": "Extract entities and relationships from text chunks Includes hallucination", + "file_type": "rationale", + "source_file": "ingestion/extractor.py", + "source_location": "L19", + "id": "ingestion_extractor_rationale_19", + "community": 9, + "norm_label": "extract entities and relationships from text chunks includes hallucination" + }, + { + "label": "Extract entities and relationships from a single chunk Args:", + "file_type": "rationale", + "source_file": "ingestion/extractor.py", + "source_location": "L38", + "id": "ingestion_extractor_rationale_38", + "community": 9, + "norm_label": "extract entities and relationships from a single chunk args:" + }, + { + "label": "Extract from multiple chunks with entity resolution Args:", + "file_type": "rationale", + "source_file": "ingestion/extractor.py", + "source_location": "L94", + "id": "ingestion_extractor_rationale_94", + "community": 9, + "norm_label": "extract from multiple chunks with entity resolution args:" + }, + { + "label": "Create extraction prompt with ontology constraints", + "file_type": "rationale", + "source_file": "ingestion/extractor.py", + "source_location": "L195", + "id": "ingestion_extractor_rationale_195", + "community": 9, + "norm_label": "create extraction prompt with ontology constraints" + }, + { + "label": "Parse and validate extraction response", + "file_type": "rationale", + "source_file": "ingestion/extractor.py", + "source_location": "L233", + "id": "ingestion_extractor_rationale_233", + "community": 18, + "norm_label": "parse and validate extraction response" + }, + { + "label": "Generate embeddings for chunks Args: chunks: Chu", + "file_type": "rationale", + "source_file": "ingestion/extractor.py", + "source_location": "L289", + "id": "ingestion_extractor_rationale_289", + "community": 9, + "norm_label": "generate embeddings for chunks args: chunks: chu" + }, + { + "label": "ontology_generator.py", + "file_type": "code", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L1", + "id": "ingestion_ontology_generator_py", + "community": 36, + "norm_label": "ontology_generator.py" + }, + { + "label": ".generate_initial_ontology()", + "file_type": "code", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L25", + "id": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", + "community": 0, + "norm_label": ".generate_initial_ontology()" + }, + { + "label": ".get_extraction_prompt()", + "file_type": "code", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L195", + "id": "ingestion_ontology_generator_ontologygenerator_get_extraction_prompt", + "community": 36, + "norm_label": ".get_extraction_prompt()" + }, + { + "label": "Ontology generation and evolution LLM-powered automatic ontology discovery with", + "file_type": "rationale", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L1", + "id": "ingestion_ontology_generator_rationale_1", + "community": 36, + "norm_label": "ontology generation and evolution llm-powered automatic ontology discovery with" + }, + { + "label": "Generate and refine ontologies from documents Supports versioning and evolu", + "file_type": "rationale", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L16", + "id": "ingestion_ontology_generator_rationale_16", + "community": 36, + "norm_label": "generate and refine ontologies from documents supports versioning and evolu" + }, + { + "label": "Generate initial ontology from sample chunks Args:", + "file_type": "rationale", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L30", + "id": "ingestion_ontology_generator_rationale_30", + "community": 0, + "norm_label": "generate initial ontology from sample chunks args:" + }, + { + "label": "Refine ontology based on new data or human feedback Args:", + "file_type": "rationale", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L121", + "id": "ingestion_ontology_generator_rationale_121", + "community": 12, + "norm_label": "refine ontology based on new data or human feedback args:" + }, + { + "label": "Generate extraction prompt based on ontology schema Args:", + "file_type": "rationale", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L200", + "id": "ingestion_ontology_generator_rationale_200", + "community": 36, + "norm_label": "generate extraction prompt based on ontology schema args:" + }, + { + "label": "persona_generator.py", + "file_type": "code", + "source_file": "ingestion/persona_generator.py", + "source_location": "L1", + "id": "ingestion_persona_generator_py", + "community": 19, + "norm_label": "persona_generator.py" + }, + { + "label": "PersonaProfile", + "file_type": "code", + "source_file": "ingestion/persona_generator.py", + "source_location": "L18", + "id": "ingestion_persona_generator_personaprofile", + "community": 19, + "norm_label": "personaprofile" + }, + { + "label": ".generate_personas_for_type()", + "file_type": "code", + "source_file": "ingestion/persona_generator.py", + "source_location": "L35", + "id": "ingestion_persona_generator_personagenerator_generate_personas_for_type", + "community": 19, + "norm_label": ".generate_personas_for_type()" + }, + { + "label": "Converts inert graph nodes into living Agent Personas. Runs locally against", + "file_type": "rationale", + "source_file": "ingestion/persona_generator.py", + "source_location": "L26", + "id": "ingestion_persona_generator_rationale_26", + "community": 19, + "norm_label": "converts inert graph nodes into living agent personas. runs locally against" + }, + { + "label": "Finds all entities of a certain type that lack a persona, generates the", + "file_type": "rationale", + "source_file": "ingestion/persona_generator.py", + "source_location": "L36", + "id": "ingestion_persona_generator_rationale_36", + "community": 19, + "norm_label": "finds all entities of a certain type that lack a persona, generates the" + }, + { + "label": "pipeline.py", + "file_type": "code", + "source_file": "ingestion/pipeline.py", + "source_location": "L1", + "id": "ingestion_pipeline_py", + "community": 14, + "norm_label": "pipeline.py" + }, + { + "label": "IngestionPipeline", + "file_type": "code", + "source_file": "ingestion/pipeline.py", + "source_location": "L20", + "id": "ingestion_pipeline_ingestionpipeline", + "community": 12, + "norm_label": "ingestionpipeline" + }, + { + "label": ".initialize()", + "file_type": "code", + "source_file": "ingestion/pipeline.py", + "source_location": "L41", + "id": "ingestion_pipeline_ingestionpipeline_initialize", + "community": 12, + "norm_label": ".initialize()" + }, + { + "label": ".close()", + "file_type": "code", + "source_file": "ingestion/pipeline.py", + "source_location": "L46", + "id": "ingestion_pipeline_ingestionpipeline_close", + "community": 12, + "norm_label": ".close()" + }, + { + "label": ".ingest_document()", + "file_type": "code", + "source_file": "ingestion/pipeline.py", + "source_location": "L51", + "id": "ingestion_pipeline_ingestionpipeline_ingest_document", + "community": 12, + "norm_label": ".ingest_document()" + }, + { + "label": "._store_extraction()", + "file_type": "code", + "source_file": "ingestion/pipeline.py", + "source_location": "L147", + "id": "ingestion_pipeline_ingestionpipeline_store_extraction", + "community": 12, + "norm_label": "._store_extraction()" + }, + { + "label": "End-to-end ingestion pipeline: 1. Process document -> chunks 2. Genera", + "file_type": "rationale", + "source_file": "ingestion/pipeline.py", + "source_location": "L21", + "id": "ingestion_pipeline_rationale_21", + "community": 12, + "norm_label": "end-to-end ingestion pipeline: 1. process document -> chunks 2. genera" + }, + { + "label": "Ingest a single document through the full pipeline Args:", + "file_type": "rationale", + "source_file": "ingestion/pipeline.py", + "source_location": "L58", + "id": "ingestion_pipeline_rationale_58", + "community": 12, + "norm_label": "ingest a single document through the full pipeline args:" + }, + { + "label": "Ingest multiple documents Args: file_paths: List", + "file_type": "rationale", + "source_file": "ingestion/pipeline.py", + "source_location": "L125", + "id": "ingestion_pipeline_rationale_125", + "community": 12, + "norm_label": "ingest multiple documents args: file_paths: list" + }, + { + "label": "Store extraction results in graph database", + "file_type": "rationale", + "source_file": "ingestion/pipeline.py", + "source_location": "L152", + "id": "ingestion_pipeline_rationale_152", + "community": 12, + "norm_label": "store extraction results in graph database" + }, + { + "label": "web_crawler.py", + "file_type": "code", + "source_file": "ingestion/web_crawler.py", + "source_location": "L1", + "id": "ingestion_web_crawler_py", + "community": 25, + "norm_label": "web_crawler.py" + }, + { + "label": "._is_same_domain()", + "file_type": "code", + "source_file": "ingestion/web_crawler.py", + "source_location": "L21", + "id": "ingestion_web_crawler_webcrawler_is_same_domain", + "community": 25, + "norm_label": "._is_same_domain()" + }, + { + "label": "._crawl_recursive()", + "file_type": "code", + "source_file": "ingestion/web_crawler.py", + "source_location": "L26", + "id": "ingestion_web_crawler_webcrawler_crawl_recursive", + "community": 25, + "norm_label": "._crawl_recursive()" + }, + { + "label": ".crawl()", + "file_type": "code", + "source_file": "ingestion/web_crawler.py", + "source_location": "L70", + "id": "ingestion_web_crawler_webcrawler_crawl", + "community": 25, + "norm_label": ".crawl()" + }, + { + "label": "Advanced Web Crawler utilizing Crawl4AI to orchestrate Headless Playwright brows", + "file_type": "rationale", + "source_file": "ingestion/web_crawler.py", + "source_location": "L9", + "id": "ingestion_web_crawler_rationale_9", + "community": 25, + "norm_label": "advanced web crawler utilizing crawl4ai to orchestrate headless playwright brows" + }, + { + "label": "Ingestion module initialization", + "file_type": "rationale", + "source_file": "ingestion/__init__.py", + "source_location": "L1", + "id": "ingestion_init_rationale_1", + "community": 7, + "norm_label": "ingestion module initialization" + }, + { + "label": "tracing.py", + "file_type": "code", + "source_file": "observability/tracing.py", + "source_location": "L1", + "id": "observability_tracing_py", + "community": 20, + "norm_label": "tracing.py" + }, + { + "label": "setup_observability()", + "file_type": "code", + "source_file": "observability/tracing.py", + "source_location": "L27", + "id": "observability_tracing_setup_observability", + "community": 20, + "norm_label": "setup_observability()" + }, + { + "label": "get_tracer()", + "file_type": "code", + "source_file": "observability/tracing.py", + "source_location": "L70", + "id": "observability_tracing_get_tracer", + "community": 20, + "norm_label": "get_tracer()" + }, + { + "label": "get_meter()", + "file_type": "code", + "source_file": "observability/tracing.py", + "source_location": "L75", + "id": "observability_tracing_get_meter", + "community": 20, + "norm_label": "get_meter()" + }, + { + "label": "OpenTelemetry instrumentation for observability Provides tracing, metrics, and", + "file_type": "rationale", + "source_file": "observability/tracing.py", + "source_location": "L1", + "id": "observability_tracing_rationale_1", + "community": 20, + "norm_label": "opentelemetry instrumentation for observability provides tracing, metrics, and" + }, + { + "label": "Setup OpenTelemetry observability Args: app: FastAPI applica", + "file_type": "rationale", + "source_file": "observability/tracing.py", + "source_location": "L28", + "id": "observability_tracing_rationale_28", + "community": 20, + "norm_label": "setup opentelemetry observability args: app: fastapi applica" + }, + { + "label": "Get tracer for instrumentation", + "file_type": "rationale", + "source_file": "observability/tracing.py", + "source_location": "L71", + "id": "observability_tracing_rationale_71", + "community": 20, + "norm_label": "get tracer for instrumentation" + }, + { + "label": "Get meter for metrics", + "file_type": "rationale", + "source_file": "observability/tracing.py", + "source_location": "L76", + "id": "observability_tracing_rationale_76", + "community": 20, + "norm_label": "get meter for metrics" + }, + { + "label": "Observability module initialization", + "file_type": "rationale", + "source_file": "observability/__init__.py", + "source_location": "L1", + "id": "observability_init_rationale_1", + "community": 7, + "norm_label": "observability module initialization" + }, + { + "label": "agent.py", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L1", + "id": "retrieval_agent_py", + "community": 14, + "norm_label": "agent.py" + }, + { + "label": "AgentRetrievalSystem", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L38", + "id": "retrieval_agent_agentretrievalsystem", + "community": 2, + "norm_label": "agentretrievalsystem" + }, + { + "label": "._cache_get()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L78", + "id": "retrieval_agent_agentretrievalsystem_cache_get", + "community": 2, + "norm_label": "._cache_get()" + }, + { + "label": "._cache_set()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L99", + "id": "retrieval_agent_agentretrievalsystem_cache_set", + "community": 2, + "norm_label": "._cache_set()" + }, + { + "label": "._build_graph()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L112", + "id": "retrieval_agent_agentretrievalsystem_build_graph", + "community": 2, + "norm_label": "._build_graph()" + }, + { + "label": ".astream()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L262", + "id": "retrieval_agent_agentretrievalsystem_astream", + "community": 2, + "norm_label": ".astream()" + }, + { + "label": "._make_initial_state()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L283", + "id": "retrieval_agent_agentretrievalsystem_make_initial_state", + "community": 2, + "norm_label": "._make_initial_state()" + }, + { + "label": "._decompose_query()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L308", + "id": "retrieval_agent_agentretrievalsystem_decompose_query", + "community": 2, + "norm_label": "._decompose_query()" + }, + { + "label": "._route_query()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L340", + "id": "retrieval_agent_agentretrievalsystem_route_query", + "community": 2, + "norm_label": "._route_query()" + }, + { + "label": "._should_continue()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L414", + "id": "retrieval_agent_agentretrievalsystem_should_continue", + "community": 2, + "norm_label": "._should_continue()" + }, + { + "label": "._cypher_query()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L462", + "id": "retrieval_agent_agentretrievalsystem_cypher_query", + "community": 2, + "norm_label": "._cypher_query()" + }, + { + "label": "._community_search()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L511", + "id": "retrieval_agent_agentretrievalsystem_community_search", + "community": 2, + "norm_label": "._community_search()" + }, + { + "label": "._hippo_search()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L539", + "id": "retrieval_agent_agentretrievalsystem_hippo_search", + "community": 2, + "norm_label": "._hippo_search()" + }, + { + "label": "._drift_expand()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L552", + "id": "retrieval_agent_agentretrievalsystem_drift_expand", + "community": 2, + "norm_label": "._drift_expand()" + }, + { + "label": "._got_explore()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L596", + "id": "retrieval_agent_agentretrievalsystem_got_explore", + "community": 2, + "norm_label": "._got_explore()" + }, + { + "label": "._score_tool_results()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L638", + "id": "retrieval_agent_agentretrievalsystem_score_tool_results", + "community": 2, + "norm_label": "._score_tool_results()" + }, + { + "label": "._synthesize_response()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L663", + "id": "retrieval_agent_agentretrievalsystem_synthesize_response", + "community": 2, + "norm_label": "._synthesize_response()" + }, + { + "label": "._format_context()", + "file_type": "code", + "source_file": "retrieval/agent.py", + "source_location": "L702", + "id": "retrieval_agent_agentretrievalsystem_format_context", + "community": 2, + "norm_label": "._format_context()" + }, + { + "label": "Agentic retrieval system that: 1. Checks semantic cache (Gap #8) 2. De", + "file_type": "rationale", + "source_file": "retrieval/agent.py", + "source_location": "L39", + "id": "retrieval_agent_rationale_39", + "community": 2, + "norm_label": "agentic retrieval system that: 1. checks semantic cache (gap #8) 2. de" + }, + { + "label": "Check semantic cache for a query result", + "file_type": "rationale", + "source_file": "retrieval/agent.py", + "source_location": "L79", + "id": "retrieval_agent_rationale_79", + "community": 2, + "norm_label": "check semantic cache for a query result" + }, + { + "label": "Store query result in semantic cache", + "file_type": "rationale", + "source_file": "retrieval/agent.py", + "source_location": "L100", + "id": "retrieval_agent_rationale_100", + "community": 2, + "norm_label": "store query result in semantic cache" + }, + { + "label": "Build LangGraph workflow with all new nodes", + "file_type": "rationale", + "source_file": "retrieval/agent.py", + "source_location": "L113", + "id": "retrieval_agent_rationale_113", + "community": 2, + "norm_label": "build langgraph workflow with all new nodes" + }, + { + "label": "Stream partial states after each graph node for SSE.", + "file_type": "rationale", + "source_file": "retrieval/agent.py", + "source_location": "L270", + "id": "retrieval_agent_rationale_270", + "community": 2, + "norm_label": "stream partial states after each graph node for sse." + }, + { + "label": "Gap #1 \u2014 Hybrid BM25+Vector with RRF", + "file_type": "rationale", + "source_file": "retrieval/agent.py", + "source_location": "L432", + "id": "retrieval_agent_rationale_432", + "community": 35, + "norm_label": "gap #1 \u2014 hybrid bm25+vector with rrf" + }, + { + "label": "Gap #2 \u2014 LazyGraphRAG community summary search", + "file_type": "rationale", + "source_file": "retrieval/agent.py", + "source_location": "L512", + "id": "retrieval_agent_rationale_512", + "community": 2, + "norm_label": "gap #2 \u2014 lazygraphrag community summary search" + }, + { + "label": "MiroFish \u2014 Entity profile summary search via EntitySummarySearchTool", + "file_type": "rationale", + "source_file": "retrieval/agent.py", + "source_location": "L525", + "id": "retrieval_agent_rationale_525", + "community": 15, + "norm_label": "mirofish \u2014 entity profile summary search via entitysummarysearchtool" + }, + { + "label": "HippoRAG Personalized PageRank search", + "file_type": "rationale", + "source_file": "retrieval/agent.py", + "source_location": "L540", + "id": "retrieval_agent_rationale_540", + "community": 2, + "norm_label": "hipporag personalized pagerank search" + }, + { + "label": "Gap #3 \u2014 DRIFT iterative expansion. Generates follow-up queries based o", + "file_type": "rationale", + "source_file": "retrieval/agent.py", + "source_location": "L553", + "id": "retrieval_agent_rationale_553", + "community": 2, + "norm_label": "gap #3 \u2014 drift iterative expansion. generates follow-up queries based o" + }, + { + "label": "Gap #6 \u2014 Graph-of-Thought: run all retrieval strategies in parallel, sc", + "file_type": "rationale", + "source_file": "retrieval/agent.py", + "source_location": "L597", + "id": "retrieval_agent_rationale_597", + "community": 2, + "norm_label": "gap #6 \u2014 graph-of-thought: run all retrieval strategies in parallel, sc" + }, + { + "label": "Quick scoring of how relevant tool results are for a query", + "file_type": "rationale", + "source_file": "retrieval/agent.py", + "source_location": "L643", + "id": "retrieval_agent_rationale_643", + "community": 2, + "norm_label": "quick scoring of how relevant tool results are for a query" + }, + { + "label": "Fallback on timeout \u2014 use hybrid search directly", + "file_type": "rationale", + "source_file": "retrieval/agent.py", + "source_location": "L720", + "id": "retrieval_agent_rationale_720", + "community": 2, + "norm_label": "fallback on timeout \u2014 use hybrid search directly" + }, + { + "label": "communities.py", + "file_type": "code", + "source_file": "retrieval/communities.py", + "source_location": "L1", + "id": "retrieval_communities_py", + "community": 10, + "norm_label": "communities.py" + }, + { + "label": "CommunityBuilder", + "file_type": "code", + "source_file": "retrieval/communities.py", + "source_location": "L20", + "id": "retrieval_communities_communitybuilder", + "community": 10, + "norm_label": "communitybuilder" + }, + { + "label": ".run_leiden()", + "file_type": "code", + "source_file": "retrieval/communities.py", + "source_location": "L30", + "id": "retrieval_communities_communitybuilder_run_leiden", + "community": 10, + "norm_label": ".run_leiden()" + }, + { + "label": ".create_community_nodes()", + "file_type": "code", + "source_file": "retrieval/communities.py", + "source_location": "L109", + "id": "retrieval_communities_communitybuilder_create_community_nodes", + "community": 10, + "norm_label": ".create_community_nodes()" + }, + { + "label": ".collect_evidence()", + "file_type": "code", + "source_file": "retrieval/communities.py", + "source_location": "L133", + "id": "retrieval_communities_communitybuilder_collect_evidence", + "community": 10, + "norm_label": ".collect_evidence()" + }, + { + "label": ".embed_report()", + "file_type": "code", + "source_file": "retrieval/communities.py", + "source_location": "L243", + "id": "retrieval_communities_communitybuilder_embed_report", + "community": 10, + "norm_label": ".embed_report()" + }, + { + "label": "Implements Hierarchical Leiden Community Detection and Report Generation for", + "file_type": "rationale", + "source_file": "retrieval/communities.py", + "source_location": "L21", + "id": "retrieval_communities_rationale_21", + "community": 10, + "norm_label": "implements hierarchical leiden community detection and report generation for" + }, + { + "label": "Runs the Hierarchical Leiden algorithm using Neo4j GDS.", + "file_type": "rationale", + "source_file": "retrieval/communities.py", + "source_location": "L31", + "id": "retrieval_communities_rationale_31", + "community": 10, + "norm_label": "runs the hierarchical leiden algorithm using neo4j gds." + }, + { + "label": "Creates (Community) nodes in Neo4j based on the 'leiden_community' properties.", + "file_type": "rationale", + "source_file": "retrieval/communities.py", + "source_location": "L110", + "id": "retrieval_communities_rationale_110", + "community": 10, + "norm_label": "creates (community) nodes in neo4j based on the 'leiden_community' properties." + }, + { + "label": "Collects chunks related to the entities in a community.", + "file_type": "rationale", + "source_file": "retrieval/communities.py", + "source_location": "L134", + "id": "retrieval_communities_rationale_134", + "community": 10, + "norm_label": "collects chunks related to the entities in a community." + }, + { + "label": "Generates an LLM-backed community report.", + "file_type": "rationale", + "source_file": "retrieval/communities.py", + "source_location": "L155", + "id": "retrieval_communities_rationale_155", + "community": 10, + "norm_label": "generates an llm-backed community report." + }, + { + "label": "Embeds the community report summary to allow semantic search over communities.", + "file_type": "rationale", + "source_file": "retrieval/communities.py", + "source_location": "L244", + "id": "retrieval_communities_rationale_244", + "community": 10, + "norm_label": "embeds the community report summary to allow semantic search over communities." + }, + { + "label": "hippo_tool.py", + "file_type": "code", + "source_file": "retrieval/hippo_tool.py", + "source_location": "L1", + "id": "retrieval_hippo_tool_py", + "community": 19, + "norm_label": "hippo_tool.py" + }, + { + "label": "HippoRAGTool", + "file_type": "code", + "source_file": "retrieval/hippo_tool.py", + "source_location": "L9", + "id": "retrieval_hippo_tool_hipporagtool", + "community": 19, + "norm_label": "hipporagtool" + }, + { + "label": "Implements HippoRAG-style Personalized PageRank (PPR) retrieval. Propagates", + "file_type": "rationale", + "source_file": "retrieval/hippo_tool.py", + "source_location": "L10", + "id": "retrieval_hippo_tool_rationale_10", + "community": 19, + "norm_label": "implements hipporag-style personalized pagerank (ppr) retrieval. propagates" + }, + { + "label": "report_agent.py", + "file_type": "code", + "source_file": "retrieval/report_agent.py", + "source_location": "L1", + "id": "retrieval_report_agent_py", + "community": 5, + "norm_label": "report_agent.py" + }, + { + "label": "ReportSection", + "file_type": "code", + "source_file": "retrieval/report_agent.py", + "source_location": "L30", + "id": "retrieval_report_agent_reportsection", + "community": 5, + "norm_label": "reportsection" + }, + { + "label": "ReportResult", + "file_type": "code", + "source_file": "retrieval/report_agent.py", + "source_location": "L35", + "id": "retrieval_report_agent_reportresult", + "community": 10, + "norm_label": "reportresult" + }, + { + "label": "InsightForgeTool", + "file_type": "code", + "source_file": "retrieval/report_agent.py", + "source_location": "L48", + "id": "retrieval_report_agent_insightforgetool", + "community": 13, + "norm_label": "insightforgetool" + }, + { + "label": "PanoramaSearchTool", + "file_type": "code", + "source_file": "retrieval/report_agent.py", + "source_location": "L146", + "id": "retrieval_report_agent_panoramasearchtool", + "community": 5, + "norm_label": "panoramasearchtool" + }, + { + "label": "QuickSearchTool", + "file_type": "code", + "source_file": "retrieval/report_agent.py", + "source_location": "L196", + "id": "retrieval_report_agent_quicksearchtool", + "community": 13, + "norm_label": "quicksearchtool" + }, + { + "label": "._decompose_topic()", + "file_type": "code", + "source_file": "retrieval/report_agent.py", + "source_location": "L369", + "id": "retrieval_report_agent_reportagent_decompose_topic", + "community": 10, + "norm_label": "._decompose_topic()" + }, + { + "label": "._react_loop()", + "file_type": "code", + "source_file": "retrieval/report_agent.py", + "source_location": "L409", + "id": "retrieval_report_agent_reportagent_react_loop", + "community": 5, + "norm_label": "._react_loop()" + }, + { + "label": "._think()", + "file_type": "code", + "source_file": "retrieval/report_agent.py", + "source_location": "L458", + "id": "retrieval_report_agent_reportagent_think", + "community": 5, + "norm_label": "._think()" + }, + { + "label": "._act()", + "file_type": "code", + "source_file": "retrieval/report_agent.py", + "source_location": "L489", + "id": "retrieval_report_agent_reportagent_act", + "community": 5, + "norm_label": "._act()" + }, + { + "label": "._write_section_with_confidence()", + "file_type": "code", + "source_file": "retrieval/report_agent.py", + "source_location": "L504", + "id": "retrieval_report_agent_reportagent_write_section_with_confidence", + "community": 5, + "norm_label": "._write_section_with_confidence()" + }, + { + "label": "._write_executive_summary()", + "file_type": "code", + "source_file": "retrieval/report_agent.py", + "source_location": "L536", + "id": "retrieval_report_agent_reportagent_write_executive_summary", + "community": 5, + "norm_label": "._write_executive_summary()" + }, + { + "label": "._compile_markdown()", + "file_type": "code", + "source_file": "retrieval/report_agent.py", + "source_location": "L554", + "id": "retrieval_report_agent_reportagent_compile_markdown", + "community": 10, + "norm_label": "._compile_markdown()" + }, + { + "label": "ReportAgent \u2014 Full ReACT Analytical Agent Replaces the 72-line stub with a comp", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L1", + "id": "retrieval_report_agent_rationale_1", + "community": 5, + "norm_label": "reportagent \u2014 full react analytical agent replaces the 72-line stub with a comp" + }, + { + "label": "Broad-spectrum hybrid retriever: merges vector similarity + graph neighborh", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L49", + "id": "retrieval_report_agent_rationale_49", + "community": 13, + "norm_label": "broad-spectrum hybrid retriever: merges vector similarity + graph neighborh" + }, + { + "label": "Macro-level entity sweep: returns all entities of a given type with statist", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L147", + "id": "retrieval_report_agent_rationale_147", + "community": 5, + "norm_label": "macro-level entity sweep: returns all entities of a given type with statist" + }, + { + "label": "Return entities of the given type with their summaries.", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L163", + "id": "retrieval_report_agent_rationale_163", + "community": 13, + "norm_label": "return entities of the given type with their summaries." + }, + { + "label": "Fast single-entity lookup by name with direct 1-hop relationships. Useful f", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L197", + "id": "retrieval_report_agent_rationale_197", + "community": 13, + "norm_label": "fast single-entity lookup by name with direct 1-hop relationships. useful f" + }, + { + "label": "Look up an entity and return its profile + connections.", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L212", + "id": "retrieval_report_agent_rationale_212", + "community": 13, + "norm_label": "look up an entity and return its profile + connections." + }, + { + "label": "Full ReACT analytical reporting agent. Workflow: DECOMPOSE \u2192 Brea", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L272", + "id": "retrieval_report_agent_rationale_272", + "community": 5, + "norm_label": "full react analytical reporting agent. workflow: decompose \u2192 brea" + }, + { + "label": "Generate an analytical report on the given topic. Args:", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L310", + "id": "retrieval_report_agent_rationale_310", + "community": 10, + "norm_label": "generate an analytical report on the given topic. args:" + }, + { + "label": "Ask LLM to decompose the topic into sub-questions.", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L375", + "id": "retrieval_report_agent_rationale_375", + "community": 10, + "norm_label": "ask llm to decompose the topic into sub-questions." + }, + { + "label": "Run a ReACT iteration for one sub-question. Returns (section_content, c", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L412", + "id": "retrieval_report_agent_rationale_412", + "community": 5, + "norm_label": "run a react iteration for one sub-question. returns (section_content, c" + }, + { + "label": "Decide which tool to call next, or return DONE.", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L461", + "id": "retrieval_report_agent_rationale_461", + "community": 5, + "norm_label": "decide which tool to call next, or return done." + }, + { + "label": "Dispatch tool call and return results.", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L492", + "id": "retrieval_report_agent_rationale_492", + "community": 5, + "norm_label": "dispatch tool call and return results." + }, + { + "label": "Generate a report section from retrieved contexts and provide a structured confi", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L507", + "id": "retrieval_report_agent_rationale_507", + "community": 5, + "norm_label": "generate a report section from retrieved contexts and provide a structured confi" + }, + { + "label": "Synthesize all sections into a 3-sentence executive summary.", + "file_type": "rationale", + "source_file": "retrieval/report_agent.py", + "source_location": "L539", + "id": "retrieval_report_agent_rationale_539", + "community": 5, + "norm_label": "synthesize all sections into a 3-sentence executive summary." + }, + { + "label": "tools.py", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L1", + "id": "retrieval_tools_py", + "community": 15, + "norm_label": "tools.py" + }, + { + "label": "HybridSearchTool", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L23", + "id": "retrieval_tools_hybridsearchtool", + "community": 35, + "norm_label": "hybridsearchtool" + }, + { + "label": ".run()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L38", + "id": "retrieval_tools_hybridsearchtool_run", + "community": 13, + "norm_label": ".run()" + }, + { + "label": "._rrf_fuse()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L105", + "id": "retrieval_tools_hybridsearchtool_rrf_fuse", + "community": 35, + "norm_label": "._rrf_fuse()" + }, + { + "label": "VectorSearchTool", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L134", + "id": "retrieval_tools_vectorsearchtool", + "community": 15, + "norm_label": "vectorsearchtool" + }, + { + "label": "CommunitySummaryTool", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L163", + "id": "retrieval_tools_communitysummarytool", + "community": 29, + "norm_label": "communitysummarytool" + }, + { + "label": "._get_redis()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L181", + "id": "retrieval_tools_communitysummarytool_get_redis", + "community": 29, + "norm_label": "._get_redis()" + }, + { + "label": "._find_relevant_entities()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L238", + "id": "retrieval_tools_communitysummarytool_find_relevant_entities", + "community": 29, + "norm_label": "._find_relevant_entities()" + }, + { + "label": "._get_community_summary()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L259", + "id": "retrieval_tools_communitysummarytool_get_community_summary", + "community": 29, + "norm_label": "._get_community_summary()" + }, + { + "label": "GraphTraversalTool", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L321", + "id": "retrieval_tools_graphtraversaltool", + "community": 15, + "norm_label": "graphtraversaltool" + }, + { + "label": "._extract_entities_from_query()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L359", + "id": "retrieval_tools_graphtraversaltool_extract_entities_from_query", + "community": 13, + "norm_label": "._extract_entities_from_query()" + }, + { + "label": "CypherGenerationTool", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L383", + "id": "retrieval_tools_cyphergenerationtool", + "community": 13, + "norm_label": "cyphergenerationtool" + }, + { + "label": "._generate_cypher()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L431", + "id": "retrieval_tools_cyphergenerationtool_generate_cypher", + "community": 13, + "norm_label": "._generate_cypher()" + }, + { + "label": "._validate_cypher()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L467", + "id": "retrieval_tools_cyphergenerationtool_validate_cypher", + "community": 13, + "norm_label": "._validate_cypher()" + }, + { + "label": "._correct_cypher()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L479", + "id": "retrieval_tools_cyphergenerationtool_correct_cypher", + "community": 13, + "norm_label": "._correct_cypher()" + }, + { + "label": "._correct_cypher_with_error()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L496", + "id": "retrieval_tools_cyphergenerationtool_correct_cypher_with_error", + "community": 13, + "norm_label": "._correct_cypher_with_error()" + }, + { + "label": "MetadataFilterTool", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L518", + "id": "retrieval_tools_metadatafiltertool", + "community": 15, + "norm_label": "metadatafiltertool" + }, + { + "label": "LLMJudge", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L567", + "id": "retrieval_tools_llmjudge", + "community": 15, + "norm_label": "llmjudge" + }, + { + "label": ".__init__()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L573", + "id": "retrieval_tools_llmjudge_init", + "community": 15, + "norm_label": ".__init__()" + }, + { + "label": ".score()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L576", + "id": "retrieval_tools_llmjudge_score", + "community": 15, + "norm_label": ".score()" + }, + { + "label": "RAGEvaluator", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L678", + "id": "retrieval_tools_ragevaluator", + "community": 22, + "norm_label": "ragevaluator" + }, + { + "label": ".evaluate()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L687", + "id": "retrieval_tools_ragevaluator_evaluate", + "community": 22, + "norm_label": ".evaluate()" + }, + { + "label": "._faithfulness()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L720", + "id": "retrieval_tools_ragevaluator_faithfulness", + "community": 22, + "norm_label": "._faithfulness()" + }, + { + "label": "._answer_relevancy()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L740", + "id": "retrieval_tools_ragevaluator_answer_relevancy", + "community": 22, + "norm_label": "._answer_relevancy()" + }, + { + "label": "._context_precision()", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L756", + "id": "retrieval_tools_ragevaluator_context_precision", + "community": 22, + "norm_label": "._context_precision()" + }, + { + "label": "EntitySummarySearchTool", + "file_type": "code", + "source_file": "retrieval/tools.py", + "source_location": "L780", + "id": "retrieval_tools_entitysummarysearchtool", + "community": 15, + "norm_label": "entitysummarysearchtool" + }, + { + "label": "Combines dense (vector) and sparse (BM25) retrieval via Reciprocal Rank Fus", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L24", + "id": "retrieval_tools_rationale_24", + "community": 35, + "norm_label": "combines dense (vector) and sparse (bm25) retrieval via reciprocal rank fus" + }, + { + "label": "Run both BM25 and vector search in parallel, then fuse with RRF. Args", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L46", + "id": "retrieval_tools_rationale_46", + "community": 13, + "norm_label": "run both bm25 and vector search in parallel, then fuse with rrf. args" + }, + { + "label": "Weighted Reciprocal Rank Fusion. Returns sorted list of (id, score) tup", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L113", + "id": "retrieval_tools_rationale_113", + "community": 35, + "norm_label": "weighted reciprocal rank fusion. returns sorted list of (id, score) tup" + }, + { + "label": "Vector similarity search tool \u2014 pure dense retrieval", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L135", + "id": "retrieval_tools_rationale_135", + "community": 15, + "norm_label": "vector similarity search tool \u2014 pure dense retrieval" + }, + { + "label": "LazyGraphRAG-style community summarization. Detects entity clusters, genera", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L164", + "id": "retrieval_tools_rationale_164", + "community": 29, + "norm_label": "lazygraphrag-style community summarization. detects entity clusters, genera" + }, + { + "label": "Lazily initialize Redis connection for caching", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L182", + "id": "retrieval_tools_rationale_182", + "community": 29, + "norm_label": "lazily initialize redis connection for caching" + }, + { + "label": "1. Find relevant entities via hybrid search 2. Group by community_id", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L197", + "id": "retrieval_tools_rationale_197", + "community": 13, + "norm_label": "1. find relevant entities via hybrid search 2. group by community_id" + }, + { + "label": "Find entity names most relevant to the query via BM25", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L239", + "id": "retrieval_tools_rationale_239", + "community": 29, + "norm_label": "find entity names most relevant to the query via bm25" + }, + { + "label": "Generate or fetch cached LLM summary for a community", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L265", + "id": "retrieval_tools_rationale_265", + "community": 29, + "norm_label": "generate or fetch cached llm summary for a community" + }, + { + "label": "Graph traversal and path finding tool", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L322", + "id": "retrieval_tools_rationale_322", + "community": 15, + "norm_label": "graph traversal and path finding tool" + }, + { + "label": "Extract entity names from natural language query", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L360", + "id": "retrieval_tools_rationale_360", + "community": 13, + "norm_label": "extract entity names from natural language query" + }, + { + "label": "Text-to-Cypher tool with hallucination guards. Generates Cypher queries fro", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L384", + "id": "retrieval_tools_rationale_384", + "community": 13, + "norm_label": "text-to-cypher tool with hallucination guards. generates cypher queries fro" + }, + { + "label": "Filter-based retrieval using metadata constraints", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L519", + "id": "retrieval_tools_rationale_519", + "community": 15, + "norm_label": "filter-based retrieval using metadata constraints" + }, + { + "label": "LLM-as-a-Judge for real confidence scoring. Replaces the fake len(contexts)", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L568", + "id": "retrieval_tools_rationale_568", + "community": 15, + "norm_label": "llm-as-a-judge for real confidence scoring. replaces the fake len(contexts)" + }, + { + "label": "Evaluate how well the answer is grounded in the retrieved contexts. R", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L582", + "id": "retrieval_tools_rationale_582", + "community": 15, + "norm_label": "evaluate how well the answer is grounded in the retrieved contexts. r" + }, + { + "label": "RAGAS-style evaluation metrics for the quality dashboard. Computes faithful", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L679", + "id": "retrieval_tools_rationale_679", + "community": 22, + "norm_label": "ragas-style evaluation metrics for the quality dashboard. computes faithful" + }, + { + "label": "Run all evaluation metrics in parallel. Returns dict with metric scores", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L694", + "id": "retrieval_tools_rationale_694", + "community": 22, + "norm_label": "run all evaluation metrics in parallel. returns dict with metric scores" + }, + { + "label": "Measure: Are all claims in the answer supported by the contexts?", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L721", + "id": "retrieval_tools_rationale_721", + "community": 22, + "norm_label": "measure: are all claims in the answer supported by the contexts?" + }, + { + "label": "Measure: Does the answer actually address the question?", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L741", + "id": "retrieval_tools_rationale_741", + "community": 22, + "norm_label": "measure: does the answer actually address the question?" + }, + { + "label": "Measure: Are the retrieved contexts useful for answering the question?", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L757", + "id": "retrieval_tools_rationale_757", + "community": 22, + "norm_label": "measure: are the retrieved contexts useful for answering the question?" + }, + { + "label": "Searches entity-level LLM summaries (from EntityEnricher) as a second retri", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L781", + "id": "retrieval_tools_rationale_781", + "community": 15, + "norm_label": "searches entity-level llm summaries (from entityenricher) as a second retri" + }, + { + "label": "Find entities whose summaries are relevant to the query. Uses fulltex", + "file_type": "rationale", + "source_file": "retrieval/tools.py", + "source_location": "L805", + "id": "retrieval_tools_rationale_805", + "community": 13, + "norm_label": "find entities whose summaries are relevant to the query. uses fulltex" + }, + { + "label": "Retrieval module initialization", + "file_type": "rationale", + "source_file": "retrieval/__init__.py", + "source_location": "L1", + "id": "retrieval_init_rationale_1", + "community": 7, + "norm_label": "retrieval module initialization" + }, + { + "label": "entity_enricher.py", + "file_type": "code", + "source_file": "services/entity_enricher.py", + "source_location": "L1", + "id": "services_entity_enricher_py", + "community": 7, + "norm_label": "entity_enricher.py" + }, + { + "label": "EnrichmentResult", + "file_type": "code", + "source_file": "services/entity_enricher.py", + "source_location": "L22", + "id": "services_entity_enricher_enrichmentresult", + "community": 7, + "norm_label": "enrichmentresult" + }, + { + "label": ".enrich_all_entities()", + "file_type": "code", + "source_file": "services/entity_enricher.py", + "source_location": "L52", + "id": "services_entity_enricher_entityenricher_enrich_all_entities", + "community": 7, + "norm_label": ".enrich_all_entities()" + }, + { + "label": ".enrich_entity()", + "file_type": "code", + "source_file": "services/entity_enricher.py", + "source_location": "L120", + "id": "services_entity_enricher_entityenricher_enrich_entity", + "community": 7, + "norm_label": ".enrich_entity()" + }, + { + "label": "._enrich_single()", + "file_type": "code", + "source_file": "services/entity_enricher.py", + "source_location": "L152", + "id": "services_entity_enricher_entityenricher_enrich_single", + "community": 7, + "norm_label": "._enrich_single()" + }, + { + "label": "EntityEnricher: Entity Profile Summaries Traverses each entity's graph neighbor", + "file_type": "rationale", + "source_file": "services/entity_enricher.py", + "source_location": "L1", + "id": "services_entity_enricher_rationale_1", + "community": 7, + "norm_label": "entityenricher: entity profile summaries traverses each entity's graph neighbor" + }, + { + "label": "Result from an entity enrichment operation", + "file_type": "rationale", + "source_file": "services/entity_enricher.py", + "source_location": "L23", + "id": "services_entity_enricher_rationale_23", + "community": 7, + "norm_label": "result from an entity enrichment operation" + }, + { + "label": "Post-ingestion enrichment pass: synthesizes a human-readable profile summar", + "file_type": "rationale", + "source_file": "services/entity_enricher.py", + "source_location": "L32", + "id": "services_entity_enricher_rationale_32", + "community": 7, + "norm_label": "post-ingestion enrichment pass: synthesizes a human-readable profile summar" + }, + { + "label": "Enrich all entities that: - Have >= min_connections relationships, AND", + "file_type": "rationale", + "source_file": "services/entity_enricher.py", + "source_location": "L57", + "id": "services_entity_enricher_rationale_57", + "community": 7, + "norm_label": "enrich all entities that: - have >= min_connections relationships, and" + }, + { + "label": "Enrich a single entity by name. Returns the generated summary or None.", + "file_type": "rationale", + "source_file": "services/entity_enricher.py", + "source_location": "L121", + "id": "services_entity_enricher_rationale_121", + "community": 7, + "norm_label": "enrich a single entity by name. returns the generated summary or none." + }, + { + "label": "Get the stored summary for an entity, or None if not enriched.", + "file_type": "rationale", + "source_file": "services/entity_enricher.py", + "source_location": "L141", + "id": "services_entity_enricher_rationale_141", + "community": 7, + "norm_label": "get the stored summary for an entity, or none if not enriched." + }, + { + "label": "Generate and persist a summary for one entity. Returns True on success.", + "file_type": "rationale", + "source_file": "services/entity_enricher.py", + "source_location": "L155", + "id": "services_entity_enricher_rationale_155", + "community": 7, + "norm_label": "generate and persist a summary for one entity. returns true on success." + }, + { + "label": "graph_memory_updater.py", + "file_type": "code", + "source_file": "services/graph_memory_updater.py", + "source_location": "L1", + "id": "services_graph_memory_updater_py", + "community": 9, + "norm_label": "graph_memory_updater.py" + }, + { + "label": "GraphUpdateResult", + "file_type": "code", + "source_file": "services/graph_memory_updater.py", + "source_location": "L22", + "id": "services_graph_memory_updater_graphupdateresult", + "community": 9, + "norm_label": "graphupdateresult" + }, + { + "label": ".is_fact_assertion()", + "file_type": "code", + "source_file": "services/graph_memory_updater.py", + "source_location": "L173", + "id": "services_graph_memory_updater_graphmemoryupdater_is_fact_assertion", + "community": 9, + "norm_label": ".is_fact_assertion()" + }, + { + "label": "._get_extractor()", + "file_type": "code", + "source_file": "services/graph_memory_updater.py", + "source_location": "L192", + "id": "services_graph_memory_updater_graphmemoryupdater_get_extractor", + "community": 9, + "norm_label": "._get_extractor()" + }, + { + "label": "GraphMemoryUpdater: Writable Live Graph Accepts raw text snippets and merges ne", + "file_type": "rationale", + "source_file": "services/graph_memory_updater.py", + "source_location": "L1", + "id": "services_graph_memory_updater_rationale_1", + "community": 9, + "norm_label": "graphmemoryupdater: writable live graph accepts raw text snippets and merges ne" + }, + { + "label": "Result from a live graph update operation", + "file_type": "rationale", + "source_file": "services/graph_memory_updater.py", + "source_location": "L23", + "id": "services_graph_memory_updater_rationale_23", + "community": 9, + "norm_label": "result from a live graph update operation" + }, + { + "label": "Turns the static knowledge graph into a living, writable store. Usage:", + "file_type": "rationale", + "source_file": "services/graph_memory_updater.py", + "source_location": "L33", + "id": "services_graph_memory_updater_rationale_33", + "community": 9, + "norm_label": "turns the static knowledge graph into a living, writable store. usage:" + }, + { + "label": "Extract entities/relationships from text and MERGE them into Neo4j. A", + "file_type": "rationale", + "source_file": "services/graph_memory_updater.py", + "source_location": "L59", + "id": "services_graph_memory_updater_rationale_59", + "community": 9, + "norm_label": "extract entities/relationships from text and merge them into neo4j. a" + }, + { + "label": "Quick LLM classifier: does this text assert a new fact? Used to decide", + "file_type": "rationale", + "source_file": "services/graph_memory_updater.py", + "source_location": "L174", + "id": "services_graph_memory_updater_rationale_174", + "community": 9, + "norm_label": "quick llm classifier: does this text assert a new fact? used to decide" + }, + { + "label": "ontology_drift_detector.py", + "file_type": "code", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L1", + "id": "services_ontology_drift_detector_py", + "community": 0, + "norm_label": "ontology_drift_detector.py" + }, + { + "label": "DriftReport", + "file_type": "code", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L26", + "id": "services_ontology_drift_detector_driftreport", + "community": 0, + "norm_label": "driftreport" + }, + { + "label": ".detect_drift()", + "file_type": "code", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L59", + "id": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", + "community": 0, + "norm_label": ".detect_drift()" + }, + { + "label": ".apply_drift_report()", + "file_type": "code", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L86", + "id": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", + "community": 0, + "norm_label": ".apply_drift_report()" + }, + { + "label": ".get_drift_report()", + "file_type": "code", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L179", + "id": "services_ontology_drift_detector_ontologydriftdetector_get_drift_report", + "community": 0, + "norm_label": ".get_drift_report()" + }, + { + "label": "._get_random_chunks()", + "file_type": "code", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L185", + "id": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", + "community": 0, + "norm_label": "._get_random_chunks()" + }, + { + "label": "._compute_diff()", + "file_type": "code", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L210", + "id": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", + "community": 0, + "norm_label": "._compute_diff()" + }, + { + "label": "._save_drift_report()", + "file_type": "code", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L262", + "id": "services_ontology_drift_detector_ontologydriftdetector_save_drift_report", + "community": 0, + "norm_label": "._save_drift_report()" + }, + { + "label": "._load_drift_report()", + "file_type": "code", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L290", + "id": "services_ontology_drift_detector_ontologydriftdetector_load_drift_report", + "community": 0, + "norm_label": "._load_drift_report()" + }, + { + "label": "_row_to_report()", + "file_type": "code", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L312", + "id": "services_ontology_drift_detector_row_to_report", + "community": 0, + "norm_label": "_row_to_report()" + }, + { + "label": "_bump_version()", + "file_type": "code", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L342", + "id": "services_ontology_drift_detector_bump_version", + "community": 0, + "norm_label": "_bump_version()" + }, + { + "label": "OntologyDriftDetector \u2014 MiroFish Point 4 analogue: Schema Evolution Periodicall", + "file_type": "rationale", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L1", + "id": "services_ontology_drift_detector_rationale_1", + "community": 0, + "norm_label": "ontologydriftdetector \u2014 mirofish point 4 analogue: schema evolution periodicall" + }, + { + "label": "Schema drift report surfaced by the OntologyDriftDetector", + "file_type": "rationale", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L27", + "id": "services_ontology_drift_detector_rationale_27", + "community": 0, + "norm_label": "schema drift report surfaced by the ontologydriftdetector" + }, + { + "label": "Detects when the graph's implicit schema has drifted away from the currentl", + "file_type": "rationale", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L42", + "id": "services_ontology_drift_detector_rationale_42", + "community": 0, + "norm_label": "detects when the graph's implicit schema has drifted away from the currentl" + }, + { + "label": "Run a drift detection cycle: 1. Pull random chunks 2. Generate", + "file_type": "rationale", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L62", + "id": "services_ontology_drift_detector_rationale_62", + "community": 0, + "norm_label": "run a drift detection cycle: 1. pull random chunks 2. generate" + }, + { + "label": "Merge the new types from an approved drift report into the live ontology.", + "file_type": "rationale", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L91", + "id": "services_ontology_drift_detector_rationale_91", + "community": 0, + "norm_label": "merge the new types from an approved drift report into the live ontology." + }, + { + "label": "Mark a drift report as rejected.", + "file_type": "rationale", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L136", + "id": "services_ontology_drift_detector_rationale_136", + "community": 0, + "norm_label": "mark a drift report as rejected." + }, + { + "label": "Retrieve drift reports from Neo4j, optionally filtered by status.", + "file_type": "rationale", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L152", + "id": "services_ontology_drift_detector_rationale_152", + "community": 0, + "norm_label": "retrieve drift reports from neo4j, optionally filtered by status." + }, + { + "label": "Fetch a single drift report by ID.", + "file_type": "rationale", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L180", + "id": "services_ontology_drift_detector_rationale_180", + "community": 0, + "norm_label": "fetch a single drift report by id." + }, + { + "label": "Pull random chunk texts from Neo4j for re-sampling.", + "file_type": "rationale", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L186", + "id": "services_ontology_drift_detector_rationale_186", + "community": 0, + "norm_label": "pull random chunk texts from neo4j for re-sampling." + }, + { + "label": "Increment the semantic version based on drift score.", + "file_type": "rationale", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L343", + "id": "services_ontology_drift_detector_rationale_343", + "community": 78, + "norm_label": "increment the semantic version based on drift score." + }, + { + "label": "MiroFish-inspired services layer - GraphMemoryUpdater: Writable live graph from", + "file_type": "rationale", + "source_file": "services/__init__.py", + "source_location": "L1", + "id": "services_init_rationale_1", + "community": 7, + "norm_label": "mirofish-inspired services layer - graphmemoryupdater: writable live graph from" + }, + { + "label": "celery_worker.py", + "file_type": "code", + "source_file": "workers/celery_worker.py", + "source_location": "L1", + "id": "workers_celery_worker_py", + "community": 16, + "norm_label": "celery_worker.py" + }, + { + "label": "_init_worker_loop()", + "file_type": "code", + "source_file": "workers/celery_worker.py", + "source_location": "L64", + "id": "workers_celery_worker_init_worker_loop", + "community": 16, + "norm_label": "_init_worker_loop()" + }, + { + "label": "run_async()", + "file_type": "code", + "source_file": "workers/celery_worker.py", + "source_location": "L69", + "id": "workers_celery_worker_run_async", + "community": 16, + "norm_label": "run_async()" + }, + { + "label": "ingest_document_task()", + "file_type": "code", + "source_file": "workers/celery_worker.py", + "source_location": "L80", + "id": "workers_celery_worker_ingest_document_task", + "community": 16, + "norm_label": "ingest_document_task()" + }, + { + "label": "ingest_documents_batch_task()", + "file_type": "code", + "source_file": "workers/celery_worker.py", + "source_location": "L152", + "id": "workers_celery_worker_ingest_documents_batch_task", + "community": 16, + "norm_label": "ingest_documents_batch_task()" + }, + { + "label": "cleanup_orphan_nodes_task()", + "file_type": "code", + "source_file": "workers/celery_worker.py", + "source_location": "L205", + "id": "workers_celery_worker_cleanup_orphan_nodes_task", + "community": 16, + "norm_label": "cleanup_orphan_nodes_task()" + }, + { + "label": "generate_personas_task()", + "file_type": "code", + "source_file": "workers/celery_worker.py", + "source_location": "L250", + "id": "workers_celery_worker_generate_personas_task", + "community": 16, + "norm_label": "generate_personas_task()" + }, + { + "label": "run_simulation_tick_task()", + "file_type": "code", + "source_file": "workers/celery_worker.py", + "source_location": "L263", + "id": "workers_celery_worker_run_simulation_tick_task", + "community": 21, + "norm_label": "run_simulation_tick_task()" + }, + { + "label": "enrich_entities_task()", + "file_type": "code", + "source_file": "workers/celery_worker.py", + "source_location": "L277", + "id": "workers_celery_worker_enrich_entities_task", + "community": 16, + "norm_label": "enrich_entities_task()" + }, + { + "label": "check_ontology_drift_task()", + "file_type": "code", + "source_file": "workers/celery_worker.py", + "source_location": "L310", + "id": "workers_celery_worker_check_ontology_drift_task", + "community": 16, + "norm_label": "check_ontology_drift_task()" + }, + { + "label": "Celery workers for async document ingestion Decouples ingestion from the API re", + "file_type": "rationale", + "source_file": "workers/celery_worker.py", + "source_location": "L1", + "id": "workers_celery_worker_rationale_1", + "community": 16, + "norm_label": "celery workers for async document ingestion decouples ingestion from the api re" + }, + { + "label": "Helper to run async functions in Celery tasks using a persistent loop", + "file_type": "rationale", + "source_file": "workers/celery_worker.py", + "source_location": "L70", + "id": "workers_celery_worker_rationale_70", + "community": 16, + "norm_label": "helper to run async functions in celery tasks using a persistent loop" + }, + { + "label": "Celery task for document ingestion Args: file_path: Path to", + "file_type": "rationale", + "source_file": "workers/celery_worker.py", + "source_location": "L81", + "id": "workers_celery_worker_rationale_81", + "community": 16, + "norm_label": "celery task for document ingestion args: file_path: path to" + }, + { + "label": "Celery task for batch document ingestion Args: file_paths: L", + "file_type": "rationale", + "source_file": "workers/celery_worker.py", + "source_location": "L153", + "id": "workers_celery_worker_rationale_153", + "community": 16, + "norm_label": "celery task for batch document ingestion args: file_paths: l" + }, + { + "label": "Background job to clean up disconnected or orphaned nodes in Neo4j. Schedul", + "file_type": "rationale", + "source_file": "workers/celery_worker.py", + "source_location": "L206", + "id": "workers_celery_worker_rationale_206", + "community": 16, + "norm_label": "background job to clean up disconnected or orphaned nodes in neo4j. schedul" + }, + { + "label": "Simple health check task", + "file_type": "rationale", + "source_file": "workers/celery_worker.py", + "source_location": "L245", + "id": "workers_celery_worker_rationale_245", + "community": 26, + "norm_label": "simple health check task" + }, + { + "label": "Celery task to run the Ontology-to-Persona Pipeline asynchronously.", + "file_type": "rationale", + "source_file": "workers/celery_worker.py", + "source_location": "L251", + "id": "workers_celery_worker_rationale_251", + "community": 16, + "norm_label": "celery task to run the ontology-to-persona pipeline asynchronously." + }, + { + "label": "Celery task to run a Multi-Agent Sandbox Simulation Tick (Point 4).", + "file_type": "rationale", + "source_file": "workers/celery_worker.py", + "source_location": "L264", + "id": "workers_celery_worker_rationale_264", + "community": 21, + "norm_label": "celery task to run a multi-agent sandbox simulation tick (point 4)." + }, + { + "label": "Background task to run Entity Enricher: generate LLM profile summaries for", + "file_type": "rationale", + "source_file": "workers/celery_worker.py", + "source_location": "L278", + "id": "workers_celery_worker_rationale_278", + "community": 16, + "norm_label": "background task to run entity enricher: generate llm profile summaries for" + }, + { + "label": "Background task to check for ontology drift: re-samples random chunks, prop", + "file_type": "rationale", + "source_file": "workers/celery_worker.py", + "source_location": "L311", + "id": "workers_celery_worker_rationale_311", + "community": 16, + "norm_label": "background task to check for ontology drift: re-samples random chunks, prop" + }, + { + "label": "simulation_runner.py", + "file_type": "code", + "source_file": "workers/simulation_runner.py", + "source_location": "L1", + "id": "workers_simulation_runner_py", + "community": 21, + "norm_label": "simulation_runner.py" + }, + { + "label": "AgentAction", + "file_type": "code", + "source_file": "workers/simulation_runner.py", + "source_location": "L20", + "id": "workers_simulation_runner_agentaction", + "community": 21, + "norm_label": "agentaction" + }, + { + "label": "SimulationManager", + "file_type": "code", + "source_file": "workers/simulation_runner.py", + "source_location": "L27", + "id": "workers_simulation_runner_simulationmanager", + "community": 21, + "norm_label": "simulationmanager" + }, + { + "label": ".get_active_agents()", + "file_type": "code", + "source_file": "workers/simulation_runner.py", + "source_location": "L34", + "id": "workers_simulation_runner_simulationmanager_get_active_agents", + "community": 21, + "norm_label": ".get_active_agents()" + }, + { + "label": "._process_agent_turn()", + "file_type": "code", + "source_file": "workers/simulation_runner.py", + "source_location": "L66", + "id": "workers_simulation_runner_simulationmanager_process_agent_turn", + "community": 21, + "norm_label": "._process_agent_turn()" + }, + { + "label": "Manages parallel multi-agent loops and pushes real-time actions to Neo4j.", + "file_type": "rationale", + "source_file": "workers/simulation_runner.py", + "source_location": "L28", + "id": "workers_simulation_runner_rationale_28", + "community": 21, + "norm_label": "manages parallel multi-agent loops and pushes real-time actions to neo4j." + }, + { + "label": "Fetch agents with generated personas (from Point 2 PersonaGenerator)", + "file_type": "rationale", + "source_file": "workers/simulation_runner.py", + "source_location": "L35", + "id": "workers_simulation_runner_rationale_35", + "community": 21, + "norm_label": "fetch agents with generated personas (from point 2 personagenerator)" + }, + { + "label": "Runs one tick of the sandbox simulation: 1. Selects active agents", + "file_type": "rationale", + "source_file": "workers/simulation_runner.py", + "source_location": "L45", + "id": "workers_simulation_runner_rationale_45", + "community": 21, + "norm_label": "runs one tick of the sandbox simulation: 1. selects active agents" + }, + { + "label": "Process a single agent's turn asynchronously.", + "file_type": "rationale", + "source_file": "workers/simulation_runner.py", + "source_location": "L67", + "id": "workers_simulation_runner_rationale_67", + "community": 21, + "norm_label": "process a single agent's turn asynchronously." + }, + { + "label": "Workers module initialization", + "file_type": "rationale", + "source_file": "workers/__init__.py", + "source_location": "L1", + "id": "workers_init_rationale_1", + "community": 7, + "norm_label": "workers module initialization" + } + ], + "links": [ + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "config.py", + "source_location": "L13", + "weight": 1.0, + "source": "config_py", + "target": "graph_rag_service_config_settings", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "config.py", + "source_location": "L172", + "weight": 1.0, + "source": "config_py", + "target": "graph_rag_service_config_redis_url", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "main.py", + "source_location": "L8", + "weight": 1.0, + "source": "main_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L8", + "weight": 1.0, + "source": "api_admin_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/auth.py", + "source_location": "L7", + "weight": 1.0, + "source": "api_auth_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L37", + "weight": 1.0, + "source": "api_server_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L7", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L7", + "weight": 1.0, + "source": "api_routers_entities_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/evaluation.py", + "source_location": "L7", + "weight": 1.0, + "source": "api_routers_evaluation_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L7", + "weight": 1.0, + "source": "api_routers_graph_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L7", + "weight": 1.0, + "source": "api_routers_memory_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L11", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/query.py", + "source_location": "L8", + "weight": 1.0, + "source": "api_routers_query_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/report.py", + "source_location": "L7", + "weight": 1.0, + "source": "api_routers_report_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L12", + "weight": 1.0, + "source": "api_routers_system_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L14", + "weight": 1.0, + "source": "entityresolver", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L25", + "weight": 1.0, + "source": "core_llm_factory_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L18", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L21", + "weight": 1.0, + "source": "ingestion_document_processor_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L15", + "weight": 1.0, + "source": "ingestion_extractor_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L12", + "weight": 1.0, + "source": "ingestion_ontology_generator_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L17", + "weight": 1.0, + "source": "ingestion_pipeline_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "observability/tracing.py", + "source_location": "L16", + "weight": 1.0, + "source": "observability_tracing_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L35", + "weight": 1.0, + "source": "retrieval_agent_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L25", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L18", + "weight": 1.0, + "source": "retrieval_tools_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L19", + "weight": 1.0, + "source": "services_entity_enricher_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L19", + "weight": 1.0, + "source": "services_graph_memory_updater_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L23", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L16", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "config_py", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "config.py", + "source_location": "L13", + "weight": 1.0, + "source": "graph_rag_service_config_settings", + "target": "basesettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "config.py", + "source_location": "L178", + "weight": 1.0, + "source": "graph_rag_service_config_settings", + "target": "graph_rag_service_config_settings_model_post_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "config.py", + "source_location": "L188", + "weight": 1.0, + "source": "graph_rag_service_config_settings", + "target": "graph_rag_service_config_settings_get_llm_config", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "config.py", + "source_location": "L14", + "weight": 1.0, + "source": "graph_rag_service_config_rationale_14", + "target": "graph_rag_service_config_settings", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "config.py", + "source_location": "L179", + "weight": 1.0, + "source": "graph_rag_service_config_rationale_179", + "target": "graph_rag_service_config_settings_model_post_init", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "config.py", + "source_location": "L189", + "weight": 1.0, + "source": "graph_rag_service_config_rationale_189", + "target": "graph_rag_service_config_settings_get_llm_config", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "main.py", + "source_location": "L6", + "weight": 1.0, + "source": "main_py", + "target": "api_server_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "main.py", + "source_location": "L7", + "weight": 1.0, + "source": "main_py", + "target": "observability_tracing_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "main.py", + "source_location": "L11", + "weight": 1.0, + "source": "main_py", + "target": "graph_rag_service_main_main", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "main.py", + "source_location": "L1", + "weight": 1.0, + "source": "graph_rag_service_main_rationale_1", + "target": "main_py", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "main.py", + "source_location": "L15", + "weight": 1.0, + "source": "graph_rag_service_main_main", + "target": "observability_tracing_setup_observability" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "__init__.py", + "source_location": "L1", + "weight": 1.0, + "source": "graph_rag_service_init_rationale_1", + "target": "init_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L42", + "weight": 1.0, + "source": "api_server_py", + "target": "init_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/__init__.py", + "source_location": "L1", + "weight": 1.0, + "source": "api_init_rationale_1", + "target": "init_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/__init__.py", + "source_location": "L1", + "weight": 1.0, + "source": "core_init_rationale_1", + "target": "init_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/__init__.py", + "source_location": "L1", + "weight": 1.0, + "source": "ingestion_init_rationale_1", + "target": "init_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "observability/__init__.py", + "source_location": "L1", + "weight": 1.0, + "source": "observability_init_rationale_1", + "target": "init_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/__init__.py", + "source_location": "L1", + "weight": 1.0, + "source": "retrieval_init_rationale_1", + "target": "init_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/__init__.py", + "source_location": "L8", + "weight": 1.0, + "source": "init_py", + "target": "services_graph_memory_updater_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/__init__.py", + "source_location": "L9", + "weight": 1.0, + "source": "init_py", + "target": "services_entity_enricher_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/__init__.py", + "source_location": "L10", + "weight": 1.0, + "source": "init_py", + "target": "services_ontology_drift_detector_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/__init__.py", + "source_location": "L1", + "weight": 1.0, + "source": "services_init_rationale_1", + "target": "init_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/__init__.py", + "source_location": "L1", + "weight": 1.0, + "source": "workers_init_rationale_1", + "target": "init_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L7", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_auth_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L9", + "weight": 1.0, + "source": "api_admin_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L10", + "weight": 1.0, + "source": "api_admin_py", + "target": "workers_celery_worker_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L18", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_get_graph_store", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L31", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_check_admin_scope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L40", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_systemconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L46", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_taskdashboardresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L52", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_get_admin_stats", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L88", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_get_tasks", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L110", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_update_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L117", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_get_review_queue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L129", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_force_merge_entities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L192", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_search_nodes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L211", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_delete_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L236", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_list_documents", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L245", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_delete_document", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L262", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_get_pending_ontology", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L271", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_approve_ontology", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L291", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_reject_ontology", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L303", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_list_users", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L315", + "weight": 1.0, + "source": "api_admin_py", + "target": "api_admin_update_user_role", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L19", + "weight": 1.0, + "source": "api_admin_rationale_19", + "target": "api_admin_get_graph_store", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/dependencies.py", + "source_location": "L7", + "weight": 1.0, + "source": "api_dependencies_py", + "target": "api_admin_get_graph_store", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L32", + "weight": 1.0, + "source": "api_admin_rationale_32", + "target": "api_admin_check_admin_scope", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L40", + "weight": 1.0, + "source": "api_admin_systemconfig", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "api/admin.py", + "source_location": "L7", + "weight": 0.8, + "source": "api_admin_systemconfig", + "target": "api_auth_user", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "api/admin.py", + "source_location": "L9", + "weight": 0.8, + "source": "api_admin_systemconfig", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "api/admin.py", + "source_location": "L276", + "weight": 0.8, + "source": "api_admin_systemconfig", + "target": "services_ontology_drift_detector_py", + "confidence_score": 0.5 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L46", + "weight": 1.0, + "source": "api_admin_taskdashboardresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L20", + "weight": 1.0, + "source": "api_auth_token", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L25", + "weight": 1.0, + "source": "api_auth_tokendata", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L30", + "weight": 1.0, + "source": "api_auth_user", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L12", + "weight": 1.0, + "source": "api_models_loginrequest", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L16", + "weight": 1.0, + "source": "api_models_registerrequest", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L24", + "weight": 1.0, + "source": "api_models_tokenresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L30", + "weight": 1.0, + "source": "api_models_documentuploadresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L38", + "weight": 1.0, + "source": "api_models_scraperequest", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L41", + "weight": 1.0, + "source": "api_models_crawlrequest", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L48", + "weight": 1.0, + "source": "api_models_ingestionstatusresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L56", + "weight": 1.0, + "source": "api_models_documentinfo", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L64", + "weight": 1.0, + "source": "api_models_documentlistresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L71", + "weight": 1.0, + "source": "api_models_queryrequest", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L82", + "weight": 1.0, + "source": "api_models_confidencejudgmentresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L91", + "weight": 1.0, + "source": "api_models_queryresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L107", + "weight": 1.0, + "source": "api_models_message", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L117", + "weight": 1.0, + "source": "api_models_conversation", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L124", + "weight": 1.0, + "source": "api_models_conversationlistresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L129", + "weight": 1.0, + "source": "api_models_ontologyresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L138", + "weight": 1.0, + "source": "api_models_ontologyupdaterequest", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L146", + "weight": 1.0, + "source": "api_models_graphnode", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L157", + "weight": 1.0, + "source": "api_models_graphedge", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L166", + "weight": 1.0, + "source": "api_models_entityupdaterequest", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L170", + "weight": 1.0, + "source": "api_models_graphvisualizationresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L176", + "weight": 1.0, + "source": "api_models_systemhealthresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L185", + "weight": 1.0, + "source": "api_models_systemstatsresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L194", + "weight": 1.0, + "source": "api_models_ontologyrefinerequest", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L199", + "weight": 1.0, + "source": "api_models_ontologyrefineresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L210", + "weight": 1.0, + "source": "api_models_deduplicateresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L217", + "weight": 1.0, + "source": "api_models_evalrequest", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L226", + "weight": 1.0, + "source": "api_models_evalresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L238", + "weight": 1.0, + "source": "api_models_evaltrendpoint", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L248", + "weight": 1.0, + "source": "api_models_evaldashboardresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L260", + "weight": 1.0, + "source": "api_models_communityassignresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L266", + "weight": 1.0, + "source": "api_models_communitysummaryresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L277", + "weight": 1.0, + "source": "api_models_supportedformatsresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L285", + "weight": 1.0, + "source": "api_models_graphupdaterequest", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L298", + "weight": 1.0, + "source": "api_models_graphupdateresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L310", + "weight": 1.0, + "source": "api_models_enrichmentstatusresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L319", + "weight": 1.0, + "source": "api_models_entitysummaryresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L330", + "weight": 1.0, + "source": "api_models_reportrequest", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L343", + "weight": 1.0, + "source": "api_models_reportresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L357", + "weight": 1.0, + "source": "api_models_entitychatrequest", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L365", + "weight": 1.0, + "source": "api_models_entitychatresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L375", + "weight": 1.0, + "source": "api_models_driftreportresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L390", + "weight": 1.0, + "source": "api_models_driftlistresponse", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L20", + "weight": 1.0, + "source": "api_simulation_interviewrequest", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L34", + "weight": 1.0, + "source": "core_models_entity", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L64", + "weight": 1.0, + "source": "core_models_relationship", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L93", + "weight": 1.0, + "source": "core_models_chunk", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L107", + "weight": 1.0, + "source": "core_models_document", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L120", + "weight": 1.0, + "source": "core_models_ontologyschema", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L130", + "weight": 1.0, + "source": "core_models_extractionresult", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L139", + "weight": 1.0, + "source": "core_models_confidencejudgment", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L148", + "weight": 1.0, + "source": "core_models_queryresult", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L163", + "weight": 1.0, + "source": "core_models_agentstate", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L184", + "weight": 1.0, + "source": "core_models_evalresult", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L11", + "weight": 1.0, + "source": "core_models_communityreport", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "ingestion/persona_generator.py", + "source_location": "L18", + "weight": 1.0, + "source": "ingestion_persona_generator_personaprofile", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L30", + "weight": 1.0, + "source": "retrieval_report_agent_reportsection", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L35", + "weight": 1.0, + "source": "retrieval_report_agent_reportresult", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L22", + "weight": 1.0, + "source": "services_entity_enricher_enrichmentresult", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L22", + "weight": 1.0, + "source": "services_graph_memory_updater_graphupdateresult", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L26", + "weight": 1.0, + "source": "services_ontology_drift_detector_driftreport", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L20", + "weight": 1.0, + "source": "workers_simulation_runner_agentaction", + "target": "basemodel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L103", + "weight": 1.0, + "source": "api_admin_get_tasks", + "target": "api_admin_taskdashboardresponse", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "api/admin.py", + "source_location": "L7", + "weight": 0.8, + "source": "api_admin_taskdashboardresponse", + "target": "api_auth_user", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "api/admin.py", + "source_location": "L9", + "weight": 0.8, + "source": "api_admin_taskdashboardresponse", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "api/admin.py", + "source_location": "L276", + "weight": 0.8, + "source": "api_admin_taskdashboardresponse", + "target": "services_ontology_drift_detector_py", + "confidence_score": 0.5 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L56", + "weight": 1.0, + "source": "api_admin_rationale_56", + "target": "api_admin_get_admin_stats", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/admin.py", + "source_location": "L85", + "weight": 1.0, + "source": "api_admin_get_admin_stats", + "target": "str" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L89", + "weight": 1.0, + "source": "api_admin_rationale_89", + "target": "api_admin_get_tasks", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L111", + "weight": 1.0, + "source": "api_admin_rationale_111", + "target": "api_admin_update_config", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L121", + "weight": 1.0, + "source": "api_admin_rationale_121", + "target": "api_admin_get_review_queue", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/admin.py", + "source_location": "L135", + "weight": 1.0, + "source": "api_admin_rationale_135", + "target": "api_admin_force_merge_entities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/admin.py", + "source_location": "L187", + "weight": 1.0, + "source": "api_admin_force_merge_entities", + "target": "str" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L229", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "api_admin_list_documents", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L230", + "weight": 1.0, + "source": "routers_documents_rationale_230", + "target": "api_admin_list_documents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/documents.py", + "source_location": "L239", + "weight": 1.0, + "source": "api_admin_list_documents", + "target": "api_models_documentinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/documents.py", + "source_location": "L244", + "weight": 1.0, + "source": "api_admin_list_documents", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/documents.py", + "source_location": "L248", + "weight": 1.0, + "source": "api_admin_list_documents", + "target": "api_models_documentlistresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L253", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "api_admin_delete_document", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L257", + "weight": 1.0, + "source": "routers_documents_rationale_257", + "target": "api_admin_delete_document", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/admin.py", + "source_location": "L278", + "weight": 1.0, + "source": "api_admin_approve_ontology", + "target": "services_ontology_drift_detector_py" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L20", + "weight": 1.0, + "source": "api_auth_py", + "target": "api_auth_token", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L25", + "weight": 1.0, + "source": "api_auth_py", + "target": "api_auth_tokendata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L30", + "weight": 1.0, + "source": "api_auth_py", + "target": "api_auth_user", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L39", + "weight": 1.0, + "source": "api_auth_py", + "target": "api_auth_verify_password", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L49", + "weight": 1.0, + "source": "api_auth_py", + "target": "api_auth_get_password_hash", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L55", + "weight": 1.0, + "source": "api_auth_py", + "target": "api_auth_create_access_token", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L83", + "weight": 1.0, + "source": "api_auth_py", + "target": "api_auth_decode_token", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L121", + "weight": 1.0, + "source": "api_auth_py", + "target": "api_auth_get_current_user", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L171", + "weight": 1.0, + "source": "api_auth_py", + "target": "api_auth_check_scope", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L1", + "weight": 1.0, + "source": "api_auth_rationale_1", + "target": "api_auth_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L28", + "weight": 1.0, + "source": "api_server_py", + "target": "api_auth_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/auth.py", + "source_location": "L4", + "weight": 1.0, + "source": "api_auth_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/auth.py", + "source_location": "L5", + "weight": 1.0, + "source": "api_auth_py", + "target": "retrieval_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/auth.py", + "source_location": "L6", + "weight": 1.0, + "source": "api_auth_py", + "target": "ingestion_pipeline_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/auth.py", + "source_location": "L8", + "weight": 1.0, + "source": "api_auth_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/auth.py", + "source_location": "L13", + "weight": 1.0, + "source": "api_auth_py", + "target": "api_dependencies_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/auth.py", + "source_location": "L17", + "weight": 1.0, + "source": "api_auth_py", + "target": "core_storage_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/auth.py", + "source_location": "L21", + "weight": 1.0, + "source": "api_auth_py", + "target": "routers_auth_register", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/auth.py", + "source_location": "L59", + "weight": 1.0, + "source": "api_auth_py", + "target": "routers_auth_login", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/auth.py", + "source_location": "L92", + "weight": 1.0, + "source": "api_auth_py", + "target": "routers_auth_get_me", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L9", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "api_auth_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L9", + "weight": 1.0, + "source": "api_routers_entities_py", + "target": "api_auth_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/evaluation.py", + "source_location": "L9", + "weight": 1.0, + "source": "api_routers_evaluation_py", + "target": "api_auth_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L9", + "weight": 1.0, + "source": "api_routers_graph_py", + "target": "api_auth_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L9", + "weight": 1.0, + "source": "api_routers_memory_py", + "target": "api_auth_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L13", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "api_auth_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/query.py", + "source_location": "L10", + "weight": 1.0, + "source": "api_routers_query_py", + "target": "api_auth_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/report.py", + "source_location": "L9", + "weight": 1.0, + "source": "api_routers_report_py", + "target": "api_auth_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L14", + "weight": 1.0, + "source": "api_routers_system_py", + "target": "api_auth_py", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L112", + "weight": 1.0, + "source": "api_auth_decode_token", + "target": "api_auth_tokendata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L153", + "weight": 1.0, + "source": "api_auth_get_current_user", + "target": "api_auth_user", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/auth.py", + "source_location": "L48", + "weight": 1.0, + "source": "routers_auth_register", + "target": "api_auth_user" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/auth.py", + "source_location": "L65", + "weight": 1.0, + "source": "routers_auth_login", + "target": "api_auth_verify_password" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/auth.py", + "source_location": "L30", + "weight": 1.0, + "source": "routers_auth_register", + "target": "api_auth_get_password_hash" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L56", + "weight": 1.0, + "source": "api_auth_rationale_56", + "target": "api_auth_create_access_token", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/auth.py", + "source_location": "L79", + "weight": 1.0, + "source": "routers_auth_login", + "target": "api_auth_create_access_token" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L139", + "weight": 1.0, + "source": "api_auth_get_current_user", + "target": "api_auth_decode_token", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L84", + "weight": 1.0, + "source": "api_auth_rationale_84", + "target": "api_auth_decode_token", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L125", + "weight": 1.0, + "source": "api_auth_rationale_125", + "target": "api_auth_get_current_user", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/auth.py", + "source_location": "L172", + "weight": 1.0, + "source": "api_auth_rationale_172", + "target": "api_auth_check_scope", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/dependencies.py", + "source_location": "L2", + "weight": 1.0, + "source": "api_dependencies_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/dependencies.py", + "source_location": "L3", + "weight": 1.0, + "source": "api_dependencies_py", + "target": "retrieval_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/dependencies.py", + "source_location": "L4", + "weight": 1.0, + "source": "api_dependencies_py", + "target": "ingestion_pipeline_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/dependencies.py", + "source_location": "L10", + "weight": 1.0, + "source": "api_dependencies_py", + "target": "api_dependencies_get_retrieval_agent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/dependencies.py", + "source_location": "L13", + "weight": 1.0, + "source": "api_dependencies_py", + "target": "api_dependencies_get_ingestion_pipeline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/dependencies.py", + "source_location": "L16", + "weight": 1.0, + "source": "api_dependencies_py", + "target": "api_dependencies_get_redis_client", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L11", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "api_dependencies_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L11", + "weight": 1.0, + "source": "api_routers_entities_py", + "target": "api_dependencies_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/evaluation.py", + "source_location": "L11", + "weight": 1.0, + "source": "api_routers_evaluation_py", + "target": "api_dependencies_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L11", + "weight": 1.0, + "source": "api_routers_graph_py", + "target": "api_dependencies_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L11", + "weight": 1.0, + "source": "api_routers_memory_py", + "target": "api_dependencies_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L15", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "api_dependencies_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/query.py", + "source_location": "L13", + "weight": 1.0, + "source": "api_routers_query_py", + "target": "api_dependencies_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/report.py", + "source_location": "L11", + "weight": 1.0, + "source": "api_routers_report_py", + "target": "api_dependencies_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L16", + "weight": 1.0, + "source": "api_routers_system_py", + "target": "api_dependencies_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L12", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_loginrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L16", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_registerrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L24", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_tokenresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L30", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_documentuploadresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L38", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_scraperequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L41", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_crawlrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L48", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_ingestionstatusresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L56", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_documentinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L64", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_documentlistresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L71", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_queryrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L82", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_confidencejudgmentresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L91", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_queryresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L107", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_message", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L117", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_conversation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L124", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_conversationlistresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L129", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_ontologyresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L138", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_ontologyupdaterequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L146", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_graphnode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L157", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_graphedge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L166", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_entityupdaterequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L170", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_graphvisualizationresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L176", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_systemhealthresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L185", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_systemstatsresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L194", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_ontologyrefinerequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L199", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_ontologyrefineresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L210", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_deduplicateresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L217", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_evalrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L226", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_evalresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L238", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_evaltrendpoint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L248", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_evaldashboardresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L260", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_communityassignresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L266", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_communitysummaryresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L277", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_supportedformatsresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L285", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_graphupdaterequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L298", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_graphupdateresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L310", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_enrichmentstatusresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L319", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_entitysummaryresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L330", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_reportrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L343", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_reportresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L357", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_entitychatrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L365", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_entitychatresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L375", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_driftreportresponse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L390", + "weight": 1.0, + "source": "api_models_py", + "target": "api_models_driftlistresponse", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L1", + "weight": 1.0, + "source": "api_models_rationale_1", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L8", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L8", + "weight": 1.0, + "source": "api_routers_entities_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/evaluation.py", + "source_location": "L8", + "weight": 1.0, + "source": "api_routers_evaluation_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L8", + "weight": 1.0, + "source": "api_routers_graph_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L8", + "weight": 1.0, + "source": "api_routers_memory_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L12", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/query.py", + "source_location": "L9", + "weight": 1.0, + "source": "api_routers_query_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/report.py", + "source_location": "L8", + "weight": 1.0, + "source": "api_routers_report_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L13", + "weight": 1.0, + "source": "api_routers_system_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L8", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L13", + "weight": 1.0, + "source": "entityresolver", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L9", + "weight": 1.0, + "source": "api_models_py", + "target": "enum", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L12", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_nodetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L19", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_relationtype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L27", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_ontologyversion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L34", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_entity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L64", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_relationship", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L93", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_chunk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L107", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_document", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L120", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_ontologyschema", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L130", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_extractionresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L139", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_confidencejudgment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L148", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_queryresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L163", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_agentstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L174", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_searchmethod", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L184", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_evalresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L198", + "weight": 1.0, + "source": "api_models_py", + "target": "core_models_communityreport", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L1", + "weight": 1.0, + "source": "core_models_rationale_1", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L17", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L20", + "weight": 1.0, + "source": "ingestion_document_processor_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L12", + "weight": 1.0, + "source": "ingestion_extractor_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L10", + "weight": 1.0, + "source": "ingestion_ontology_generator_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L16", + "weight": 1.0, + "source": "ingestion_pipeline_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L34", + "weight": 1.0, + "source": "retrieval_agent_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L17", + "weight": 1.0, + "source": "retrieval_tools_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L17", + "weight": 1.0, + "source": "services_graph_memory_updater_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L21", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "api_models_py", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/auth.py", + "source_location": "L87", + "weight": 1.0, + "source": "routers_auth_login", + "target": "api_models_tokenresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/documents.py", + "source_location": "L98", + "weight": 1.0, + "source": "routers_documents_upload_document", + "target": "api_models_documentuploadresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/documents.py", + "source_location": "L163", + "weight": 1.0, + "source": "routers_documents_scrape_url", + "target": "api_models_documentuploadresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/documents.py", + "source_location": "L399", + "weight": 1.0, + "source": "routers_documents_rationale_366", + "target": "api_models_ingestionstatusresponse" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L83", + "weight": 1.0, + "source": "api_models_rationale_83", + "target": "api_models_confidencejudgmentresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/query.py", + "source_location": "L157", + "weight": 1.0, + "source": "routers_query_query", + "target": "api_models_confidencejudgmentresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/query.py", + "source_location": "L165", + "weight": 1.0, + "source": "routers_query_query", + "target": "api_models_queryresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/memory.py", + "source_location": "L69", + "weight": 1.0, + "source": "routers_memory_get_conversation", + "target": "api_models_message" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/memory.py", + "source_location": "L30", + "weight": 1.0, + "source": "routers_memory_list_conversations", + "target": "api_models_conversation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/memory.py", + "source_location": "L78", + "weight": 1.0, + "source": "routers_memory_get_conversation", + "target": "api_models_conversation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/memory.py", + "source_location": "L36", + "weight": 1.0, + "source": "routers_memory_list_conversations", + "target": "api_models_conversationlistresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/ontology.py", + "source_location": "L41", + "weight": 1.0, + "source": "routers_ontology_get_ontology", + "target": "api_models_ontologyresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/ontology.py", + "source_location": "L181", + "weight": 1.0, + "source": "routers_ontology_update_ontology", + "target": "api_models_ontologyresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/graph.py", + "source_location": "L84", + "weight": 1.0, + "source": "routers_graph_get_graph_visualization", + "target": "api_models_graphnode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/graph.py", + "source_location": "L95", + "weight": 1.0, + "source": "routers_graph_get_graph_visualization", + "target": "api_models_graphedge" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/graph.py", + "source_location": "L52", + "weight": 1.0, + "source": "routers_graph_get_graph_visualization", + "target": "api_models_graphvisualizationresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/system.py", + "source_location": "L62", + "weight": 1.0, + "source": "routers_system_health_check", + "target": "api_models_systemhealthresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/system.py", + "source_location": "L100", + "weight": 1.0, + "source": "routers_system_get_system_stats", + "target": "api_models_systemstatsresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/ontology.py", + "source_location": "L139", + "weight": 1.0, + "source": "routers_ontology_refine_ontology", + "target": "api_models_ontologyrefineresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/entities.py", + "source_location": "L54", + "weight": 1.0, + "source": "routers_entities_deduplicate_entities", + "target": "api_models_deduplicateresponse" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L218", + "weight": 1.0, + "source": "api_models_rationale_218", + "target": "api_models_evalrequest", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L227", + "weight": 1.0, + "source": "api_models_rationale_227", + "target": "api_models_evalresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/evaluation.py", + "source_location": "L54", + "weight": 1.0, + "source": "routers_evaluation_evaluate_response", + "target": "api_models_evalresponse" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L239", + "weight": 1.0, + "source": "api_models_rationale_239", + "target": "api_models_evaltrendpoint", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/evaluation.py", + "source_location": "L91", + "weight": 1.0, + "source": "routers_evaluation_get_eval_dashboard", + "target": "api_models_evaltrendpoint" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L249", + "weight": 1.0, + "source": "api_models_rationale_249", + "target": "api_models_evaldashboardresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/evaluation.py", + "source_location": "L75", + "weight": 1.0, + "source": "routers_evaluation_get_eval_dashboard", + "target": "api_models_evaldashboardresponse" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L261", + "weight": 1.0, + "source": "api_models_rationale_261", + "target": "api_models_communityassignresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/graph.py", + "source_location": "L118", + "weight": 1.0, + "source": "routers_graph_assign_communities", + "target": "api_models_communityassignresponse" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L267", + "weight": 1.0, + "source": "api_models_rationale_267", + "target": "api_models_communitysummaryresponse", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L278", + "weight": 1.0, + "source": "api_models_rationale_278", + "target": "api_models_supportedformatsresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/system.py", + "source_location": "L151", + "weight": 1.0, + "source": "routers_system_get_supported_formats", + "target": "api_models_supportedformatsresponse" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L286", + "weight": 1.0, + "source": "api_models_rationale_286", + "target": "api_models_graphupdaterequest", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L299", + "weight": 1.0, + "source": "api_models_rationale_299", + "target": "api_models_graphupdateresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/graph.py", + "source_location": "L250", + "weight": 1.0, + "source": "routers_graph_update_graph_from_text", + "target": "api_models_graphupdateresponse" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L311", + "weight": 1.0, + "source": "api_models_rationale_311", + "target": "api_models_enrichmentstatusresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/entities.py", + "source_location": "L104", + "weight": 1.0, + "source": "routers_entities_trigger_entity_enrichment", + "target": "api_models_enrichmentstatusresponse" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L320", + "weight": 1.0, + "source": "api_models_rationale_320", + "target": "api_models_entitysummaryresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/entities.py", + "source_location": "L135", + "weight": 1.0, + "source": "routers_entities_get_entity_summary", + "target": "api_models_entitysummaryresponse" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L331", + "weight": 1.0, + "source": "api_models_rationale_331", + "target": "api_models_reportrequest", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L344", + "weight": 1.0, + "source": "api_models_rationale_344", + "target": "api_models_reportresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/report.py", + "source_location": "L41", + "weight": 1.0, + "source": "routers_report_generate_report", + "target": "api_models_reportresponse" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L358", + "weight": 1.0, + "source": "api_models_rationale_358", + "target": "api_models_entitychatrequest", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L366", + "weight": 1.0, + "source": "api_models_rationale_366", + "target": "api_models_entitychatresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/entities.py", + "source_location": "L237", + "weight": 1.0, + "source": "routers_entities_entity_interview", + "target": "api_models_entitychatresponse" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L376", + "weight": 1.0, + "source": "api_models_rationale_376", + "target": "api_models_driftreportresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/ontology.py", + "source_location": "L214", + "weight": 1.0, + "source": "routers_ontology_trigger_drift_detection", + "target": "api_models_driftreportresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/ontology.py", + "source_location": "L238", + "weight": 1.0, + "source": "routers_ontology_list_drift_reports", + "target": "api_models_driftreportresponse" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/models.py", + "source_location": "L391", + "weight": 1.0, + "source": "api_models_rationale_391", + "target": "api_models_driftlistresponse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/ontology.py", + "source_location": "L253", + "weight": 1.0, + "source": "routers_ontology_list_drift_reports", + "target": "api_models_driftlistresponse" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L38", + "weight": 1.0, + "source": "api_server_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L39", + "weight": 1.0, + "source": "api_server_py", + "target": "retrieval_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L40", + "weight": 1.0, + "source": "api_server_py", + "target": "ingestion_pipeline_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L41", + "weight": 1.0, + "source": "api_server_py", + "target": "core_storage_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L43", + "weight": 1.0, + "source": "api_server_py", + "target": "api_simulation_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L61", + "weight": 1.0, + "source": "api_server_py", + "target": "api_server_is_valid_origin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L90", + "weight": 1.0, + "source": "api_server_py", + "target": "api_server_startup_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L125", + "weight": 1.0, + "source": "api_server_py", + "target": "api_server_shutdown_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L171", + "weight": 1.0, + "source": "api_server_py", + "target": "api_server_serve_index", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L1", + "weight": 1.0, + "source": "api_server_rationale_1", + "target": "api_server_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/server.py", + "source_location": "L91", + "weight": 1.0, + "source": "api_server_rationale_91", + "target": "api_server_startup_event", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/server.py", + "source_location": "L98", + "weight": 1.0, + "source": "api_server_startup_event", + "target": "core_neo4j_store_py" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/server.py", + "source_location": "L104", + "weight": 1.0, + "source": "api_server_startup_event", + "target": "retrieval_agent_agentretrievalsystem" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/server.py", + "source_location": "L111", + "weight": 1.0, + "source": "api_server_startup_event", + "target": "ingestion_pipeline_ingestionpipeline" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L42", + "weight": 1.0, + "source": "api_server_rationale_91", + "target": "ingestion_pipeline_ingestionpipeline_initialize", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L5", + "weight": 1.0, + "source": "api_simulation_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L6", + "weight": 1.0, + "source": "api_simulation_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L10", + "weight": 1.0, + "source": "api_simulation_py", + "target": "api_simulation_get_global_store", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L17", + "weight": 1.0, + "source": "api_simulation_py", + "target": "api_simulation_get_global_llm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L20", + "weight": 1.0, + "source": "api_simulation_py", + "target": "api_simulation_interviewrequest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L26", + "weight": 1.0, + "source": "api_simulation_py", + "target": "api_simulation_live_interview_agent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L86", + "weight": 1.0, + "source": "api_simulation_py", + "target": "retrieval_report_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L89", + "weight": 1.0, + "source": "api_simulation_py", + "target": "api_simulation_get_sandbox_report", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L105", + "weight": 1.0, + "source": "api_simulation_py", + "target": "workers_celery_worker_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L108", + "weight": 1.0, + "source": "api_simulation_py", + "target": "api_simulation_start_persona_generation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L114", + "weight": 1.0, + "source": "api_simulation_py", + "target": "api_simulation_start_simulation_tick", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/simulation.py", + "source_location": "L18", + "weight": 1.0, + "source": "api_simulation_get_global_llm", + "target": "core_llm_factory_unifiedllmprovider" + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "api/simulation.py", + "source_location": "L5", + "weight": 0.8, + "source": "api_simulation_interviewrequest", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "api/simulation.py", + "source_location": "L6", + "weight": 0.8, + "source": "api_simulation_interviewrequest", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "api/simulation.py", + "source_location": "L86", + "weight": 0.8, + "source": "api_simulation_interviewrequest", + "target": "retrieval_report_agent_py", + "confidence_score": 0.5 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L31", + "weight": 1.0, + "source": "api_simulation_rationale_31", + "target": "api_simulation_live_interview_agent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/simulation.py", + "source_location": "L83", + "weight": 1.0, + "source": "api_simulation_live_interview_agent", + "target": "str" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L93", + "weight": 1.0, + "source": "api_simulation_rationale_93", + "target": "api_simulation_get_sandbox_report", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/simulation.py", + "source_location": "L98", + "weight": 1.0, + "source": "api_simulation_get_sandbox_report", + "target": "retrieval_report_agent_py" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/simulation.py", + "source_location": "L102", + "weight": 1.0, + "source": "api_simulation_get_sandbox_report", + "target": "str" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L109", + "weight": 1.0, + "source": "api_simulation_rationale_109", + "target": "api_simulation_start_persona_generation", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/simulation.py", + "source_location": "L115", + "weight": 1.0, + "source": "api_simulation_rationale_115", + "target": "api_simulation_start_simulation_tick", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/auth.py", + "source_location": "L60", + "weight": 1.0, + "source": "routers_auth_rationale_60", + "target": "routers_auth_login", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/auth.py", + "source_location": "L93", + "weight": 1.0, + "source": "routers_auth_rationale_93", + "target": "routers_auth_get_me", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L4", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L5", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "retrieval_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L6", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "ingestion_pipeline_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L15", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "core_storage_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L19", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "routers_documents_upload_document", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L109", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "routers_documents_scrape_url", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L180", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "routers_documents_crawl_urls", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L282", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "routers_documents_download_document", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L322", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "routers_documents_preview_document", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L362", + "weight": 1.0, + "source": "api_routers_documents_py", + "target": "routers_documents_rationale_366", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L23", + "weight": 1.0, + "source": "routers_documents_rationale_23", + "target": "routers_documents_upload_document", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/documents.py", + "source_location": "L80", + "weight": 1.0, + "source": "routers_documents_upload_document", + "target": "str" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L113", + "weight": 1.0, + "source": "routers_documents_rationale_113", + "target": "routers_documents_scrape_url", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/documents.py", + "source_location": "L129", + "weight": 1.0, + "source": "routers_documents_scrape_url", + "target": "ingestion_web_crawler_py" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/documents.py", + "source_location": "L153", + "weight": 1.0, + "source": "routers_documents_scrape_url", + "target": "str" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L185", + "weight": 1.0, + "source": "routers_documents_rationale_185", + "target": "routers_documents_crawl_urls", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/documents.py", + "source_location": "L193", + "weight": 1.0, + "source": "routers_documents_crawl_urls", + "target": "ingestion_web_crawler_py" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L286", + "weight": 1.0, + "source": "routers_documents_rationale_286", + "target": "routers_documents_download_document", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/documents.py", + "source_location": "L326", + "weight": 1.0, + "source": "routers_documents_rationale_326", + "target": "routers_documents_preview_document", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/documents.py", + "source_location": "L357", + "weight": 1.0, + "source": "routers_documents_preview_document", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/documents.py", + "source_location": "L396", + "weight": 1.0, + "source": "routers_documents_rationale_366", + "target": "str" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L4", + "weight": 1.0, + "source": "api_routers_entities_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L5", + "weight": 1.0, + "source": "api_routers_entities_py", + "target": "retrieval_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L6", + "weight": 1.0, + "source": "api_routers_entities_py", + "target": "ingestion_pipeline_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L15", + "weight": 1.0, + "source": "api_routers_entities_py", + "target": "core_storage_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L19", + "weight": 1.0, + "source": "api_routers_entities_py", + "target": "routers_entities_deduplicate_entities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L59", + "weight": 1.0, + "source": "api_routers_entities_py", + "target": "routers_entities_get_entity_at_time", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L84", + "weight": 1.0, + "source": "api_routers_entities_py", + "target": "routers_entities_trigger_entity_enrichment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L115", + "weight": 1.0, + "source": "api_routers_entities_py", + "target": "routers_entities_get_entity_summary", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L150", + "weight": 1.0, + "source": "api_routers_entities_py", + "target": "routers_entities_entity_interview", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L22", + "weight": 1.0, + "source": "routers_entities_rationale_22", + "target": "routers_entities_deduplicate_entities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/entities.py", + "source_location": "L37", + "weight": 1.0, + "source": "routers_entities_deduplicate_entities", + "target": "core_entity_resolver_semanticentityresolver" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L64", + "weight": 1.0, + "source": "routers_entities_rationale_64", + "target": "routers_entities_get_entity_at_time", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L89", + "weight": 1.0, + "source": "routers_entities_rationale_89", + "target": "routers_entities_trigger_entity_enrichment", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/entities.py", + "source_location": "L96", + "weight": 1.0, + "source": "routers_entities_trigger_entity_enrichment", + "target": "services_entity_enricher_py" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L119", + "weight": 1.0, + "source": "routers_entities_rationale_119", + "target": "routers_entities_get_entity_summary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "INFERRED", + "source_file": "api/routers/entities.py", + "source_location": "L123", + "weight": 1.0, + "context": "call", + "confidence_score": 0.8, + "source": "routers_entities_get_entity_summary", + "target": "services_entity_enricher_py" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L141", + "weight": 1.0, + "source": "services_entity_enricher_rationale_141", + "target": "routers_entities_get_entity_summary", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/entities.py", + "source_location": "L155", + "weight": 1.0, + "source": "routers_entities_rationale_155", + "target": "routers_entities_entity_interview", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/entities.py", + "source_location": "L205", + "weight": 1.0, + "source": "routers_entities_entity_interview", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/entities.py", + "source_location": "L224", + "weight": 1.0, + "source": "routers_entities_entity_interview", + "target": "core_llm_factory_unifiedllmprovider" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/evaluation.py", + "source_location": "L4", + "weight": 1.0, + "source": "api_routers_evaluation_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/evaluation.py", + "source_location": "L5", + "weight": 1.0, + "source": "api_routers_evaluation_py", + "target": "retrieval_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/evaluation.py", + "source_location": "L6", + "weight": 1.0, + "source": "api_routers_evaluation_py", + "target": "ingestion_pipeline_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/evaluation.py", + "source_location": "L15", + "weight": 1.0, + "source": "api_routers_evaluation_py", + "target": "core_storage_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/evaluation.py", + "source_location": "L19", + "weight": 1.0, + "source": "api_routers_evaluation_py", + "target": "routers_evaluation_evaluate_response", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/evaluation.py", + "source_location": "L67", + "weight": 1.0, + "source": "api_routers_evaluation_py", + "target": "routers_evaluation_get_eval_dashboard", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/evaluation.py", + "source_location": "L23", + "weight": 1.0, + "source": "routers_evaluation_rationale_23", + "target": "routers_evaluation_evaluate_response", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/evaluation.py", + "source_location": "L33", + "weight": 1.0, + "source": "routers_evaluation_evaluate_response", + "target": "retrieval_tools_ragevaluator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/evaluation.py", + "source_location": "L42", + "weight": 1.0, + "source": "routers_evaluation_evaluate_response", + "target": "core_models_evalresult" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/evaluation.py", + "source_location": "L71", + "weight": 1.0, + "source": "routers_evaluation_rationale_71", + "target": "routers_evaluation_get_eval_dashboard", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/evaluation.py", + "source_location": "L92", + "weight": 1.0, + "source": "routers_evaluation_get_eval_dashboard", + "target": "str" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L4", + "weight": 1.0, + "source": "api_routers_graph_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L5", + "weight": 1.0, + "source": "api_routers_graph_py", + "target": "retrieval_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L6", + "weight": 1.0, + "source": "api_routers_graph_py", + "target": "ingestion_pipeline_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L15", + "weight": 1.0, + "source": "api_routers_graph_py", + "target": "core_storage_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L19", + "weight": 1.0, + "source": "api_routers_graph_py", + "target": "routers_graph_get_graph_visualization", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L110", + "weight": 1.0, + "source": "api_routers_graph_py", + "target": "routers_graph_assign_communities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L126", + "weight": 1.0, + "source": "api_routers_graph_py", + "target": "routers_graph_list_communities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L149", + "weight": 1.0, + "source": "api_routers_graph_py", + "target": "routers_graph_export_graph", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L228", + "weight": 1.0, + "source": "api_routers_graph_py", + "target": "routers_graph_update_graph_from_text", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L24", + "weight": 1.0, + "source": "routers_graph_rationale_24", + "target": "routers_graph_get_graph_visualization", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/graph.py", + "source_location": "L85", + "weight": 1.0, + "source": "routers_graph_get_graph_visualization", + "target": "str" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L113", + "weight": 1.0, + "source": "routers_graph_rationale_113", + "target": "routers_graph_assign_communities", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L130", + "weight": 1.0, + "source": "routers_graph_rationale_130", + "target": "routers_graph_list_communities", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L154", + "weight": 1.0, + "source": "routers_graph_rationale_154", + "target": "routers_graph_export_graph", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/graph.py", + "source_location": "L232", + "weight": 1.0, + "source": "routers_graph_rationale_232", + "target": "routers_graph_update_graph_from_text", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "INFERRED", + "source_file": "api/routers/graph.py", + "source_location": "L241", + "weight": 1.0, + "context": "call", + "confidence_score": 0.8, + "source": "routers_graph_update_graph_from_text", + "target": "services_graph_memory_updater_py" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L76", + "weight": 1.0, + "source": "routers_graph_update_graph_from_text", + "target": "services_graph_memory_updater_graphupdateresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L106", + "weight": 1.0, + "source": "routers_graph_update_graph_from_text", + "target": "services_graph_memory_updater_graphmemoryupdater_get_extractor", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L59", + "weight": 1.0, + "source": "services_graph_memory_updater_rationale_59", + "target": "routers_graph_update_graph_from_text", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "services/graph_memory_updater.py", + "source_location": "L85", + "weight": 1.0, + "source": "routers_graph_update_graph_from_text", + "target": "core_models_ontologyschema" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "services/graph_memory_updater.py", + "source_location": "L97", + "weight": 1.0, + "source": "routers_graph_update_graph_from_text", + "target": "core_models_chunk" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "services/graph_memory_updater.py", + "source_location": "L98", + "weight": 1.0, + "source": "routers_graph_update_graph_from_text", + "target": "str" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L4", + "weight": 1.0, + "source": "api_routers_memory_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L5", + "weight": 1.0, + "source": "api_routers_memory_py", + "target": "retrieval_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L6", + "weight": 1.0, + "source": "api_routers_memory_py", + "target": "ingestion_pipeline_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L15", + "weight": 1.0, + "source": "api_routers_memory_py", + "target": "core_storage_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L19", + "weight": 1.0, + "source": "api_routers_memory_py", + "target": "routers_memory_list_conversations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L41", + "weight": 1.0, + "source": "api_routers_memory_py", + "target": "routers_memory_get_conversation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L89", + "weight": 1.0, + "source": "api_routers_memory_py", + "target": "routers_memory_delete_conversation", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L20", + "weight": 1.0, + "source": "routers_memory_rationale_20", + "target": "routers_memory_list_conversations", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L45", + "weight": 1.0, + "source": "routers_memory_rationale_45", + "target": "routers_memory_get_conversation", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/memory.py", + "source_location": "L93", + "weight": 1.0, + "source": "routers_memory_rationale_93", + "target": "routers_memory_delete_conversation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L6", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L7", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "retrieval_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L8", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "ingestion_pipeline_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L9", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "ingestion_ontology_generator_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L10", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "services_ontology_drift_detector_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L19", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "core_storage_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L23", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "routers_ontology_get_ontology", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L53", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "routers_ontology_get_ontology_stats", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L99", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "routers_ontology_refine_ontology", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L152", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "routers_ontology_update_ontology", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L195", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "routers_ontology_trigger_drift_detection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L229", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "routers_ontology_list_drift_reports", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L258", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "routers_ontology_approve_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L281", + "weight": 1.0, + "source": "api_routers_ontology_py", + "target": "routers_ontology_reject_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L105", + "weight": 1.0, + "source": "routers_ontology_refine_ontology", + "target": "routers_ontology_get_ontology", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L158", + "weight": 1.0, + "source": "routers_ontology_update_ontology", + "target": "routers_ontology_get_ontology", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L24", + "weight": 1.0, + "source": "routers_ontology_rationale_24", + "target": "routers_ontology_get_ontology", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L218", + "weight": 1.0, + "source": "ingestion_pipeline_ingestionpipeline", + "target": "routers_ontology_get_ontology", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L57", + "weight": 1.0, + "source": "routers_ontology_rationale_57", + "target": "routers_ontology_get_ontology_stats", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L103", + "weight": 1.0, + "source": "routers_ontology_rationale_103", + "target": "routers_ontology_refine_ontology", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L128", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "routers_ontology_refine_ontology", + "target": "ingestion_ontology_generator_py" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L121", + "weight": 1.0, + "source": "ingestion_ontology_generator_rationale_121", + "target": "routers_ontology_refine_ontology", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "ingestion/ontology_generator.py", + "source_location": "L180", + "weight": 1.0, + "source": "routers_ontology_refine_ontology", + "target": "core_models_ontologyschema" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L156", + "weight": 1.0, + "source": "routers_ontology_rationale_156", + "target": "routers_ontology_update_ontology", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L199", + "weight": 1.0, + "source": "routers_ontology_rationale_199", + "target": "routers_ontology_trigger_drift_detection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/ontology.py", + "source_location": "L204", + "weight": 1.0, + "source": "routers_ontology_trigger_drift_detection", + "target": "services_ontology_drift_detector_py" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L234", + "weight": 1.0, + "source": "routers_ontology_rationale_234", + "target": "routers_ontology_list_drift_reports", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L235", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "routers_ontology_list_drift_reports", + "target": "services_ontology_drift_detector_py" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L177", + "weight": 1.0, + "source": "routers_ontology_list_drift_reports", + "target": "services_ontology_drift_detector_row_to_report", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L152", + "weight": 1.0, + "source": "services_ontology_drift_detector_rationale_152", + "target": "routers_ontology_list_drift_reports", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L262", + "weight": 1.0, + "source": "routers_ontology_rationale_262", + "target": "routers_ontology_approve_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "api/routers/ontology.py", + "source_location": "L266", + "weight": 1.0, + "source": "routers_ontology_approve_drift_report", + "target": "services_ontology_drift_detector_py" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L285", + "weight": 1.0, + "source": "routers_ontology_rationale_285", + "target": "routers_ontology_reject_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "api/routers/ontology.py", + "source_location": "L286", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "routers_ontology_reject_drift_report", + "target": "services_ontology_drift_detector_py" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L136", + "weight": 1.0, + "source": "services_ontology_drift_detector_rationale_136", + "target": "routers_ontology_reject_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/query.py", + "source_location": "L5", + "weight": 1.0, + "source": "api_routers_query_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/query.py", + "source_location": "L6", + "weight": 1.0, + "source": "api_routers_query_py", + "target": "retrieval_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/query.py", + "source_location": "L7", + "weight": 1.0, + "source": "api_routers_query_py", + "target": "ingestion_pipeline_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/query.py", + "source_location": "L19", + "weight": 1.0, + "source": "api_routers_query_py", + "target": "routers_query_query", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/query.py", + "source_location": "L23", + "weight": 1.0, + "source": "routers_query_rationale_23", + "target": "routers_query_query", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L179", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "routers_query_query", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L192", + "weight": 1.0, + "source": "routers_query_query", + "target": "retrieval_agent_agentretrievalsystem_cache_get", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L209", + "weight": 1.0, + "source": "routers_query_query", + "target": "retrieval_agent_agentretrievalsystem_make_initial_state", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L217", + "weight": 1.0, + "source": "routers_query_query", + "target": "core_neo4j_store_neo4jstore_fallback_search", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L253", + "weight": 1.0, + "source": "routers_query_query", + "target": "retrieval_agent_agentretrievalsystem_cache_set", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/query.py", + "source_location": "L31", + "weight": 1.0, + "source": "routers_query_query", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "retrieval/agent.py", + "source_location": "L197", + "weight": 1.0, + "source": "routers_query_query", + "target": "core_models_queryresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "retrieval/agent.py", + "source_location": "L229", + "weight": 1.0, + "source": "routers_query_query", + "target": "core_models_confidencejudgment" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/report.py", + "source_location": "L4", + "weight": 1.0, + "source": "api_routers_report_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/report.py", + "source_location": "L5", + "weight": 1.0, + "source": "api_routers_report_py", + "target": "retrieval_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/report.py", + "source_location": "L6", + "weight": 1.0, + "source": "api_routers_report_py", + "target": "ingestion_pipeline_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/report.py", + "source_location": "L15", + "weight": 1.0, + "source": "api_routers_report_py", + "target": "core_storage_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/report.py", + "source_location": "L19", + "weight": 1.0, + "source": "api_routers_report_py", + "target": "routers_report_generate_report", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/report.py", + "source_location": "L23", + "weight": 1.0, + "source": "routers_report_rationale_23", + "target": "routers_report_generate_report", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L154", + "weight": 1.0, + "source": "retrieval_communities_communitybuilder", + "target": "routers_report_generate_report", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L175", + "weight": 1.0, + "source": "routers_report_generate_report", + "target": "retrieval_communities_communitybuilder_collect_evidence", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L209", + "weight": 1.0, + "source": "routers_report_generate_report", + "target": "core_models_communityreport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L236", + "weight": 1.0, + "source": "routers_report_generate_report", + "target": "retrieval_communities_communitybuilder_embed_report", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L155", + "weight": 1.0, + "source": "retrieval_communities_rationale_155", + "target": "routers_report_generate_report", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "INFERRED", + "source_file": "api/routers/report.py", + "source_location": "L35", + "weight": 1.0, + "context": "call", + "confidence_score": 0.8, + "source": "routers_report_generate_report", + "target": "retrieval_report_agent_py" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L324", + "weight": 1.0, + "source": "routers_report_generate_report", + "target": "retrieval_report_agent_reportagent_decompose_topic", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L336", + "weight": 1.0, + "source": "routers_report_generate_report", + "target": "retrieval_report_agent_reportagent_react_loop", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L344", + "weight": 1.0, + "source": "routers_report_generate_report", + "target": "retrieval_report_agent_reportagent_write_executive_summary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L353", + "weight": 1.0, + "source": "routers_report_generate_report", + "target": "retrieval_report_agent_reportagent_compile_markdown", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L357", + "weight": 1.0, + "source": "routers_report_generate_report", + "target": "retrieval_report_agent_reportresult", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L310", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_310", + "target": "routers_report_generate_report", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "api/routers/report.py", + "source_location": "L34", + "weight": 1.0, + "source": "routers_report_generate_report", + "target": "core_llm_factory_unifiedllmprovider" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L5", + "weight": 1.0, + "source": "api_routers_system_py", + "target": "workers_celery_worker_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L9", + "weight": 1.0, + "source": "api_routers_system_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L10", + "weight": 1.0, + "source": "api_routers_system_py", + "target": "retrieval_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L11", + "weight": 1.0, + "source": "api_routers_system_py", + "target": "ingestion_pipeline_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L20", + "weight": 1.0, + "source": "api_routers_system_py", + "target": "core_storage_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L24", + "weight": 1.0, + "source": "api_routers_system_py", + "target": "routers_system_health_check", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L74", + "weight": 1.0, + "source": "api_routers_system_py", + "target": "routers_system_get_system_stats", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L111", + "weight": 1.0, + "source": "api_routers_system_py", + "target": "routers_system_get_my_stats", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L149", + "weight": 1.0, + "source": "api_routers_system_py", + "target": "routers_system_get_supported_formats", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L244", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "routers_system_health_check", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L245", + "weight": 1.0, + "source": "workers_celery_worker_rationale_245", + "target": "routers_system_health_check", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L75", + "weight": 1.0, + "source": "routers_system_rationale_75", + "target": "routers_system_get_system_stats", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L112", + "weight": 1.0, + "source": "routers_system_rationale_112", + "target": "routers_system_get_my_stats", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "api/routers/system.py", + "source_location": "L150", + "weight": 1.0, + "source": "routers_system_rationale_150", + "target": "routers_system_get_supported_formats", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L6", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "abc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L11", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "graphstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L112", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_connect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L117", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L25", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_create_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L38", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_create_relationship", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L51", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_execute_query", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L65", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_find_path", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L80", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_get_neighbors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L94", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_merge_entities", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L108", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "vectorstore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L122", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_add_vectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L142", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_search", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L162", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_delete_vectors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L172", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "llmprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L176", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_complete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L198", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_complete_structured", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L218", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_embed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L231", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_embed_batch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L12", + "weight": 1.0, + "context": "import", + "source": "entityresolver", + "target": "core_abstractions_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L248", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_resolve", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L266", + "weight": 1.0, + "source": "core_abstractions_py", + "target": "core_abstractions_compute_similarity", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L1", + "weight": 1.0, + "source": "core_abstractions_rationale_1", + "target": "core_abstractions_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L24", + "weight": 1.0, + "source": "core_llm_factory_py", + "target": "core_abstractions_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L16", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_abstractions_py", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L11", + "weight": 1.0, + "source": "graphstore", + "target": "abc", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L108", + "weight": 1.0, + "source": "vectorstore", + "target": "abc", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L172", + "weight": 1.0, + "source": "llmprovider", + "target": "abc", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L244", + "weight": 1.0, + "source": "entityresolver", + "target": "abc", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L44", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_abstractions_connect", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L52", + "weight": 1.0, + "source": "core_abstractions_connect", + "target": "core_neo4j_store_neo4jstore_create_vector_index", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L53", + "weight": 1.0, + "source": "core_abstractions_connect", + "target": "core_neo4j_store_neo4jstore_create_fulltext_index", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L54", + "weight": 1.0, + "source": "core_abstractions_connect", + "target": "core_neo4j_store_neo4jstore_create_constraints", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L45", + "weight": 1.0, + "source": "core_neo4j_store_rationale_45", + "target": "core_abstractions_connect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L56", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_abstractions_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L57", + "weight": 1.0, + "source": "core_neo4j_store_rationale_57", + "target": "core_abstractions_disconnect", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L129", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_abstractions_create_node", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L770", + "weight": 1.0, + "source": "core_neo4j_store_neo4jstore_create_chunk_with_entities", + "target": "core_abstractions_create_node", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L130", + "weight": 1.0, + "source": "core_neo4j_store_rationale_130", + "target": "core_abstractions_create_node", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "core/neo4j_store.py", + "source_location": "L132", + "weight": 1.0, + "source": "core_abstractions_create_node", + "target": "str" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L165", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_abstractions_create_relationship", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L166", + "weight": 1.0, + "source": "core_neo4j_store_rationale_166", + "target": "core_abstractions_create_relationship", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "core/neo4j_store.py", + "source_location": "L168", + "weight": 1.0, + "source": "core_abstractions_create_relationship", + "target": "str" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L214", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_abstractions_execute_query", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L393", + "weight": 1.0, + "source": "core_neo4j_store_neo4jstore_get_communities", + "target": "core_abstractions_execute_query", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L415", + "weight": 1.0, + "source": "core_neo4j_store_neo4jstore_get_community_entities", + "target": "core_abstractions_execute_query", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L425", + "weight": 1.0, + "source": "core_neo4j_store_neo4jstore_assign_community_ids", + "target": "core_abstractions_execute_query", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L477", + "weight": 1.0, + "source": "core_neo4j_store_neo4jstore_get_entities_at_time", + "target": "core_abstractions_execute_query", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L665", + "weight": 1.0, + "source": "core_neo4j_store_neo4jstore_save_eval_result", + "target": "core_abstractions_execute_query", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L691", + "weight": 1.0, + "source": "core_neo4j_store_neo4jstore_get_eval_results", + "target": "core_abstractions_execute_query", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L723", + "weight": 1.0, + "source": "core_neo4j_store_neo4jstore_get_semantic_cache", + "target": "core_abstractions_execute_query", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L220", + "weight": 1.0, + "source": "core_neo4j_store_rationale_220", + "target": "core_abstractions_execute_query", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L232", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_abstractions_find_path", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L264", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_abstractions_get_neighbors", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L270", + "weight": 1.0, + "source": "core_neo4j_store_rationale_270", + "target": "core_abstractions_get_neighbors", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L294", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_abstractions_merge_entities", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L295", + "weight": 1.0, + "source": "core_neo4j_store_rationale_295", + "target": "core_abstractions_merge_entities", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L481", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_abstractions_add_vectors", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L487", + "weight": 1.0, + "source": "core_neo4j_store_rationale_487", + "target": "core_abstractions_add_vectors", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "core/neo4j_store.py", + "source_location": "L489", + "weight": 1.0, + "source": "core_abstractions_add_vectors", + "target": "str" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L529", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_abstractions_search", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L566", + "weight": 1.0, + "source": "core_abstractions_search", + "target": "core_neo4j_store_neo4jstore_fallback_search", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L536", + "weight": 1.0, + "source": "core_neo4j_store_rationale_536", + "target": "core_abstractions_search", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "core/neo4j_store.py", + "source_location": "L562", + "weight": 1.0, + "source": "core_abstractions_search", + "target": "str" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L583", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_abstractions_delete_vectors", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L89", + "weight": 1.0, + "source": "core_llm_factory_unifiedllmprovider", + "target": "core_abstractions_complete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L154", + "weight": 1.0, + "source": "core_abstractions_complete_structured", + "target": "core_abstractions_complete", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L96", + "weight": 1.0, + "source": "core_llm_factory_rationale_96", + "target": "core_abstractions_complete", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "core/llm_factory.py", + "source_location": "L119", + "weight": 1.0, + "source": "core_abstractions_complete", + "target": "str" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L129", + "weight": 1.0, + "source": "core_llm_factory_unifiedllmprovider", + "target": "core_abstractions_complete_structured", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L135", + "weight": 1.0, + "source": "core_llm_factory_rationale_135", + "target": "core_abstractions_complete_structured", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L182", + "weight": 1.0, + "source": "core_llm_factory_unifiedllmprovider", + "target": "core_abstractions_embed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L218", + "weight": 1.0, + "source": "core_abstractions_embed", + "target": "core_llm_factory_create", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L183", + "weight": 1.0, + "source": "core_llm_factory_rationale_183", + "target": "core_abstractions_embed", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "core/llm_factory.py", + "source_location": "L198", + "weight": 1.0, + "source": "core_abstractions_embed", + "target": "str" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L226", + "weight": 1.0, + "source": "core_llm_factory_unifiedllmprovider", + "target": "core_abstractions_embed_batch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L262", + "weight": 1.0, + "source": "core_abstractions_embed_batch", + "target": "core_llm_factory_create", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L227", + "weight": 1.0, + "source": "core_llm_factory_rationale_227", + "target": "core_abstractions_embed_batch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "core/llm_factory.py", + "source_location": "L242", + "weight": 1.0, + "source": "core_abstractions_embed_batch", + "target": "str" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L29", + "weight": 1.0, + "source": "core_entity_resolver_semanticentityresolver", + "target": "core_abstractions_resolve", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L56", + "weight": 1.0, + "source": "core_abstractions_resolve", + "target": "core_entity_resolver_semanticentityresolver_find_duplicates", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L34", + "weight": 1.0, + "source": "core_entity_resolver_rationale_34", + "target": "core_abstractions_resolve", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L107", + "weight": 1.0, + "source": "core_entity_resolver_semanticentityresolver", + "target": "core_abstractions_compute_similarity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L93", + "weight": 1.0, + "source": "core_entity_resolver_semanticentityresolver_find_duplicates", + "target": "core_abstractions_compute_similarity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L118", + "weight": 1.0, + "source": "core_abstractions_compute_similarity", + "target": "core_entity_resolver_semanticentityresolver_string_similarity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L121", + "weight": 1.0, + "source": "core_abstractions_compute_similarity", + "target": "core_entity_resolver_semanticentityresolver_property_similarity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L124", + "weight": 1.0, + "source": "core_abstractions_compute_similarity", + "target": "core_entity_resolver_semanticentityresolver_embedding_similarity", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L108", + "weight": 1.0, + "source": "core_entity_resolver_rationale_108", + "target": "core_abstractions_compute_similarity", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L12", + "weight": 1.0, + "source": "core_abstractions_rationale_12", + "target": "graphstore", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L109", + "weight": 1.0, + "source": "core_abstractions_rationale_12", + "target": "vectorstore", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L173", + "weight": 1.0, + "source": "core_abstractions_rationale_173", + "target": "llmprovider", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/abstractions.py", + "source_location": "L245", + "weight": 1.0, + "source": "core_abstractions_rationale_245", + "target": "entityresolver", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/entity_resolver.py", + "source_location": "L12", + "weight": 0.8, + "source": "core_entity_resolver_semanticentityresolver", + "target": "entityresolver", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L31", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "core_entity_resolver_semanticentityresolver" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L61", + "weight": 1.0, + "source": "core_entity_resolver_semanticentityresolver", + "target": "core_entity_resolver_semanticentityresolver_find_duplicates", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L131", + "weight": 1.0, + "source": "core_entity_resolver_semanticentityresolver", + "target": "core_entity_resolver_semanticentityresolver_string_similarity", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L135", + "weight": 1.0, + "source": "core_entity_resolver_semanticentityresolver", + "target": "core_entity_resolver_semanticentityresolver_property_similarity", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L170", + "weight": 1.0, + "source": "core_entity_resolver_semanticentityresolver", + "target": "core_entity_resolver_semanticentityresolver_embedding_similarity", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L190", + "weight": 1.0, + "source": "core_entity_resolver_semanticentityresolver", + "target": "core_entity_resolver_semanticentityresolver_get_entity_embedding", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L18", + "weight": 1.0, + "source": "core_entity_resolver_rationale_18", + "target": "core_entity_resolver_semanticentityresolver", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/entity_resolver.py", + "source_location": "L12", + "weight": 0.8, + "source": "core_entity_resolver_semanticentityresolver", + "target": "llmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/entity_resolver.py", + "source_location": "L13", + "weight": 0.8, + "source": "core_entity_resolver_semanticentityresolver", + "target": "core_models_entity", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/extractor.py", + "source_location": "L14", + "weight": 0.8, + "source": "ingestion_extractor_knowledgeextractor", + "target": "core_entity_resolver_semanticentityresolver", + "confidence_score": 0.5 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L1", + "weight": 1.0, + "source": "core_entity_resolver_rationale_1", + "target": "entityresolver", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L14", + "weight": 1.0, + "source": "ingestion_extractor_py", + "target": "entityresolver", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/abstractions.py", + "source_location": "L8", + "weight": 0.8, + "source": "entityresolver", + "target": "core_models_entity", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/abstractions.py", + "source_location": "L8", + "weight": 0.8, + "source": "entityresolver", + "target": "core_models_relationship", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/abstractions.py", + "source_location": "L8", + "weight": 0.8, + "source": "entityresolver", + "target": "core_models_chunk", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L75", + "weight": 1.0, + "source": "core_entity_resolver_semanticentityresolver_find_duplicates", + "target": "core_entity_resolver_semanticentityresolver_get_entity_embedding", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L88", + "weight": 1.0, + "source": "core_entity_resolver_semanticentityresolver_find_duplicates", + "target": "core_entity_resolver_semanticentityresolver_string_similarity", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L66", + "weight": 1.0, + "source": "core_entity_resolver_rationale_66", + "target": "core_entity_resolver_semanticentityresolver_find_duplicates", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L132", + "weight": 1.0, + "source": "core_entity_resolver_rationale_132", + "target": "core_entity_resolver_semanticentityresolver_string_similarity", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L136", + "weight": 1.0, + "source": "core_entity_resolver_rationale_136", + "target": "core_entity_resolver_semanticentityresolver_property_similarity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "core/entity_resolver.py", + "source_location": "L160", + "weight": 1.0, + "source": "core_entity_resolver_semanticentityresolver_property_similarity", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L174", + "weight": 1.0, + "source": "core_entity_resolver_semanticentityresolver_embedding_similarity", + "target": "core_entity_resolver_semanticentityresolver_get_entity_embedding", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L171", + "weight": 1.0, + "source": "core_entity_resolver_rationale_171", + "target": "core_entity_resolver_semanticentityresolver_embedding_similarity", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/entity_resolver.py", + "source_location": "L191", + "weight": 1.0, + "source": "core_entity_resolver_rationale_191", + "target": "core_entity_resolver_semanticentityresolver_get_entity_embedding", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L32", + "weight": 1.0, + "source": "core_llm_factory_py", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L271", + "weight": 1.0, + "source": "core_llm_factory_py", + "target": "core_llm_factory_llmfactory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L275", + "weight": 1.0, + "source": "core_llm_factory_py", + "target": "core_llm_factory_create", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L289", + "weight": 1.0, + "source": "core_llm_factory_py", + "target": "core_llm_factory_create_from_config", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L13", + "weight": 1.0, + "source": "ingestion_extractor_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L11", + "weight": 1.0, + "source": "ingestion_ontology_generator_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/persona_generator.py", + "source_location": "L15", + "weight": 1.0, + "source": "ingestion_persona_generator_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L33", + "weight": 1.0, + "source": "retrieval_agent_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L7", + "weight": 1.0, + "source": "retrieval_communities_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/hippo_tool.py", + "source_location": "L5", + "weight": 1.0, + "source": "retrieval_hippo_tool_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L24", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L16", + "weight": 1.0, + "source": "retrieval_tools_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L18", + "weight": 1.0, + "source": "services_entity_enricher_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L16", + "weight": 1.0, + "source": "services_graph_memory_updater_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L20", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L22", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L17", + "weight": 1.0, + "source": "workers_simulation_runner_py", + "target": "core_llm_factory_py", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/llm_factory.py", + "source_location": "L24", + "weight": 0.8, + "source": "core_llm_factory_unifiedllmprovider", + "target": "llmprovider", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L57", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "core_llm_factory_unifiedllmprovider" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L45", + "weight": 1.0, + "source": "core_llm_factory_unifiedllmprovider", + "target": "core_llm_factory_unifiedllmprovider_initialize_provider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L286", + "weight": 1.0, + "source": "core_llm_factory_create", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L33", + "weight": 1.0, + "source": "core_llm_factory_rationale_33", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/persona_generator.py", + "source_location": "L15", + "weight": 0.8, + "source": "ingestion_persona_generator_personaprofile", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/persona_generator.py", + "source_location": "L15", + "weight": 0.8, + "source": "ingestion_persona_generator_py", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L33", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/communities.py", + "source_location": "L7", + "weight": 0.8, + "source": "core_models_communityreport", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/communities.py", + "source_location": "L7", + "weight": 0.8, + "source": "retrieval_communities_communitybuilder", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/hippo_tool.py", + "source_location": "L5", + "weight": 0.8, + "source": "retrieval_hippo_tool_hipporagtool", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/report_agent.py", + "source_location": "L24", + "weight": 0.8, + "source": "retrieval_report_agent_reportsection", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/report_agent.py", + "source_location": "L24", + "weight": 0.8, + "source": "retrieval_report_agent_reportresult", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/report_agent.py", + "source_location": "L24", + "weight": 0.8, + "source": "retrieval_report_agent_insightforgetool", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/report_agent.py", + "source_location": "L24", + "weight": 0.8, + "source": "retrieval_report_agent_panoramasearchtool", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/report_agent.py", + "source_location": "L24", + "weight": 0.8, + "source": "retrieval_report_agent_quicksearchtool", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/report_agent.py", + "source_location": "L24", + "weight": 0.8, + "source": "retrieval_report_agent_py", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L16", + "weight": 0.8, + "source": "retrieval_tools_hybridsearchtool", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L16", + "weight": 0.8, + "source": "retrieval_tools_vectorsearchtool", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L16", + "weight": 0.8, + "source": "retrieval_tools_communitysummarytool", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L16", + "weight": 0.8, + "source": "retrieval_tools_graphtraversaltool", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L16", + "weight": 0.8, + "source": "retrieval_tools_cyphergenerationtool", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L16", + "weight": 0.8, + "source": "retrieval_tools_metadatafiltertool", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L16", + "weight": 0.8, + "source": "retrieval_tools_llmjudge", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L16", + "weight": 0.8, + "source": "retrieval_tools_ragevaluator", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L16", + "weight": 0.8, + "source": "retrieval_tools_entitysummarysearchtool", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "workers/simulation_runner.py", + "source_location": "L17", + "weight": 0.8, + "source": "workers_simulation_runner_agentaction", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "workers/simulation_runner.py", + "source_location": "L17", + "weight": 0.8, + "source": "workers_simulation_runner_simulationmanager", + "target": "core_llm_factory_unifiedllmprovider", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/abstractions.py", + "source_location": "L8", + "weight": 0.8, + "source": "llmprovider", + "target": "core_models_entity", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/abstractions.py", + "source_location": "L8", + "weight": 0.8, + "source": "llmprovider", + "target": "core_models_relationship", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/abstractions.py", + "source_location": "L8", + "weight": 0.8, + "source": "llmprovider", + "target": "core_models_chunk", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/llm_factory.py", + "source_location": "L24", + "weight": 0.8, + "source": "core_llm_factory_llmfactory", + "target": "llmprovider", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L43", + "weight": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "core_llm_factory_unifiedllmprovider_initialize_provider", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L46", + "weight": 1.0, + "source": "core_llm_factory_rationale_46", + "target": "core_llm_factory_unifiedllmprovider_initialize_provider", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L272", + "weight": 1.0, + "source": "core_llm_factory_rationale_272", + "target": "core_llm_factory_llmfactory", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/extractor.py", + "source_location": "L13", + "weight": 0.8, + "source": "ingestion_extractor_knowledgeextractor", + "target": "core_llm_factory_llmfactory", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L11", + "weight": 0.8, + "source": "ingestion_ontology_generator_py", + "target": "core_llm_factory_llmfactory", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/entity_enricher.py", + "source_location": "L18", + "weight": 0.8, + "source": "services_entity_enricher_enrichmentresult", + "target": "core_llm_factory_llmfactory", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/entity_enricher.py", + "source_location": "L18", + "weight": 0.8, + "source": "services_entity_enricher_py", + "target": "core_llm_factory_llmfactory", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L16", + "weight": 0.8, + "source": "services_graph_memory_updater_graphupdateresult", + "target": "core_llm_factory_llmfactory", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L16", + "weight": 0.8, + "source": "services_graph_memory_updater_py", + "target": "core_llm_factory_llmfactory", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L20", + "weight": 0.8, + "source": "services_ontology_drift_detector_driftreport", + "target": "core_llm_factory_llmfactory", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L20", + "weight": 0.8, + "source": "services_ontology_drift_detector_py", + "target": "core_llm_factory_llmfactory", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/llm_factory.py", + "source_location": "L301", + "weight": 1.0, + "source": "core_llm_factory_create_from_config", + "target": "core_llm_factory_create", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L12", + "weight": 1.0, + "source": "core_models_nodetype", + "target": "str", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L12", + "weight": 1.0, + "source": "core_models_nodetype", + "target": "enum", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L13", + "weight": 1.0, + "source": "core_models_rationale_13", + "target": "core_models_nodetype", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L19", + "weight": 1.0, + "source": "core_models_relationtype", + "target": "str", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L27", + "weight": 1.0, + "source": "core_models_ontologyversion", + "target": "str", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L174", + "weight": 1.0, + "source": "core_models_searchmethod", + "target": "str", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "core/neo4j_store.py", + "source_location": "L648", + "weight": 1.0, + "source": "core_neo4j_store_neo4jstore_save_eval_result", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "core/neo4j_store.py", + "source_location": "L739", + "weight": 1.0, + "source": "core_neo4j_store_neo4jstore_create_chunk_with_entities", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ingestion/document_processor.py", + "source_location": "L81", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_process_document", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ingestion/document_processor.py", + "source_location": "L153", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_extract_pdf", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ingestion/document_processor.py", + "source_location": "L231", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_extract_excel", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ingestion/document_processor.py", + "source_location": "L270", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_extract_pptx", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ingestion/document_processor.py", + "source_location": "L347", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_generate_document_id", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "retrieval/agent.py", + "source_location": "L708", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem_format_context", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "retrieval/agent.py", + "source_location": "L724", + "weight": 1.0, + "source": "core_neo4j_store_neo4jstore_fallback_search", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "retrieval/communities.py", + "source_location": "L107", + "weight": 1.0, + "source": "retrieval_communities_communitybuilder_run_leiden", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "retrieval/report_agent.py", + "source_location": "L399", + "weight": 1.0, + "source": "retrieval_report_agent_reportagent_decompose_topic", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "retrieval/report_agent.py", + "source_location": "L436", + "weight": 1.0, + "source": "retrieval_report_agent_reportagent_react_loop", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "retrieval/tools.py", + "source_location": "L422", + "weight": 1.0, + "source": "retrieval_tools_hybridsearchtool_run", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "retrieval/tools.py", + "source_location": "L604", + "weight": 1.0, + "source": "retrieval_tools_llmjudge_score", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "services/ontology_drift_detector.py", + "source_location": "L202", + "weight": 1.0, + "source": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", + "target": "str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "services/ontology_drift_detector.py", + "source_location": "L328", + "weight": 1.0, + "source": "services_ontology_drift_detector_row_to_report", + "target": "str" + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L19", + "weight": 1.0, + "source": "core_models_relationtype", + "target": "enum", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L27", + "weight": 1.0, + "source": "core_models_ontologyversion", + "target": "enum", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L174", + "weight": 1.0, + "source": "core_models_searchmethod", + "target": "enum", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L20", + "weight": 1.0, + "source": "core_models_rationale_20", + "target": "core_models_relationtype", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L28", + "weight": 1.0, + "source": "core_models_rationale_28", + "target": "core_models_ontologyversion", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L35", + "weight": 1.0, + "source": "core_models_rationale_35", + "target": "core_models_entity", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/abstractions.py", + "source_location": "L8", + "weight": 0.8, + "source": "graphstore", + "target": "core_models_entity", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/abstractions.py", + "source_location": "L8", + "weight": 0.8, + "source": "vectorstore", + "target": "core_models_entity", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/neo4j_store.py", + "source_location": "L17", + "weight": 0.8, + "source": "core_neo4j_store_py", + "target": "core_models_entity", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/extractor.py", + "source_location": "L12", + "weight": 0.8, + "source": "ingestion_extractor_knowledgeextractor", + "target": "core_models_entity", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "ingestion/extractor.py", + "source_location": "L253", + "weight": 1.0, + "source": "ingestion_extractor_knowledgeextractor_parse_extraction", + "target": "core_models_entity" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L65", + "weight": 1.0, + "source": "core_models_rationale_65", + "target": "core_models_relationship", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/abstractions.py", + "source_location": "L8", + "weight": 0.8, + "source": "graphstore", + "target": "core_models_relationship", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/abstractions.py", + "source_location": "L8", + "weight": 0.8, + "source": "vectorstore", + "target": "core_models_relationship", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/neo4j_store.py", + "source_location": "L17", + "weight": 0.8, + "source": "core_neo4j_store_py", + "target": "core_models_relationship", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/extractor.py", + "source_location": "L12", + "weight": 0.8, + "source": "ingestion_extractor_knowledgeextractor", + "target": "core_models_relationship", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "ingestion/extractor.py", + "source_location": "L269", + "weight": 1.0, + "source": "ingestion_extractor_knowledgeextractor_parse_extraction", + "target": "core_models_relationship" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L94", + "weight": 1.0, + "source": "core_models_rationale_94", + "target": "core_models_chunk", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/abstractions.py", + "source_location": "L8", + "weight": 0.8, + "source": "graphstore", + "target": "core_models_chunk", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/abstractions.py", + "source_location": "L8", + "weight": 0.8, + "source": "vectorstore", + "target": "core_models_chunk", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/neo4j_store.py", + "source_location": "L17", + "weight": 0.8, + "source": "core_neo4j_store_py", + "target": "core_models_chunk", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/document_processor.py", + "source_location": "L20", + "weight": 0.8, + "source": "ingestion_document_processor_py", + "target": "core_models_chunk", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/extractor.py", + "source_location": "L12", + "weight": 0.8, + "source": "ingestion_extractor_knowledgeextractor", + "target": "core_models_chunk", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L10", + "weight": 0.8, + "source": "ingestion_ontology_generator_py", + "target": "core_models_chunk", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L17", + "weight": 0.8, + "source": "services_graph_memory_updater_graphupdateresult", + "target": "core_models_chunk", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L17", + "weight": 0.8, + "source": "services_graph_memory_updater_py", + "target": "core_models_chunk", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L187", + "weight": 0.8, + "source": "services_ontology_drift_detector_driftreport", + "target": "core_models_chunk", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L187", + "weight": 0.8, + "source": "services_ontology_drift_detector_py", + "target": "core_models_chunk", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "ingestion/document_processor.py", + "source_location": "L108", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_chunk_document", + "target": "core_models_chunk" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "services/ontology_drift_detector.py", + "source_location": "L201", + "weight": 1.0, + "source": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", + "target": "core_models_chunk" + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/document_processor.py", + "source_location": "L20", + "weight": 0.8, + "source": "ingestion_document_processor_py", + "target": "core_models_document", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/pipeline.py", + "source_location": "L16", + "weight": 0.8, + "source": "ingestion_pipeline_ingestionpipeline", + "target": "core_models_document", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "ingestion/document_processor.py", + "source_location": "L73", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_process_document", + "target": "core_models_document" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L121", + "weight": 1.0, + "source": "core_models_rationale_121", + "target": "core_models_ontologyschema", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/neo4j_store.py", + "source_location": "L622", + "weight": 0.8, + "source": "core_neo4j_store_py", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/extractor.py", + "source_location": "L12", + "weight": 0.8, + "source": "ingestion_extractor_knowledgeextractor", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L10", + "weight": 0.8, + "source": "ingestion_ontology_generator_py", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/pipeline.py", + "source_location": "L16", + "weight": 0.8, + "source": "ingestion_pipeline_ingestionpipeline", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L34", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L17", + "weight": 0.8, + "source": "retrieval_tools_hybridsearchtool", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L17", + "weight": 0.8, + "source": "retrieval_tools_vectorsearchtool", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L17", + "weight": 0.8, + "source": "retrieval_tools_communitysummarytool", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L17", + "weight": 0.8, + "source": "retrieval_tools_graphtraversaltool", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L17", + "weight": 0.8, + "source": "retrieval_tools_cyphergenerationtool", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L17", + "weight": 0.8, + "source": "retrieval_tools_metadatafiltertool", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L17", + "weight": 0.8, + "source": "retrieval_tools_llmjudge", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L17", + "weight": 0.8, + "source": "retrieval_tools_ragevaluator", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L17", + "weight": 0.8, + "source": "retrieval_tools_entitysummarysearchtool", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L17", + "weight": 0.8, + "source": "services_graph_memory_updater_graphupdateresult", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L17", + "weight": 0.8, + "source": "services_graph_memory_updater_py", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L21", + "weight": 0.8, + "source": "services_ontology_drift_detector_driftreport", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L21", + "weight": 0.8, + "source": "services_ontology_drift_detector_py", + "target": "core_models_ontologyschema", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "core/neo4j_store.py", + "source_location": "L637", + "weight": 1.0, + "source": "core_neo4j_store_neo4jstore_load_ontology", + "target": "core_models_ontologyschema" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "ingestion/ontology_generator.py", + "source_location": "L92", + "weight": 1.0, + "source": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", + "target": "core_models_ontologyschema" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "services/ontology_drift_detector.py", + "source_location": "L112", + "weight": 1.0, + "source": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", + "target": "core_models_ontologyschema" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L131", + "weight": 1.0, + "source": "core_models_rationale_131", + "target": "core_models_extractionresult", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/extractor.py", + "source_location": "L12", + "weight": 0.8, + "source": "ingestion_extractor_knowledgeextractor", + "target": "core_models_extractionresult", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/pipeline.py", + "source_location": "L16", + "weight": 0.8, + "source": "ingestion_pipeline_ingestionpipeline", + "target": "core_models_extractionresult", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "ingestion/extractor.py", + "source_location": "L182", + "weight": 1.0, + "source": "ingestion_extractor_knowledgeextractor_extract_from_chunk", + "target": "core_models_extractionresult" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L140", + "weight": 1.0, + "source": "core_models_rationale_140", + "target": "core_models_confidencejudgment", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L34", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "core_models_confidencejudgment", + "confidence_score": 0.5 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L149", + "weight": 1.0, + "source": "core_models_rationale_149", + "target": "core_models_queryresult", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L34", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "core_models_queryresult", + "confidence_score": 0.5 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L164", + "weight": 1.0, + "source": "core_models_rationale_164", + "target": "core_models_agentstate", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L175", + "weight": 1.0, + "source": "core_models_rationale_175", + "target": "core_models_searchmethod", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L185", + "weight": 1.0, + "source": "core_models_rationale_185", + "target": "core_models_evalresult", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/models.py", + "source_location": "L199", + "weight": 1.0, + "source": "core_models_rationale_199", + "target": "core_models_communityreport", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L11", + "weight": 1.0, + "source": "retrieval_communities_py", + "target": "core_models_communityreport", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/communities.py", + "source_location": "L6", + "weight": 0.8, + "source": "core_models_communityreport", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/neo4j_store.py", + "source_location": "L16", + "weight": 0.8, + "source": "core_neo4j_store_py", + "target": "graphstore", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "core/neo4j_store.py", + "source_location": "L16", + "weight": 0.8, + "source": "core_neo4j_store_py", + "target": "vectorstore", + "confidence_score": 0.5 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L31", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "retrieval_tools_llmjudge_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L63", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_create_vector_index", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L92", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_create_fulltext_index", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L108", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_create_constraints", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L324", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_bm25_search", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L367", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_get_communities", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L402", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_get_community_entities", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L417", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_assign_community_ids", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L457", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_get_entities_at_time", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L568", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_fallback_search", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L595", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_save_ontology", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L618", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_load_ontology", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L646", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_save_eval_result", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L680", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_get_eval_results", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L711", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_get_semantic_cache", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L733", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_create_chunk_with_entities", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L787", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_create_user", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L819", + "weight": 1.0, + "source": "core_neo4j_store_py", + "target": "core_neo4j_store_neo4jstore_get_user", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L1", + "weight": 1.0, + "source": "core_neo4j_store_rationale_1", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L26", + "weight": 1.0, + "source": "core_neo4j_store_rationale_26", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "context": "import", + "confidence": "INFERRED", + "source_file": "ingestion/persona_generator.py", + "source_location": "L14", + "weight": 0.8, + "source": "ingestion_persona_generator_py", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L15", + "weight": 1.0, + "source": "ingestion_pipeline_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L32", + "weight": 1.0, + "source": "retrieval_agent_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L6", + "weight": 1.0, + "source": "retrieval_communities_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/hippo_tool.py", + "source_location": "L4", + "weight": 1.0, + "source": "retrieval_hippo_tool_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "context": "import", + "confidence": "INFERRED", + "source_file": "retrieval/report_agent.py", + "source_location": "L23", + "weight": 0.8, + "source": "retrieval_report_agent_py", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L15", + "weight": 1.0, + "source": "retrieval_tools_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "context": "import", + "confidence": "INFERRED", + "source_file": "services/entity_enricher.py", + "source_location": "L17", + "weight": 0.8, + "source": "services_entity_enricher_py", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "context": "import", + "confidence": "INFERRED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L15", + "weight": 0.8, + "source": "services_graph_memory_updater_py", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "context": "import", + "confidence": "INFERRED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L19", + "weight": 0.8, + "source": "services_ontology_drift_detector_py", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L21", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L16", + "weight": 1.0, + "source": "workers_simulation_runner_py", + "target": "core_neo4j_store_py", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/persona_generator.py", + "source_location": "L14", + "weight": 0.8, + "source": "ingestion_persona_generator_personaprofile", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/pipeline.py", + "source_location": "L15", + "weight": 0.8, + "source": "ingestion_pipeline_ingestionpipeline", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L32", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/communities.py", + "source_location": "L6", + "weight": 0.8, + "source": "retrieval_communities_communitybuilder", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/hippo_tool.py", + "source_location": "L4", + "weight": 0.8, + "source": "retrieval_hippo_tool_hipporagtool", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/report_agent.py", + "source_location": "L23", + "weight": 0.8, + "source": "retrieval_report_agent_reportsection", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/report_agent.py", + "source_location": "L23", + "weight": 0.8, + "source": "retrieval_report_agent_reportresult", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/report_agent.py", + "source_location": "L23", + "weight": 0.8, + "source": "retrieval_report_agent_insightforgetool", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/report_agent.py", + "source_location": "L23", + "weight": 0.8, + "source": "retrieval_report_agent_panoramasearchtool", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/report_agent.py", + "source_location": "L23", + "weight": 0.8, + "source": "retrieval_report_agent_quicksearchtool", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L15", + "weight": 0.8, + "source": "retrieval_tools_hybridsearchtool", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L15", + "weight": 0.8, + "source": "retrieval_tools_vectorsearchtool", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L15", + "weight": 0.8, + "source": "retrieval_tools_communitysummarytool", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L15", + "weight": 0.8, + "source": "retrieval_tools_graphtraversaltool", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L15", + "weight": 0.8, + "source": "retrieval_tools_cyphergenerationtool", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L15", + "weight": 0.8, + "source": "retrieval_tools_metadatafiltertool", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L15", + "weight": 0.8, + "source": "retrieval_tools_llmjudge", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L15", + "weight": 0.8, + "source": "retrieval_tools_ragevaluator", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/tools.py", + "source_location": "L15", + "weight": 0.8, + "source": "retrieval_tools_entitysummarysearchtool", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/entity_enricher.py", + "source_location": "L17", + "weight": 0.8, + "source": "services_entity_enricher_enrichmentresult", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L15", + "weight": 0.8, + "source": "services_graph_memory_updater_graphupdateresult", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L19", + "weight": 0.8, + "source": "services_ontology_drift_detector_driftreport", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "workers/simulation_runner.py", + "source_location": "L16", + "weight": 0.8, + "source": "workers_simulation_runner_agentaction", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "workers/simulation_runner.py", + "source_location": "L16", + "weight": 0.8, + "source": "workers_simulation_runner_simulationmanager", + "target": "core_neo4j_store_py", + "confidence_score": 0.5 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L64", + "weight": 1.0, + "source": "core_neo4j_store_rationale_64", + "target": "core_neo4j_store_neo4jstore_create_vector_index", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L93", + "weight": 1.0, + "source": "core_neo4j_store_rationale_93", + "target": "core_neo4j_store_neo4jstore_create_fulltext_index", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L109", + "weight": 1.0, + "source": "core_neo4j_store_rationale_109", + "target": "core_neo4j_store_neo4jstore_create_constraints", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L331", + "weight": 1.0, + "source": "core_neo4j_store_rationale_331", + "target": "core_neo4j_store_neo4jstore_bm25_search", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L372", + "weight": 1.0, + "source": "core_neo4j_store_rationale_372", + "target": "core_neo4j_store_neo4jstore_get_communities", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L407", + "weight": 1.0, + "source": "core_neo4j_store_rationale_407", + "target": "core_neo4j_store_neo4jstore_get_community_entities", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L418", + "weight": 1.0, + "source": "core_neo4j_store_rationale_418", + "target": "core_neo4j_store_neo4jstore_assign_community_ids", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L463", + "weight": 1.0, + "source": "core_neo4j_store_rationale_463", + "target": "core_neo4j_store_neo4jstore_get_entities_at_time", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L569", + "weight": 1.0, + "source": "core_neo4j_store_rationale_569", + "target": "core_neo4j_store_neo4jstore_fallback_search", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L713", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "core_neo4j_store_neo4jstore_fallback_search", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L278", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem_astream", + "target": "core_neo4j_store_neo4jstore_fallback_search", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L720", + "weight": 1.0, + "source": "retrieval_agent_rationale_720", + "target": "core_neo4j_store_neo4jstore_fallback_search", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L596", + "weight": 1.0, + "source": "core_neo4j_store_rationale_596", + "target": "core_neo4j_store_neo4jstore_save_ontology", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L619", + "weight": 1.0, + "source": "core_neo4j_store_rationale_619", + "target": "core_neo4j_store_neo4jstore_load_ontology", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L647", + "weight": 1.0, + "source": "core_neo4j_store_rationale_647", + "target": "core_neo4j_store_neo4jstore_save_eval_result", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L681", + "weight": 1.0, + "source": "core_neo4j_store_rationale_681", + "target": "core_neo4j_store_neo4jstore_get_eval_results", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L696", + "weight": 1.0, + "source": "core_neo4j_store_rationale_696", + "target": "core_neo4j_store_neo4jstore_get_semantic_cache", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L712", + "weight": 1.0, + "source": "core_neo4j_store_rationale_712", + "target": "core_neo4j_store_neo4jstore_get_semantic_cache", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L738", + "weight": 1.0, + "source": "core_neo4j_store_rationale_738", + "target": "core_neo4j_store_neo4jstore_create_chunk_with_entities", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L788", + "weight": 1.0, + "source": "core_neo4j_store_rationale_788", + "target": "core_neo4j_store_neo4jstore_create_user", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/neo4j_store.py", + "source_location": "L820", + "weight": 1.0, + "source": "core_neo4j_store_rationale_820", + "target": "core_neo4j_store_neo4jstore_get_user", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L7", + "weight": 1.0, + "source": "core_storage_py", + "target": "core_storage_storageprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L20", + "weight": 1.0, + "source": "core_storage_py", + "target": "core_storage_localstorage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L51", + "weight": 1.0, + "source": "core_storage_py", + "target": "core_storage_get_storage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L18", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "core_storage_py", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L8", + "weight": 1.0, + "source": "core_storage_storageprovider", + "target": "core_storage_storageprovider_normalize_filename", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L11", + "weight": 1.0, + "source": "core_storage_storageprovider", + "target": "core_storage_localstorage_save_file", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L14", + "weight": 1.0, + "source": "core_storage_storageprovider", + "target": "core_storage_localstorage_read_file", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L17", + "weight": 1.0, + "source": "core_storage_storageprovider", + "target": "core_storage_localstorage_delete_file", + "confidence_score": 1.0 + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L20", + "weight": 1.0, + "source": "core_storage_localstorage", + "target": "core_storage_storageprovider", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L26", + "weight": 1.0, + "source": "core_storage_localstorage_save_file", + "target": "core_storage_storageprovider_normalize_filename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L35", + "weight": 1.0, + "source": "core_storage_localstorage_read_file", + "target": "core_storage_storageprovider_normalize_filename", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L41", + "weight": 1.0, + "source": "core_storage_localstorage_delete_file", + "target": "core_storage_storageprovider_normalize_filename", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L21", + "weight": 1.0, + "source": "core_storage_localstorage", + "target": "retrieval_tools_llmjudge_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L25", + "weight": 1.0, + "source": "core_storage_localstorage", + "target": "core_storage_localstorage_save_file", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L34", + "weight": 1.0, + "source": "core_storage_localstorage", + "target": "core_storage_localstorage_read_file", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L40", + "weight": 1.0, + "source": "core_storage_localstorage", + "target": "core_storage_localstorage_delete_file", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L56", + "weight": 1.0, + "source": "core_storage_get_storage", + "target": "core_storage_localstorage", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "core/storage.py", + "source_location": "L52", + "weight": 1.0, + "source": "core_storage_rationale_52", + "target": "core_storage_get_storage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L35", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "ingestion_document_processor_py" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L61", + "weight": 1.0, + "source": "ingestion_document_processor_py", + "target": "ingestion_document_processor_documentprocessor_process_document", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L88", + "weight": 1.0, + "source": "ingestion_document_processor_py", + "target": "ingestion_document_processor_documentprocessor_chunk_document", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L124", + "weight": 1.0, + "source": "ingestion_document_processor_py", + "target": "ingestion_document_processor_documentprocessor_extract_text", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L148", + "weight": 1.0, + "source": "ingestion_document_processor_py", + "target": "ingestion_document_processor_documentprocessor_extract_pdf", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L169", + "weight": 1.0, + "source": "ingestion_document_processor_py", + "target": "ingestion_document_processor_documentprocessor_extract_txt", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L174", + "weight": 1.0, + "source": "ingestion_document_processor_py", + "target": "ingestion_document_processor_documentprocessor_extract_docx", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L196", + "weight": 1.0, + "source": "ingestion_document_processor_py", + "target": "ingestion_document_processor_documentprocessor_extract_csv", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L224", + "weight": 1.0, + "source": "ingestion_document_processor_py", + "target": "ingestion_document_processor_documentprocessor_extract_excel", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L263", + "weight": 1.0, + "source": "ingestion_document_processor_py", + "target": "ingestion_document_processor_documentprocessor_extract_pptx", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L305", + "weight": 1.0, + "source": "ingestion_document_processor_py", + "target": "ingestion_document_processor_documentprocessor_extract_json", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L344", + "weight": 1.0, + "source": "ingestion_document_processor_py", + "target": "ingestion_document_processor_documentprocessor_generate_document_id", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L32", + "weight": 1.0, + "source": "ingestion_document_processor_rationale_32", + "target": "ingestion_document_processor_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L12", + "weight": 1.0, + "source": "ingestion_pipeline_py", + "target": "ingestion_document_processor_py", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/pipeline.py", + "source_location": "L12", + "weight": 0.8, + "source": "ingestion_pipeline_ingestionpipeline", + "target": "ingestion_document_processor_py", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L71", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_process_document", + "target": "ingestion_document_processor_documentprocessor_extract_text", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L74", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_process_document", + "target": "ingestion_document_processor_documentprocessor_generate_document_id", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L62", + "weight": 1.0, + "source": "ingestion_document_processor_rationale_62", + "target": "ingestion_document_processor_documentprocessor_process_document", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L92", + "weight": 1.0, + "source": "ingestion_document_processor_rationale_92", + "target": "ingestion_document_processor_documentprocessor_chunk_document", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L129", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_extract_text", + "target": "ingestion_document_processor_documentprocessor_extract_pdf", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L131", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_extract_text", + "target": "ingestion_document_processor_documentprocessor_extract_txt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L133", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_extract_text", + "target": "ingestion_document_processor_documentprocessor_extract_docx", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L136", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_extract_text", + "target": "ingestion_document_processor_documentprocessor_extract_csv", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L138", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_extract_text", + "target": "ingestion_document_processor_documentprocessor_extract_excel", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L140", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_extract_text", + "target": "ingestion_document_processor_documentprocessor_extract_pptx", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L142", + "weight": 1.0, + "source": "ingestion_document_processor_documentprocessor_extract_text", + "target": "ingestion_document_processor_documentprocessor_extract_json", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L125", + "weight": 1.0, + "source": "ingestion_document_processor_rationale_125", + "target": "ingestion_document_processor_documentprocessor_extract_text", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L149", + "weight": 1.0, + "source": "ingestion_document_processor_rationale_149", + "target": "ingestion_document_processor_documentprocessor_extract_pdf", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L170", + "weight": 1.0, + "source": "ingestion_document_processor_rationale_170", + "target": "ingestion_document_processor_documentprocessor_extract_txt", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L175", + "weight": 1.0, + "source": "ingestion_document_processor_rationale_175", + "target": "ingestion_document_processor_documentprocessor_extract_docx", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L197", + "weight": 1.0, + "source": "ingestion_document_processor_rationale_197", + "target": "ingestion_document_processor_documentprocessor_extract_csv", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L225", + "weight": 1.0, + "source": "ingestion_document_processor_rationale_225", + "target": "ingestion_document_processor_documentprocessor_extract_excel", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L264", + "weight": 1.0, + "source": "ingestion_document_processor_rationale_264", + "target": "ingestion_document_processor_documentprocessor_extract_pptx", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L306", + "weight": 1.0, + "source": "ingestion_document_processor_rationale_306", + "target": "ingestion_document_processor_documentprocessor_extract_json", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/document_processor.py", + "source_location": "L345", + "weight": 1.0, + "source": "ingestion_document_processor_rationale_345", + "target": "ingestion_document_processor_documentprocessor_generate_document_id", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L18", + "weight": 1.0, + "source": "ingestion_extractor_py", + "target": "ingestion_extractor_knowledgeextractor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L14", + "weight": 1.0, + "source": "ingestion_pipeline_py", + "target": "ingestion_extractor_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L18", + "weight": 1.0, + "source": "services_graph_memory_updater_py", + "target": "ingestion_extractor_py", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L37", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "ingestion_extractor_knowledgeextractor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L87", + "weight": 1.0, + "source": "ingestion_extractor_knowledgeextractor", + "target": "ingestion_extractor_knowledgeextractor_extract_from_chunk", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L190", + "weight": 1.0, + "source": "ingestion_extractor_knowledgeextractor", + "target": "ingestion_extractor_knowledgeextractor_create_extraction_prompt", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L228", + "weight": 1.0, + "source": "ingestion_extractor_knowledgeextractor", + "target": "ingestion_extractor_knowledgeextractor_parse_extraction", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L285", + "weight": 1.0, + "source": "ingestion_extractor_knowledgeextractor", + "target": "ingestion_extractor_knowledgeextractor_generate_embeddings", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L19", + "weight": 1.0, + "source": "ingestion_extractor_rationale_19", + "target": "ingestion_extractor_knowledgeextractor", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/pipeline.py", + "source_location": "L14", + "weight": 0.8, + "source": "ingestion_pipeline_ingestionpipeline", + "target": "ingestion_extractor_knowledgeextractor", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L18", + "weight": 0.8, + "source": "services_graph_memory_updater_graphupdateresult", + "target": "ingestion_extractor_knowledgeextractor", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L18", + "weight": 0.8, + "source": "services_graph_memory_updater_py", + "target": "ingestion_extractor_knowledgeextractor", + "confidence_score": 0.5 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "services/graph_memory_updater.py", + "source_location": "L194", + "weight": 1.0, + "source": "services_graph_memory_updater_graphmemoryupdater_get_extractor", + "target": "ingestion_extractor_knowledgeextractor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L57", + "weight": 1.0, + "source": "ingestion_extractor_knowledgeextractor_extract_from_chunk", + "target": "ingestion_extractor_knowledgeextractor_create_extraction_prompt", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L72", + "weight": 1.0, + "source": "ingestion_extractor_knowledgeextractor_extract_from_chunk", + "target": "ingestion_extractor_knowledgeextractor_parse_extraction", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L38", + "weight": 1.0, + "source": "ingestion_extractor_rationale_38", + "target": "ingestion_extractor_knowledgeextractor_extract_from_chunk", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L94", + "weight": 1.0, + "source": "ingestion_extractor_rationale_94", + "target": "ingestion_extractor_knowledgeextractor_extract_from_chunk", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L195", + "weight": 1.0, + "source": "ingestion_extractor_rationale_195", + "target": "ingestion_extractor_knowledgeextractor_create_extraction_prompt", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L233", + "weight": 1.0, + "source": "ingestion_extractor_rationale_233", + "target": "ingestion_extractor_knowledgeextractor_parse_extraction", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/extractor.py", + "source_location": "L289", + "weight": 1.0, + "source": "ingestion_extractor_rationale_289", + "target": "ingestion_extractor_knowledgeextractor_generate_embeddings", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L55", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "ingestion_ontology_generator_py" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L25", + "weight": 1.0, + "source": "ingestion_ontology_generator_py", + "target": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L195", + "weight": 1.0, + "source": "ingestion_ontology_generator_py", + "target": "ingestion_ontology_generator_ontologygenerator_get_extraction_prompt", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L1", + "weight": 1.0, + "source": "ingestion_ontology_generator_rationale_1", + "target": "ingestion_ontology_generator_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L16", + "weight": 1.0, + "source": "ingestion_ontology_generator_rationale_16", + "target": "ingestion_ontology_generator_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L13", + "weight": 1.0, + "source": "ingestion_pipeline_py", + "target": "ingestion_ontology_generator_py", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "context": "import", + "confidence": "INFERRED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L22", + "weight": 0.8, + "source": "services_ontology_drift_detector_py", + "target": "ingestion_ontology_generator_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "ingestion/pipeline.py", + "source_location": "L13", + "weight": 0.8, + "source": "ingestion_pipeline_ingestionpipeline", + "target": "ingestion_ontology_generator_py", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L22", + "weight": 0.8, + "source": "services_ontology_drift_detector_driftreport", + "target": "ingestion_ontology_generator_py", + "confidence_score": 0.5 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L30", + "weight": 1.0, + "source": "ingestion_ontology_generator_rationale_30", + "target": "ingestion_ontology_generator_ontologygenerator_generate_initial_ontology", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/ontology_generator.py", + "source_location": "L200", + "weight": 1.0, + "source": "ingestion_ontology_generator_rationale_200", + "target": "ingestion_ontology_generator_ontologygenerator_get_extraction_prompt", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ingestion/persona_generator.py", + "source_location": "L18", + "weight": 1.0, + "source": "ingestion_persona_generator_py", + "target": "ingestion_persona_generator_personaprofile", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/persona_generator.py", + "source_location": "L31", + "weight": 1.0, + "source": "ingestion_persona_generator_py", + "target": "retrieval_tools_llmjudge_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/persona_generator.py", + "source_location": "L35", + "weight": 1.0, + "source": "ingestion_persona_generator_py", + "target": "ingestion_persona_generator_personagenerator_generate_personas_for_type", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/persona_generator.py", + "source_location": "L26", + "weight": 1.0, + "source": "ingestion_persona_generator_rationale_26", + "target": "ingestion_persona_generator_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L23", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "ingestion_persona_generator_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/persona_generator.py", + "source_location": "L36", + "weight": 1.0, + "source": "ingestion_persona_generator_rationale_36", + "target": "ingestion_persona_generator_personagenerator_generate_personas_for_type", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L20", + "weight": 1.0, + "source": "ingestion_pipeline_py", + "target": "ingestion_pipeline_ingestionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L17", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "ingestion_pipeline_py", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L30", + "weight": 1.0, + "source": "ingestion_pipeline_ingestionpipeline", + "target": "retrieval_tools_llmjudge_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L41", + "weight": 1.0, + "source": "ingestion_pipeline_ingestionpipeline", + "target": "ingestion_pipeline_ingestionpipeline_initialize", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L46", + "weight": 1.0, + "source": "ingestion_pipeline_ingestionpipeline", + "target": "ingestion_pipeline_ingestionpipeline_close", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L120", + "weight": 1.0, + "source": "ingestion_pipeline_ingestionpipeline", + "target": "ingestion_pipeline_ingestionpipeline_ingest_document", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L147", + "weight": 1.0, + "source": "ingestion_pipeline_ingestionpipeline", + "target": "ingestion_pipeline_ingestionpipeline_store_extraction", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L21", + "weight": 1.0, + "source": "ingestion_pipeline_rationale_21", + "target": "ingestion_pipeline_ingestionpipeline", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L115", + "weight": 1.0, + "source": "ingestion_pipeline_ingestionpipeline_ingest_document", + "target": "ingestion_pipeline_ingestionpipeline_store_extraction", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L58", + "weight": 1.0, + "source": "ingestion_pipeline_rationale_58", + "target": "ingestion_pipeline_ingestionpipeline_ingest_document", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L125", + "weight": 1.0, + "source": "ingestion_pipeline_rationale_125", + "target": "ingestion_pipeline_ingestionpipeline_ingest_document", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/pipeline.py", + "source_location": "L152", + "weight": 1.0, + "source": "ingestion_pipeline_rationale_152", + "target": "ingestion_pipeline_ingestionpipeline_store_extraction", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/web_crawler.py", + "source_location": "L13", + "weight": 1.0, + "source": "ingestion_web_crawler_py", + "target": "retrieval_tools_llmjudge_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/web_crawler.py", + "source_location": "L21", + "weight": 1.0, + "source": "ingestion_web_crawler_py", + "target": "ingestion_web_crawler_webcrawler_is_same_domain", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/web_crawler.py", + "source_location": "L26", + "weight": 1.0, + "source": "ingestion_web_crawler_py", + "target": "ingestion_web_crawler_webcrawler_crawl_recursive", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ingestion/web_crawler.py", + "source_location": "L70", + "weight": 1.0, + "source": "ingestion_web_crawler_py", + "target": "ingestion_web_crawler_webcrawler_crawl", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ingestion/web_crawler.py", + "source_location": "L9", + "weight": 1.0, + "source": "ingestion_web_crawler_rationale_9", + "target": "ingestion_web_crawler_py", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/web_crawler.py", + "source_location": "L33", + "weight": 1.0, + "source": "ingestion_web_crawler_webcrawler_crawl_recursive", + "target": "ingestion_web_crawler_webcrawler_is_same_domain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ingestion/web_crawler.py", + "source_location": "L83", + "weight": 1.0, + "source": "ingestion_web_crawler_webcrawler_crawl", + "target": "ingestion_web_crawler_webcrawler_crawl_recursive", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "observability/tracing.py", + "source_location": "L27", + "weight": 1.0, + "source": "observability_tracing_py", + "target": "observability_tracing_setup_observability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "observability/tracing.py", + "source_location": "L70", + "weight": 1.0, + "source": "observability_tracing_py", + "target": "observability_tracing_get_tracer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "observability/tracing.py", + "source_location": "L75", + "weight": 1.0, + "source": "observability_tracing_py", + "target": "observability_tracing_get_meter", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "observability/tracing.py", + "source_location": "L1", + "weight": 1.0, + "source": "observability_tracing_rationale_1", + "target": "observability_tracing_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "observability/tracing.py", + "source_location": "L28", + "weight": 1.0, + "source": "observability_tracing_rationale_28", + "target": "observability_tracing_setup_observability", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "observability/tracing.py", + "source_location": "L71", + "weight": 1.0, + "source": "observability_tracing_rationale_71", + "target": "observability_tracing_get_tracer", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "observability/tracing.py", + "source_location": "L76", + "weight": 1.0, + "source": "observability_tracing_rationale_76", + "target": "observability_tracing_get_meter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L21", + "weight": 1.0, + "source": "retrieval_agent_py", + "target": "retrieval_tools_py", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L31", + "weight": 1.0, + "source": "retrieval_agent_py", + "target": "retrieval_hippo_tool_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L38", + "weight": 1.0, + "source": "retrieval_agent_py", + "target": "retrieval_agent_agentretrievalsystem", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L50", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_tools_llmjudge_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L78", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_cache_get", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L99", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_cache_set", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L112", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_build_graph", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L262", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_astream", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L283", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_make_initial_state", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L308", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_decompose_query", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L340", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_route_query", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L414", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_should_continue", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L21", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_tools_hybridsearchtool", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L21", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_tools_graphtraversaltool", + "confidence_score": 0.5 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L462", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_cypher_query", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L21", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_tools_metadatafiltertool", + "confidence_score": 0.5 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L511", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_community_search", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L21", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_tools_entitysummarysearchtool", + "confidence_score": 0.5 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L539", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_hippo_search", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L552", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_drift_expand", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L596", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_got_explore", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L638", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_score_tool_results", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L663", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_synthesize_response", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L702", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_agent_agentretrievalsystem_format_context", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L39", + "weight": 1.0, + "source": "retrieval_agent_rationale_39", + "target": "retrieval_agent_agentretrievalsystem", + "confidence_score": 1.0 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L21", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_tools_vectorsearchtool", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L21", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_tools_cyphergenerationtool", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L21", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_tools_communitysummarytool", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L21", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_tools_llmjudge", + "confidence_score": 0.5 + }, + { + "relation": "uses", + "confidence": "INFERRED", + "source_file": "retrieval/agent.py", + "source_location": "L31", + "weight": 0.8, + "source": "retrieval_agent_agentretrievalsystem", + "target": "retrieval_hippo_tool_hipporagtool", + "confidence_score": 0.5 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L79", + "weight": 1.0, + "source": "retrieval_agent_rationale_79", + "target": "retrieval_agent_agentretrievalsystem_cache_get", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L100", + "weight": 1.0, + "source": "retrieval_agent_rationale_100", + "target": "retrieval_agent_agentretrievalsystem_cache_set", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L74", + "weight": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "retrieval_agent_agentretrievalsystem_build_graph", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L113", + "weight": 1.0, + "source": "retrieval_agent_rationale_113", + "target": "retrieval_agent_agentretrievalsystem_build_graph", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L271", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem_astream", + "target": "retrieval_agent_agentretrievalsystem_make_initial_state", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L270", + "weight": 1.0, + "source": "retrieval_agent_rationale_270", + "target": "retrieval_agent_agentretrievalsystem_astream", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L512", + "weight": 1.0, + "source": "retrieval_agent_rationale_512", + "target": "retrieval_agent_agentretrievalsystem_community_search", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L540", + "weight": 1.0, + "source": "retrieval_agent_rationale_540", + "target": "retrieval_agent_agentretrievalsystem_hippo_search", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L553", + "weight": 1.0, + "source": "retrieval_agent_rationale_553", + "target": "retrieval_agent_agentretrievalsystem_drift_expand", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L620", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem_got_explore", + "target": "retrieval_agent_agentretrievalsystem_score_tool_results", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L597", + "weight": 1.0, + "source": "retrieval_agent_rationale_597", + "target": "retrieval_agent_agentretrievalsystem_got_explore", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L643", + "weight": 1.0, + "source": "retrieval_agent_rationale_643", + "target": "retrieval_agent_agentretrievalsystem_score_tool_results", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L673", + "weight": 1.0, + "source": "retrieval_agent_agentretrievalsystem_synthesize_response", + "target": "retrieval_agent_agentretrievalsystem_format_context", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L432", + "weight": 1.0, + "source": "retrieval_agent_rationale_432", + "target": "retrieval_tools_hybridsearchtool", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L525", + "weight": 1.0, + "source": "retrieval_agent_rationale_525", + "target": "retrieval_tools_entitysummarysearchtool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L20", + "weight": 1.0, + "source": "retrieval_communities_py", + "target": "retrieval_communities_communitybuilder", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L26", + "weight": 1.0, + "source": "retrieval_communities_communitybuilder", + "target": "retrieval_tools_llmjudge_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L30", + "weight": 1.0, + "source": "retrieval_communities_communitybuilder", + "target": "retrieval_communities_communitybuilder_run_leiden", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L109", + "weight": 1.0, + "source": "retrieval_communities_communitybuilder", + "target": "retrieval_communities_communitybuilder_create_community_nodes", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L133", + "weight": 1.0, + "source": "retrieval_communities_communitybuilder", + "target": "retrieval_communities_communitybuilder_collect_evidence", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L243", + "weight": 1.0, + "source": "retrieval_communities_communitybuilder", + "target": "retrieval_communities_communitybuilder_embed_report", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L21", + "weight": 1.0, + "source": "retrieval_communities_rationale_21", + "target": "retrieval_communities_communitybuilder", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L31", + "weight": 1.0, + "source": "retrieval_communities_rationale_31", + "target": "retrieval_communities_communitybuilder_run_leiden", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L110", + "weight": 1.0, + "source": "retrieval_communities_rationale_110", + "target": "retrieval_communities_communitybuilder_create_community_nodes", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L134", + "weight": 1.0, + "source": "retrieval_communities_rationale_134", + "target": "retrieval_communities_communitybuilder_collect_evidence", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/communities.py", + "source_location": "L244", + "weight": 1.0, + "source": "retrieval_communities_rationale_244", + "target": "retrieval_communities_communitybuilder_embed_report", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/hippo_tool.py", + "source_location": "L9", + "weight": 1.0, + "source": "retrieval_hippo_tool_py", + "target": "retrieval_hippo_tool_hipporagtool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L68", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "retrieval_hippo_tool_hipporagtool" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/hippo_tool.py", + "source_location": "L19", + "weight": 1.0, + "source": "retrieval_hippo_tool_hipporagtool", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/hippo_tool.py", + "source_location": "L10", + "weight": 1.0, + "source": "retrieval_hippo_tool_rationale_10", + "target": "retrieval_hippo_tool_hipporagtool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L30", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "retrieval_report_agent_reportsection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L35", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "retrieval_report_agent_reportresult", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L48", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "retrieval_report_agent_insightforgetool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L146", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "retrieval_report_agent_panoramasearchtool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L196", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "retrieval_report_agent_quicksearchtool", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L293", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "retrieval_tools_llmjudge_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L369", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "retrieval_report_agent_reportagent_decompose_topic", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L409", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "retrieval_report_agent_reportagent_react_loop", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L458", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "retrieval_report_agent_reportagent_think", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L489", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "retrieval_report_agent_reportagent_act", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L504", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "retrieval_report_agent_reportagent_write_section_with_confidence", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L536", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "retrieval_report_agent_reportagent_write_executive_summary", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L554", + "weight": 1.0, + "source": "retrieval_report_agent_py", + "target": "retrieval_report_agent_reportagent_compile_markdown", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L1", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_1", + "target": "retrieval_report_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L272", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_272", + "target": "retrieval_report_agent_py", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L296", + "weight": 1.0, + "context": "call", + "source": "retrieval_tools_llmjudge_init", + "target": "retrieval_report_agent_insightforgetool", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L64", + "weight": 1.0, + "source": "retrieval_report_agent_insightforgetool", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L49", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_49", + "target": "retrieval_report_agent_insightforgetool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L297", + "weight": 1.0, + "context": "call", + "source": "retrieval_tools_llmjudge_init", + "target": "retrieval_report_agent_panoramasearchtool", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L160", + "weight": 1.0, + "source": "retrieval_report_agent_panoramasearchtool", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L147", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_147", + "target": "retrieval_report_agent_panoramasearchtool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L298", + "weight": 1.0, + "context": "call", + "source": "retrieval_tools_llmjudge_init", + "target": "retrieval_report_agent_quicksearchtool", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L211", + "weight": 1.0, + "source": "retrieval_report_agent_quicksearchtool", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L197", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_197", + "target": "retrieval_report_agent_quicksearchtool", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L375", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_375", + "target": "retrieval_report_agent_reportagent_decompose_topic", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L422", + "weight": 1.0, + "source": "retrieval_report_agent_reportagent_react_loop", + "target": "retrieval_report_agent_reportagent_think", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L432", + "weight": 1.0, + "source": "retrieval_report_agent_reportagent_react_loop", + "target": "retrieval_report_agent_reportagent_act", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L451", + "weight": 1.0, + "source": "retrieval_report_agent_reportagent_react_loop", + "target": "retrieval_report_agent_reportagent_write_section_with_confidence", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L412", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_412", + "target": "retrieval_report_agent_reportagent_react_loop", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L461", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_461", + "target": "retrieval_report_agent_reportagent_think", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L495", + "weight": 1.0, + "source": "retrieval_report_agent_reportagent_act", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L492", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_492", + "target": "retrieval_report_agent_reportagent_act", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L507", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_507", + "target": "retrieval_report_agent_reportagent_write_section_with_confidence", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L539", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_539", + "target": "retrieval_report_agent_reportagent_write_executive_summary", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L163", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_163", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/report_agent.py", + "source_location": "L212", + "weight": 1.0, + "source": "retrieval_report_agent_rationale_212", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L23", + "weight": 1.0, + "source": "retrieval_tools_py", + "target": "retrieval_tools_hybridsearchtool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L134", + "weight": 1.0, + "source": "retrieval_tools_py", + "target": "retrieval_tools_vectorsearchtool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L163", + "weight": 1.0, + "source": "retrieval_tools_py", + "target": "retrieval_tools_communitysummarytool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L321", + "weight": 1.0, + "source": "retrieval_tools_py", + "target": "retrieval_tools_graphtraversaltool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L383", + "weight": 1.0, + "source": "retrieval_tools_py", + "target": "retrieval_tools_cyphergenerationtool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L518", + "weight": 1.0, + "source": "retrieval_tools_py", + "target": "retrieval_tools_metadatafiltertool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L567", + "weight": 1.0, + "source": "retrieval_tools_py", + "target": "retrieval_tools_llmjudge", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L678", + "weight": 1.0, + "source": "retrieval_tools_py", + "target": "retrieval_tools_ragevaluator", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L780", + "weight": 1.0, + "source": "retrieval_tools_py", + "target": "retrieval_tools_entitysummarysearchtool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L61", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "retrieval_tools_hybridsearchtool" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L38", + "weight": 1.0, + "source": "retrieval_tools_hybridsearchtool", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L105", + "weight": 1.0, + "source": "retrieval_tools_hybridsearchtool", + "target": "retrieval_tools_hybridsearchtool_rrf_fuse", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L24", + "weight": 1.0, + "source": "retrieval_tools_rationale_24", + "target": "retrieval_tools_hybridsearchtool", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L143", + "weight": 1.0, + "source": "retrieval_tools_vectorsearchtool", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L191", + "weight": 1.0, + "source": "retrieval_tools_communitysummarytool", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L330", + "weight": 1.0, + "source": "retrieval_tools_graphtraversaltool", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L401", + "weight": 1.0, + "source": "retrieval_tools_cyphergenerationtool", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L526", + "weight": 1.0, + "source": "retrieval_tools_metadatafiltertool", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L799", + "weight": 1.0, + "source": "retrieval_tools_entitysummarysearchtool", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L82", + "weight": 1.0, + "source": "retrieval_tools_hybridsearchtool_run", + "target": "retrieval_tools_hybridsearchtool_rrf_fuse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L213", + "weight": 1.0, + "source": "retrieval_tools_hybridsearchtool_run", + "target": "retrieval_tools_communitysummarytool_find_relevant_entities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L225", + "weight": 1.0, + "source": "retrieval_tools_hybridsearchtool_run", + "target": "retrieval_tools_communitysummarytool_get_community_summary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L341", + "weight": 1.0, + "source": "retrieval_tools_hybridsearchtool_run", + "target": "retrieval_tools_graphtraversaltool_extract_entities_from_query", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L406", + "weight": 1.0, + "source": "retrieval_tools_hybridsearchtool_run", + "target": "retrieval_tools_cyphergenerationtool_generate_cypher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L410", + "weight": 1.0, + "source": "retrieval_tools_hybridsearchtool_run", + "target": "retrieval_tools_cyphergenerationtool_validate_cypher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L411", + "weight": 1.0, + "source": "retrieval_tools_hybridsearchtool_run", + "target": "retrieval_tools_cyphergenerationtool_correct_cypher", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L422", + "weight": 1.0, + "source": "retrieval_tools_hybridsearchtool_run", + "target": "retrieval_tools_cyphergenerationtool_correct_cypher_with_error", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L46", + "weight": 1.0, + "source": "retrieval_tools_rationale_46", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L197", + "weight": 1.0, + "source": "retrieval_tools_rationale_197", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L805", + "weight": 1.0, + "source": "retrieval_tools_rationale_805", + "target": "retrieval_tools_hybridsearchtool_run", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L113", + "weight": 1.0, + "source": "retrieval_tools_rationale_113", + "target": "retrieval_tools_hybridsearchtool_rrf_fuse", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L62", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "retrieval_tools_vectorsearchtool" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L135", + "weight": 1.0, + "source": "retrieval_tools_rationale_135", + "target": "retrieval_tools_vectorsearchtool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L66", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "retrieval_tools_communitysummarytool" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L181", + "weight": 1.0, + "source": "retrieval_tools_communitysummarytool", + "target": "retrieval_tools_communitysummarytool_get_redis", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L238", + "weight": 1.0, + "source": "retrieval_tools_communitysummarytool", + "target": "retrieval_tools_communitysummarytool_find_relevant_entities", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L259", + "weight": 1.0, + "source": "retrieval_tools_communitysummarytool", + "target": "retrieval_tools_communitysummarytool_get_community_summary", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L164", + "weight": 1.0, + "source": "retrieval_tools_rationale_164", + "target": "retrieval_tools_communitysummarytool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L271", + "weight": 1.0, + "source": "retrieval_tools_communitysummarytool_get_community_summary", + "target": "retrieval_tools_communitysummarytool_get_redis", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L182", + "weight": 1.0, + "source": "retrieval_tools_rationale_182", + "target": "retrieval_tools_communitysummarytool_get_redis", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L239", + "weight": 1.0, + "source": "retrieval_tools_rationale_239", + "target": "retrieval_tools_communitysummarytool_find_relevant_entities", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L265", + "weight": 1.0, + "source": "retrieval_tools_rationale_265", + "target": "retrieval_tools_communitysummarytool_get_community_summary", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L63", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "retrieval_tools_graphtraversaltool" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L359", + "weight": 1.0, + "source": "retrieval_tools_graphtraversaltool", + "target": "retrieval_tools_graphtraversaltool_extract_entities_from_query", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L322", + "weight": 1.0, + "source": "retrieval_tools_rationale_322", + "target": "retrieval_tools_graphtraversaltool", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L360", + "weight": 1.0, + "source": "retrieval_tools_rationale_360", + "target": "retrieval_tools_graphtraversaltool_extract_entities_from_query", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L64", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "retrieval_tools_cyphergenerationtool" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L431", + "weight": 1.0, + "source": "retrieval_tools_cyphergenerationtool", + "target": "retrieval_tools_cyphergenerationtool_generate_cypher", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L467", + "weight": 1.0, + "source": "retrieval_tools_cyphergenerationtool", + "target": "retrieval_tools_cyphergenerationtool_validate_cypher", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L479", + "weight": 1.0, + "source": "retrieval_tools_cyphergenerationtool", + "target": "retrieval_tools_cyphergenerationtool_correct_cypher", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L496", + "weight": 1.0, + "source": "retrieval_tools_cyphergenerationtool", + "target": "retrieval_tools_cyphergenerationtool_correct_cypher_with_error", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L384", + "weight": 1.0, + "source": "retrieval_tools_rationale_384", + "target": "retrieval_tools_cyphergenerationtool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L65", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "retrieval_tools_metadatafiltertool" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L519", + "weight": 1.0, + "source": "retrieval_tools_rationale_519", + "target": "retrieval_tools_metadatafiltertool", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L69", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "retrieval_tools_llmjudge" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L576", + "weight": 1.0, + "source": "retrieval_tools_llmjudge", + "target": "retrieval_tools_llmjudge_score", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L568", + "weight": 1.0, + "source": "retrieval_tools_rationale_568", + "target": "retrieval_tools_llmjudge", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L684", + "weight": 1.0, + "source": "retrieval_tools_ragevaluator", + "target": "retrieval_tools_llmjudge_init", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "retrieval/agent.py", + "source_location": "L67", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "retrieval_tools_llmjudge_init", + "target": "retrieval_tools_entitysummarysearchtool" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L40", + "weight": 1.0, + "source": "services_entity_enricher_py", + "target": "retrieval_tools_llmjudge_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L41", + "weight": 1.0, + "source": "services_graph_memory_updater_py", + "target": "retrieval_tools_llmjudge_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L48", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "retrieval_tools_llmjudge_init", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L30", + "weight": 1.0, + "source": "workers_simulation_runner_simulationmanager", + "target": "retrieval_tools_llmjudge_init", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L582", + "weight": 1.0, + "source": "retrieval_tools_rationale_582", + "target": "retrieval_tools_llmjudge_score", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L687", + "weight": 1.0, + "source": "retrieval_tools_ragevaluator", + "target": "retrieval_tools_ragevaluator_evaluate", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L720", + "weight": 1.0, + "source": "retrieval_tools_ragevaluator", + "target": "retrieval_tools_ragevaluator_faithfulness", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L740", + "weight": 1.0, + "source": "retrieval_tools_ragevaluator", + "target": "retrieval_tools_ragevaluator_answer_relevancy", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L756", + "weight": 1.0, + "source": "retrieval_tools_ragevaluator", + "target": "retrieval_tools_ragevaluator_context_precision", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L679", + "weight": 1.0, + "source": "retrieval_tools_rationale_679", + "target": "retrieval_tools_ragevaluator", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L699", + "weight": 1.0, + "source": "retrieval_tools_ragevaluator_evaluate", + "target": "retrieval_tools_ragevaluator_faithfulness", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L700", + "weight": 1.0, + "source": "retrieval_tools_ragevaluator_evaluate", + "target": "retrieval_tools_ragevaluator_answer_relevancy", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L701", + "weight": 1.0, + "source": "retrieval_tools_ragevaluator_evaluate", + "target": "retrieval_tools_ragevaluator_context_precision", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L694", + "weight": 1.0, + "source": "retrieval_tools_rationale_694", + "target": "retrieval_tools_ragevaluator_evaluate", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L721", + "weight": 1.0, + "source": "retrieval_tools_rationale_721", + "target": "retrieval_tools_ragevaluator_faithfulness", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L741", + "weight": 1.0, + "source": "retrieval_tools_rationale_741", + "target": "retrieval_tools_ragevaluator_answer_relevancy", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L757", + "weight": 1.0, + "source": "retrieval_tools_rationale_757", + "target": "retrieval_tools_ragevaluator_context_precision", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "retrieval/tools.py", + "source_location": "L781", + "weight": 1.0, + "source": "retrieval_tools_rationale_781", + "target": "retrieval_tools_entitysummarysearchtool", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L22", + "weight": 1.0, + "source": "services_entity_enricher_py", + "target": "services_entity_enricher_enrichmentresult", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L52", + "weight": 1.0, + "source": "services_entity_enricher_py", + "target": "services_entity_enricher_entityenricher_enrich_all_entities", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L120", + "weight": 1.0, + "source": "services_entity_enricher_py", + "target": "services_entity_enricher_entityenricher_enrich_entity", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L152", + "weight": 1.0, + "source": "services_entity_enricher_py", + "target": "services_entity_enricher_entityenricher_enrich_single", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L1", + "weight": 1.0, + "source": "services_entity_enricher_rationale_1", + "target": "services_entity_enricher_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L32", + "weight": 1.0, + "source": "services_entity_enricher_rationale_32", + "target": "services_entity_enricher_py", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L89", + "weight": 1.0, + "source": "services_entity_enricher_entityenricher_enrich_all_entities", + "target": "services_entity_enricher_enrichmentresult", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L23", + "weight": 1.0, + "source": "services_entity_enricher_rationale_23", + "target": "services_entity_enricher_enrichmentresult", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L99", + "weight": 1.0, + "source": "services_entity_enricher_entityenricher_enrich_all_entities", + "target": "services_entity_enricher_entityenricher_enrich_single", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L57", + "weight": 1.0, + "source": "services_entity_enricher_rationale_57", + "target": "services_entity_enricher_entityenricher_enrich_all_entities", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L130", + "weight": 1.0, + "source": "services_entity_enricher_entityenricher_enrich_entity", + "target": "services_entity_enricher_entityenricher_enrich_single", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L121", + "weight": 1.0, + "source": "services_entity_enricher_rationale_121", + "target": "services_entity_enricher_entityenricher_enrich_entity", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/entity_enricher.py", + "source_location": "L155", + "weight": 1.0, + "source": "services_entity_enricher_rationale_155", + "target": "services_entity_enricher_entityenricher_enrich_single", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L22", + "weight": 1.0, + "source": "services_graph_memory_updater_py", + "target": "services_graph_memory_updater_graphupdateresult", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L173", + "weight": 1.0, + "source": "services_graph_memory_updater_py", + "target": "services_graph_memory_updater_graphmemoryupdater_is_fact_assertion", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L192", + "weight": 1.0, + "source": "services_graph_memory_updater_py", + "target": "services_graph_memory_updater_graphmemoryupdater_get_extractor", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L1", + "weight": 1.0, + "source": "services_graph_memory_updater_rationale_1", + "target": "services_graph_memory_updater_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L33", + "weight": 1.0, + "source": "services_graph_memory_updater_rationale_33", + "target": "services_graph_memory_updater_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L23", + "weight": 1.0, + "source": "services_graph_memory_updater_rationale_23", + "target": "services_graph_memory_updater_graphupdateresult", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/graph_memory_updater.py", + "source_location": "L174", + "weight": 1.0, + "source": "services_graph_memory_updater_rationale_174", + "target": "services_graph_memory_updater_graphmemoryupdater_is_fact_assertion", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L26", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "services_ontology_drift_detector_driftreport", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L59", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L86", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L179", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "services_ontology_drift_detector_ontologydriftdetector_get_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L185", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L210", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L262", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "services_ontology_drift_detector_ontologydriftdetector_save_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L290", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "services_ontology_drift_detector_ontologydriftdetector_load_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L312", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "services_ontology_drift_detector_row_to_report", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L342", + "weight": 1.0, + "source": "services_ontology_drift_detector_py", + "target": "services_ontology_drift_detector_bump_version", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L1", + "weight": 1.0, + "source": "services_ontology_drift_detector_rationale_1", + "target": "services_ontology_drift_detector_py", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L42", + "weight": 1.0, + "source": "services_ontology_drift_detector_rationale_42", + "target": "services_ontology_drift_detector_py", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L252", + "weight": 1.0, + "source": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", + "target": "services_ontology_drift_detector_driftreport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L327", + "weight": 1.0, + "source": "services_ontology_drift_detector_row_to_report", + "target": "services_ontology_drift_detector_driftreport", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L27", + "weight": 1.0, + "source": "services_ontology_drift_detector_rationale_27", + "target": "services_ontology_drift_detector_driftreport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L75", + "weight": 1.0, + "source": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", + "target": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L80", + "weight": 1.0, + "source": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", + "target": "services_ontology_drift_detector_ontologydriftdetector_compute_diff", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L83", + "weight": 1.0, + "source": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", + "target": "services_ontology_drift_detector_ontologydriftdetector_save_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L62", + "weight": 1.0, + "source": "services_ontology_drift_detector_rationale_62", + "target": "services_ontology_drift_detector_ontologydriftdetector_detect_drift", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L95", + "weight": 1.0, + "source": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", + "target": "services_ontology_drift_detector_ontologydriftdetector_load_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L111", + "weight": 1.0, + "source": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", + "target": "services_ontology_drift_detector_bump_version", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L91", + "weight": 1.0, + "source": "services_ontology_drift_detector_rationale_91", + "target": "services_ontology_drift_detector_ontologydriftdetector_apply_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L181", + "weight": 1.0, + "source": "services_ontology_drift_detector_ontologydriftdetector_get_drift_report", + "target": "services_ontology_drift_detector_ontologydriftdetector_load_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L180", + "weight": 1.0, + "source": "services_ontology_drift_detector_rationale_180", + "target": "services_ontology_drift_detector_ontologydriftdetector_get_drift_report", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L186", + "weight": 1.0, + "source": "services_ontology_drift_detector_rationale_186", + "target": "services_ontology_drift_detector_ontologydriftdetector_get_random_chunks", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "services/ontology_drift_detector.py", + "source_location": "L309", + "weight": 1.0, + "source": "services_ontology_drift_detector_ontologydriftdetector_load_drift_report", + "target": "services_ontology_drift_detector_row_to_report", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L24", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "workers_simulation_runner_py", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L64", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "workers_celery_worker_init_worker_loop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L69", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "workers_celery_worker_run_async", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L80", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "workers_celery_worker_ingest_document_task", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L152", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "workers_celery_worker_ingest_documents_batch_task", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L205", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "workers_celery_worker_cleanup_orphan_nodes_task", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L250", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "workers_celery_worker_generate_personas_task", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L263", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "workers_celery_worker_run_simulation_tick_task", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L277", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "workers_celery_worker_enrich_entities_task", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L310", + "weight": 1.0, + "source": "workers_celery_worker_py", + "target": "workers_celery_worker_check_ontology_drift_task", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L1", + "weight": 1.0, + "source": "workers_celery_worker_rationale_1", + "target": "workers_celery_worker_py", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L141", + "weight": 1.0, + "source": "workers_celery_worker_ingest_document_task", + "target": "workers_celery_worker_run_async", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L197", + "weight": 1.0, + "source": "workers_celery_worker_ingest_documents_batch_task", + "target": "workers_celery_worker_run_async", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L240", + "weight": 1.0, + "source": "workers_celery_worker_cleanup_orphan_nodes_task", + "target": "workers_celery_worker_run_async", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L260", + "weight": 1.0, + "source": "workers_celery_worker_generate_personas_task", + "target": "workers_celery_worker_run_async", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L273", + "weight": 1.0, + "source": "workers_celery_worker_run_simulation_tick_task", + "target": "workers_celery_worker_run_async", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L304", + "weight": 1.0, + "source": "workers_celery_worker_enrich_entities_task", + "target": "workers_celery_worker_run_async", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L336", + "weight": 1.0, + "source": "workers_celery_worker_check_ontology_drift_task", + "target": "workers_celery_worker_run_async", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L70", + "weight": 1.0, + "source": "workers_celery_worker_rationale_70", + "target": "workers_celery_worker_run_async", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L81", + "weight": 1.0, + "source": "workers_celery_worker_rationale_81", + "target": "workers_celery_worker_ingest_document_task", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L153", + "weight": 1.0, + "source": "workers_celery_worker_rationale_153", + "target": "workers_celery_worker_ingest_documents_batch_task", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L206", + "weight": 1.0, + "source": "workers_celery_worker_rationale_206", + "target": "workers_celery_worker_cleanup_orphan_nodes_task", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L251", + "weight": 1.0, + "source": "workers_celery_worker_rationale_251", + "target": "workers_celery_worker_generate_personas_task", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L264", + "weight": 1.0, + "source": "workers_celery_worker_rationale_264", + "target": "workers_celery_worker_run_simulation_tick_task", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L44", + "weight": 1.0, + "source": "workers_simulation_runner_simulationmanager", + "target": "workers_celery_worker_run_simulation_tick_task", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L52", + "weight": 1.0, + "source": "workers_celery_worker_run_simulation_tick_task", + "target": "workers_simulation_runner_simulationmanager_get_active_agents", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L57", + "weight": 1.0, + "source": "workers_celery_worker_run_simulation_tick_task", + "target": "workers_simulation_runner_simulationmanager_process_agent_turn", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L45", + "weight": 1.0, + "source": "workers_simulation_runner_rationale_45", + "target": "workers_celery_worker_run_simulation_tick_task", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L278", + "weight": 1.0, + "source": "workers_celery_worker_rationale_278", + "target": "workers_celery_worker_enrich_entities_task", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/celery_worker.py", + "source_location": "L311", + "weight": 1.0, + "source": "workers_celery_worker_rationale_311", + "target": "workers_celery_worker_check_ontology_drift_task", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L20", + "weight": 1.0, + "source": "workers_simulation_runner_py", + "target": "workers_simulation_runner_agentaction", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L27", + "weight": 1.0, + "source": "workers_simulation_runner_py", + "target": "workers_simulation_runner_simulationmanager", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L34", + "weight": 1.0, + "source": "workers_simulation_runner_simulationmanager", + "target": "workers_simulation_runner_simulationmanager_get_active_agents", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L66", + "weight": 1.0, + "source": "workers_simulation_runner_simulationmanager", + "target": "workers_simulation_runner_simulationmanager_process_agent_turn", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L28", + "weight": 1.0, + "source": "workers_simulation_runner_rationale_28", + "target": "workers_simulation_runner_simulationmanager", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L35", + "weight": 1.0, + "source": "workers_simulation_runner_rationale_35", + "target": "workers_simulation_runner_simulationmanager_get_active_agents", + "confidence_score": 1.0 + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "workers/simulation_runner.py", + "source_location": "L67", + "weight": 1.0, + "source": "workers_simulation_runner_rationale_67", + "target": "workers_simulation_runner_simulationmanager_process_agent_turn", + "confidence_score": 1.0 + } + ], + "hyperedges": [], + "built_at_commit": "ed602fbc649f577e79b696c155a579cec574d774" +} \ No newline at end of file diff --git a/artifacts/graphify-out/manifest.json b/artifacts/graphify-out/manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6d4de11a077003ad47914ef82681fdac433d4fa7 --- /dev/null +++ b/artifacts/graphify-out/manifest.json @@ -0,0 +1,202 @@ +{ + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\config.py": { + "mtime": 1778305805.6333337, + "hash": "1acf8775c8df74ea40674605cc369e58" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\main.py": { + "mtime": 1771351046.0, + "hash": "8d4a836f436aa7cb4df23dbfce32e810" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\__init__.py": { + "mtime": 1771350092.0, + "hash": "de6922949b6d9e3b698223dbbafdd120" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\admin.py": { + "mtime": 1778310308.6838446, + "hash": "0f90577d6a42ffc8c76e5a5d28c1185f" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\auth.py": { + "mtime": 1778310176.8756356, + "hash": "3772602c301fb6954c14e82948c12db5" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\dependencies.py": { + "mtime": 1778256441.0881004, + "hash": "529b8499ae3e3260c9f7465a99e3b20f" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\models.py": { + "mtime": 1778342036.848028, + "hash": "e2235fef5819526f1642cccdf493d63e" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\server.py": { + "mtime": 1778342329.6352818, + "hash": "8ce46b92f5929d12588bf4c350d6e9fb" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\simulation.py": { + "mtime": 1775331250.317313, + "hash": "2caf3159f59c29bbaa69159ebc952689" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\__init__.py": { + "mtime": 1771351046.0, + "hash": "26def9ff0b4a265cafd63dcff2bb8468" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\auth.py": { + "mtime": 1778310178.8956313, + "hash": "0942e30ce3252293ac5c5576cb9df2b3" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\documents.py": { + "mtime": 1778256709.352767, + "hash": "fd8744684c2077ce19e409566a9bdecc" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\entities.py": { + "mtime": 1778256709.3547838, + "hash": "5fb11d58c154f3c238d55cb8dd110583" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\evaluation.py": { + "mtime": 1778256709.355297, + "hash": "2f97ee56390ee0433a43d7b64b8383ac" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\graph.py": { + "mtime": 1778257379.493629, + "hash": "5b39ed8005fa9db7d89e8056e44d9939" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\memory.py": { + "mtime": 1778256709.355297, + "hash": "394d1f8fc1fe762284d69569702a2a2c" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\ontology.py": { + "mtime": 1778312072.6187167, + "hash": "eb6d6d17e166e8b72a663cf54aa0bc43" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\query.py": { + "mtime": 1778342067.2202566, + "hash": "beec2bec6733486e970d087f22714a0c" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\report.py": { + "mtime": 1778256709.355297, + "hash": "6df18e4f8128cf18d72e1ec98399d93d" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\system.py": { + "mtime": 1778310180.9126856, + "hash": "51d88644aefd3623a82934380bf55934" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\api\\routers\\__init__.py": { + "mtime": 1778256709.355297, + "hash": "d41d8cd98f00b204e9800998ecf8427e" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\abstractions.py": { + "mtime": 1771350092.0, + "hash": "4d5e12f47b5097dfc69ee1d48d0225da" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\entity_resolver.py": { + "mtime": 1778260204.4434795, + "hash": "dcba5b231fc25a27510a10b1d1d5c0da" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\llm_factory.py": { + "mtime": 1778260381.2650664, + "hash": "f914e62441aead4a0a5f8192a29d516f" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\models.py": { + "mtime": 1778310967.3922837, + "hash": "2de98a12366325d1aef4a53b36b968a1" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\neo4j_store.py": { + "mtime": 1778312051.602902, + "hash": "fa0d2cdbbe0e20fb08f3e1736b4617a0" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\storage.py": { + "mtime": 1775554036.5560265, + "hash": "aa3ec7cc918e228bc2280d27451cc64e" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\core\\__init__.py": { + "mtime": 1771350092.0, + "hash": "ec4c79a4dcf85080afc72e54298d5ee7" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\document_processor.py": { + "mtime": 1778260336.7976966, + "hash": "1613943bd26782407a8bd7f4807acf48" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\extractor.py": { + "mtime": 1778260336.7992055, + "hash": "3176d05544e93f5bc7187afd24f856c1" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\ontology_generator.py": { + "mtime": 1778260029.4505444, + "hash": "01a95cefa9dcf648b01a1acae1c1c414" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\persona_generator.py": { + "mtime": 1778260336.7992055, + "hash": "d9676f3cc40dbcdff70d692ca975a9fe" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\pipeline.py": { + "mtime": 1778341972.4141448, + "hash": "648bbb201cc13db198384128dcaf1895" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\web_crawler.py": { + "mtime": 1775293761.8751705, + "hash": "e1c53a8bfa83442ed05a3987d94cfed9" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\ingestion\\__init__.py": { + "mtime": 1771351046.0, + "hash": "21833ae97ee324083e695b30d2adba04" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\tracing.py": { + "mtime": 1775296313.3709624, + "hash": "182fcee8a4064073a6ed49c96145a8d9" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\observability\\__init__.py": { + "mtime": 1771351046.0, + "hash": "5d037cbcd05185f557f39998bffc1900" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\agent.py": { + "mtime": 1778342139.5916977, + "hash": "ba0ce986b1298971101859a807d9b70a" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\communities.py": { + "mtime": 1778342021.5602276, + "hash": "3b7ae5bff4e05adbc4c5c7afa719e75a" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\hippo_tool.py": { + "mtime": 1778342122.2986217, + "hash": "3812e40795d86fb0431778dc993019f0" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\report_agent.py": { + "mtime": 1778338855.013188, + "hash": "4dba00b3458c2167227caad66aaf345d" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\tools.py": { + "mtime": 1778341829.6818635, + "hash": "a0f1cd53c552f81d44e81727bfa37f08" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\retrieval\\__init__.py": { + "mtime": 1771351046.0, + "hash": "419a93ebb5103e942a7b9c081657c2a3" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\entity_enricher.py": { + "mtime": 1778338846.8201766, + "hash": "1c8b95915a8314c48dea14d9fe5ec05c" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\graph_memory_updater.py": { + "mtime": 1778310544.89124, + "hash": "77954a4ee075dfaf2fbb06adf8ac7a41" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\ontology_drift_detector.py": { + "mtime": 1778312055.6451328, + "hash": "696989ce149a7dae8c4bfefc85ba0723" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\services\\__init__.py": { + "mtime": 1775326099.408258, + "hash": "b76d02246458042efe3da3e434655121" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\celery_worker.py": { + "mtime": 1778312074.6353035, + "hash": "db743fd1d4980d0325e39224f703bda7" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\simulation_runner.py": { + "mtime": 1778260336.8084824, + "hash": "ba8a67c7b284fe14634b8153cca1c4e2" + }, + "D:\\Desktop_March_26\\LYZR\\graph-RAG\\src\\graph_rag_service\\workers\\__init__.py": { + "mtime": 1771351046.0, + "hash": "d09ffdd010c4cdd074b9cc778a8c46f9" + } +} \ No newline at end of file diff --git a/benchmarks/run_benchmark.py b/benchmarks/run_benchmark.py new file mode 100644 index 0000000000000000000000000000000000000000..5cc7350acfde51311dddd8a2d1d7b9fafdd69bf6 --- /dev/null +++ b/benchmarks/run_benchmark.py @@ -0,0 +1,252 @@ +import asyncio +import json +import time +import httpx +from typing import List, Dict, Any +from pydantic import BaseModel +import re +import string + +def normalize_answer(s): + """Lower text and remove punctuation, articles and extra whitespace.""" + def remove_articles(text): + return re.sub(r'\b(a|an|the)\b', ' ', text) + def white_space_fix(text): + return ' '.join(text.split()) + def remove_punc(text): + exclude = set(string.punctuation) + return ''.join(ch for ch in text if ch not in exclude) + def lower(text): + return text.lower() + return white_space_fix(remove_articles(remove_punc(lower(s)))) + +def exact_match(prediction, ground_truth): + return normalize_answer(prediction) == normalize_answer(ground_truth) + +def token_f1(prediction, ground_truth): + prediction_tokens = normalize_answer(prediction).split() + ground_truth_tokens = normalize_answer(ground_truth).split() + common = set(prediction_tokens) & set(ground_truth_tokens) + num_same = len(common) + if num_same == 0: + return 0.0 + precision = 1.0 * num_same / len(prediction_tokens) + recall = 1.0 * num_same / len(ground_truth_tokens) + f1 = (2 * precision * recall) / (precision + recall) + return f1 + +# Mock datasets for benchmarking fallback +HOTPOT_QA_SAMPLE = [ + { + "question": "What is the capital of the country where the city of Lyon is located?", + "ground_truth": "Paris", + "context": "Lyon is a city in France. The capital of France is Paris.", + "type": "multi-hop" + }, + { + "question": "Which company acquired the startup that developed the Siri virtual assistant?", + "ground_truth": "Apple", + "context": "Siri was originally developed by Siri Inc. Apple acquired Siri Inc. in 2010.", + "type": "multi-hop" + } +] + +class BenchmarkConfig(BaseModel): + base_url: str = "http://localhost:7860" + modes: List[str] = ["naive", "hybrid", "hippo", "global_community"] + dataset: str = "hotpot_qa" + num_samples: int = 10 + +def load_hf_dataset(config: BenchmarkConfig) -> List[Dict[str, str]]: + try: + from datasets import load_dataset # type: ignore + print(f"Loading {config.dataset} from Hugging Face datasets...") + + if config.dataset == "hotpot_qa": + ds = load_dataset("hotpot_qa", "distractor", split="validation", streaming=True) + elif config.dataset == "musique": + ds = load_dataset("bdsaglam/musique", split="validation", streaming=True) + else: + ds = load_dataset(config.dataset, split="validation", streaming=True) + + samples = [] + for item in ds: + if len(samples) >= config.num_samples: + break + + # Extract context text + context_text = "" + if "context" in item: + # HotpotQA format: lists of titles and sentences + if isinstance(item["context"], dict) and "sentences" in item["context"]: + for sentences in item["context"]["sentences"]: + context_text += " ".join(sentences) + " " + else: + context_text = str(item["context"]) + + samples.append({ + "question": item.get("question", ""), + "ground_truth": item.get("answer", ""), + "context": context_text, + "type": item.get("level", "unknown") + }) + return samples + except ImportError: + print("HF 'datasets' library not installed. Falling back to mock dataset.") + return HOTPOT_QA_SAMPLE + except Exception as e: + print(f"Failed to load dataset from HF: {e}. Falling back to mock dataset.") + return HOTPOT_QA_SAMPLE + +async def create_benchmark_tenant(client: httpx.AsyncClient, config: BenchmarkConfig) -> str: + timestamp = int(time.time()) + username = f"benchmark_user_{timestamp}" + tenant_id = f"benchmark_run_{timestamp}" + password = "password123" + + register_url = f"{config.base_url}/api/auth/register" + payload = { + "username": username, + "password": password, + "email": f"{username}@example.com", + "full_name": "Benchmark User", + "scopes": ["read", "write"], + "tenant_id": tenant_id + } + + try: + res = await client.post(register_url, json=payload, timeout=10.0) + res.raise_for_status() + + login_url = f"{config.base_url}/api/auth/login" + login_payload = {"username": username, "password": password} + login_res = await client.post(login_url, json=login_payload, timeout=10.0) + login_res.raise_for_status() + print(f" Created isolated tenant: {tenant_id}") + return login_res.json()["access_token"] + except Exception as e: + print(f" Failed to create isolated tenant: {e}. Falling back to default admin.") + return await authenticate(client, config) + +async def authenticate(client: httpx.AsyncClient, config: BenchmarkConfig) -> str: + login_url = f"{config.base_url}/api/auth/login" + try: + response = await client.post(login_url, json={"username": "admin", "password": "admin"}, timeout=10.0) + response.raise_for_status() + return response.json().get("access_token", "") + except Exception as e: + print(f"Failed to authenticate with backend: {e}. Some endpoints may be inaccessible.") + return "test-token" + +async def ingest_context(client: httpx.AsyncClient, config: BenchmarkConfig, token: str, q: Dict[str, str]): + if not q.get("context"): + return + + update_url = f"{config.base_url}/api/graph/update" + headers = {"Authorization": f"Bearer {token}"} + payload = { + "text": q["context"], + "source_label": "benchmark_ingest" + } + + try: + response = await client.post(update_url, json=payload, headers=headers, timeout=30.0) + response.raise_for_status() + except Exception as e: + print(f" [Warning] Failed to ingest context: {e}") + +async def evaluate_question(client: httpx.AsyncClient, config: BenchmarkConfig, token: str, mode: str, q: Dict[str, str]) -> Dict[str, Any]: + query_url = f"{config.base_url}/api/query" + payload = { + "query": q["question"], + "top_k": 5, + "mode": mode, + "streaming": False + } + + start_time = time.time() + try: + headers = {"Authorization": f"Bearer {token}"} + + response = await client.post(query_url, json=payload, headers=headers, timeout=60.0) + response.raise_for_status() + data = response.json() + + duration = time.time() - start_time + answer = data.get("answer", "") + + em = exact_match(answer, q["ground_truth"]) + f1 = token_f1(answer, q["ground_truth"]) + is_correct = em or f1 > 0.6 # Use relaxed F1 threshold for general correctness flag + + return { + "question": q["question"], + "mode": mode, + "duration": duration, + "is_correct": is_correct, + "exact_match": em, + "f1_score": f1, + "generated_answer": answer, + "confidence": data.get("confidence", 0.0), + "sources_count": len(data.get("sources", [])) + } + except Exception as e: + return { + "question": q["question"], + "mode": mode, + "duration": time.time() - start_time, + "is_correct": False, + "error": str(e) + } + +async def run_benchmark(): + config = BenchmarkConfig() + dataset = load_hf_dataset(config) + + print(f"Starting benchmark on {config.dataset} with {len(dataset)} questions...") + print(f"Modes to test: {config.modes}") + + results = [] + + async with httpx.AsyncClient() as client: + # Authenticate first + # Create isolated tenant for benchmark + print("\nCreating isolated benchmark tenant...") + token = await create_benchmark_tenant(client, config) + + for i, q in enumerate(dataset): + print(f"\nEvaluating Question {i+1}/{len(dataset)}: {q['question']}") + + # Ingest context into knowledge graph + print(f" Ingesting context into knowledge graph...") + await ingest_context(client, config, token, q) + + # Allow Neo4j indexing to catch up + await asyncio.sleep(1) + + for mode in config.modes: + print(f" Running mode: {mode}...") + res = await evaluate_question(client, config, token, mode, q) + results.append(res) + status = "PASS" if res.get("is_correct") else "FAIL" + print(f" [{status}] Time: {res['duration']:.2f}s | Sources: {res.get('sources_count', 0)}") + + summary = {} + for r in results: + m = r["mode"] + if m not in summary: + summary[m] = {"correct": 0, "total": 0, "time": 0.0} + + summary[m]["total"] += 1 + if r.get("is_correct"): + summary[m]["correct"] += 1 + summary[m]["time"] += r["duration"] + + print("\n=== BENCHMARK RESULTS ===") + for m, stats in summary.items(): + accuracy = (stats["correct"] / stats["total"]) * 100 if stats["total"] > 0 else 0 + avg_time = stats["time"] / stats["total"] if stats["total"] > 0 else 0 + print(f"Mode: {m:<15} | Accuracy: {accuracy:>5.1f}% | Avg Time: {avg_time:>5.2f}s") + +if __name__ == "__main__": + asyncio.run(run_benchmark()) diff --git a/data/uploads/.gitkeep b/data/uploads/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..fdf46cb225600706e735e36f4374da3aadf8ddac --- /dev/null +++ b/data/uploads/.gitkeep @@ -0,0 +1 @@ +# This file ensures the data/uploads directory is created in git diff --git a/fix_datetime.py b/fix_datetime.py new file mode 100644 index 0000000000000000000000000000000000000000..e3ce831d8c758f1bc539b8941ec3aec45f943919 --- /dev/null +++ b/fix_datetime.py @@ -0,0 +1,21 @@ +import os + +target_dir = r"D:\Desktop_March_26\LYZR\graph-RAG\src\graph_rag_service" + +for root, dirs, files in os.walk(target_dir): + for f in files: + if f.endswith(".py"): + p = os.path.join(root, f) + with open(p, "r", encoding="utf-8") as file: + content = file.read() + + if "datetime.utcnow()" in content: + content = content.replace("datetime.utcnow()", "datetime.now(timezone.utc).replace(tzinfo=None)") + if "from datetime import datetime" in content and "timezone" not in content: + content = content.replace("from datetime import datetime", "from datetime import datetime, timezone") + elif "import datetime" in content and "timezone" not in content: + content = "from datetime import timezone\n" + content + + with open(p, "w", encoding="utf-8") as file: + file.write(content) + print(f"Updated {p}") diff --git a/fix_default_factory.py b/fix_default_factory.py new file mode 100644 index 0000000000000000000000000000000000000000..9d6ad417f6499ad280562cf30017ed67aecd328e --- /dev/null +++ b/fix_default_factory.py @@ -0,0 +1,12 @@ +import os +import glob + +for f in glob.glob(r'D:\Desktop_March_26\LYZR\graph-RAG\src\**\*.py', recursive=True): + with open(f, 'r', encoding='utf-8') as file: + content = file.read() + + if 'default_factory=datetime.utcnow' in content: + new_content = content.replace('default_factory=datetime.utcnow', 'default_factory=lambda: datetime.now(timezone.utc).replace(tzinfo=None)') + with open(f, 'w', encoding='utf-8') as file: + file.write(new_content) + print(f"Fixed {f}") diff --git a/fix_print_statements.py b/fix_print_statements.py new file mode 100644 index 0000000000000000000000000000000000000000..456aab29716f8a525b18937944317aa2f4662132 --- /dev/null +++ b/fix_print_statements.py @@ -0,0 +1,21 @@ +import os +import glob +import re + +for f in glob.glob(r'D:\Desktop_March_26\LYZR\graph-RAG\src\**\*.py', recursive=True): + with open(f, 'r', encoding='utf-8') as file: + content = file.read() + + if 'print(' in content: + # Add import logging and logger if not exists + if 'import logging' not in content: + content = "import logging\nlogger = logging.getLogger(__name__)\n" + content + elif 'logger = ' not in content: + content = content.replace('import logging\n', 'import logging\nlogger = logging.getLogger(__name__)\n', 1) + + # Replace print( with logger.info( + content = re.sub(r'\bprint\(', 'logger.info(', content) + + with open(f, 'w', encoding='utf-8') as file: + file.write(content) + print(f"Fixed {f}") diff --git a/fix_timezone_imports.py b/fix_timezone_imports.py new file mode 100644 index 0000000000000000000000000000000000000000..45d0188fcab9633cf36f70b9d5f6f27027d9339b --- /dev/null +++ b/fix_timezone_imports.py @@ -0,0 +1,33 @@ +import os + +files = [ + r"D:\Desktop_March_26\LYZR\graph-RAG\src\graph_rag_service\api\auth.py", + r"D:\Desktop_March_26\LYZR\graph-RAG\src\graph_rag_service\api\routers\ontology.py", + r"D:\Desktop_March_26\LYZR\graph-RAG\src\graph_rag_service\api\routers\system.py", + r"D:\Desktop_March_26\LYZR\graph-RAG\src\graph_rag_service\ingestion\document_processor.py", + r"D:\Desktop_March_26\LYZR\graph-RAG\src\graph_rag_service\ingestion\ontology_generator.py", + r"D:\Desktop_March_26\LYZR\graph-RAG\src\graph_rag_service\retrieval\report_agent.py", + r"D:\Desktop_March_26\LYZR\graph-RAG\src\graph_rag_service\services\graph_memory_updater.py", + r"D:\Desktop_March_26\LYZR\graph-RAG\src\graph_rag_service\services\ontology_drift_detector.py", + r"D:\Desktop_March_26\LYZR\graph-RAG\src\graph_rag_service\workers\simulation_runner.py" +] + +for f in files: + with open(f, 'r', encoding='utf-8') as file: + content = file.read() + + # Check if 'from datetime import datetime' exists + if "from datetime import datetime\n" in content: + content = content.replace("from datetime import datetime\n", "from datetime import datetime, timezone\n") + elif "from datetime import datetime," in content: + if "timezone" not in content: + content = content.replace("from datetime import datetime,", "from datetime import datetime, timezone,") + elif "import datetime\n" in content: + content = content.replace("import datetime\n", "import datetime\nfrom datetime import timezone\n") + else: + # Just put it at the top + content = "from datetime import timezone\n" + content + + with open(f, 'w', encoding='utf-8') as file: + file.write(content) + print(f"Fixed {f}") diff --git a/frontend-react/.gitignore b/frontend-react/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..a547bf36d8d11a4f89c59c144f24795749086dd1 --- /dev/null +++ b/frontend-react/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/frontend-react/README.md b/frontend-react/README.md new file mode 100644 index 0000000000000000000000000000000000000000..7dbf7ebf3b2a3d84ad526bc47810d1d211331b8b --- /dev/null +++ b/frontend-react/README.md @@ -0,0 +1,73 @@ +# React + TypeScript + Vite + +This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. + +Currently, two official plugins are available: + +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs) +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) + +## React Compiler + +The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation). + +## Expanding the ESLint configuration + +If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules: + +```js +export default defineConfig([ + globalIgnores(['dist']), + { + files: ['**/*.{ts,tsx}'], + extends: [ + // Other configs... + + // Remove tseslint.configs.recommended and replace with this + tseslint.configs.recommendedTypeChecked, + // Alternatively, use this for stricter rules + tseslint.configs.strictTypeChecked, + // Optionally, add this for stylistic rules + tseslint.configs.stylisticTypeChecked, + + // Other configs... + ], + languageOptions: { + parserOptions: { + project: ['./tsconfig.node.json', './tsconfig.app.json'], + tsconfigRootDir: import.meta.dirname, + }, + // other options... + }, + }, +]) +``` + +You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules: + +```js +// eslint.config.js +import reactX from 'eslint-plugin-react-x' +import reactDom from 'eslint-plugin-react-dom' + +export default defineConfig([ + globalIgnores(['dist']), + { + files: ['**/*.{ts,tsx}'], + extends: [ + // Other configs... + // Enable lint rules for React + reactX.configs['recommended-typescript'], + // Enable lint rules for React DOM + reactDom.configs.recommended, + ], + languageOptions: { + parserOptions: { + project: ['./tsconfig.node.json', './tsconfig.app.json'], + tsconfigRootDir: import.meta.dirname, + }, + // other options... + }, + }, +]) +``` diff --git a/frontend-react/eslint.config.js b/frontend-react/eslint.config.js new file mode 100644 index 0000000000000000000000000000000000000000..5e6b472f583e34a1cca751440d4f241495475723 --- /dev/null +++ b/frontend-react/eslint.config.js @@ -0,0 +1,23 @@ +import js from '@eslint/js' +import globals from 'globals' +import reactHooks from 'eslint-plugin-react-hooks' +import reactRefresh from 'eslint-plugin-react-refresh' +import tseslint from 'typescript-eslint' +import { defineConfig, globalIgnores } from 'eslint/config' + +export default defineConfig([ + globalIgnores(['dist']), + { + files: ['**/*.{ts,tsx}'], + extends: [ + js.configs.recommended, + tseslint.configs.recommended, + reactHooks.configs.flat.recommended, + reactRefresh.configs.vite, + ], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + }, +]) diff --git a/frontend-react/index.html b/frontend-react/index.html new file mode 100644 index 0000000000000000000000000000000000000000..c270cc86c8c4129d902d988fc9cb7711cf4d59b7 --- /dev/null +++ b/frontend-react/index.html @@ -0,0 +1,13 @@ + + + + + + + frontend-react + + +
+ + + diff --git a/frontend-react/package-lock.json b/frontend-react/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..03c92b67b33c76b17fd59a5864e923fe0eb6e51b --- /dev/null +++ b/frontend-react/package-lock.json @@ -0,0 +1,6053 @@ +{ + "name": "frontend-react", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "frontend-react", + "version": "0.0.0", + "dependencies": { + "@heroicons/react": "^2.2.0", + "@types/d3": "^7.4.3", + "d3": "^7.9.0", + "lucide-react": "^1.7.0", + "react": "^19.2.4", + "react-dom": "^19.2.4", + "react-markdown": "^10.1.0", + "react-router-dom": "^7.13.2", + "remark-gfm": "^4.0.1" + }, + "devDependencies": { + "@eslint/js": "^9.39.4", + "@tailwindcss/vite": "^4.2.4", + "@types/node": "^24.12.0", + "@types/react": "^19.2.14", + "@types/react-dom": "^19.2.3", + "@vitejs/plugin-react": "^6.0.1", + "autoprefixer": "^10.5.0", + "concurrently": "^9.2.1", + "eslint": "^9.39.4", + "eslint-plugin-react-hooks": "^7.0.1", + "eslint-plugin-react-refresh": "^0.5.2", + "globals": "^17.4.0", + "openapi-typescript-codegen": "^0.30.0", + "postcss": "^8.5.10", + "tailwindcss": "^4.2.4", + "typescript": "~5.9.3", + "typescript-eslint": "^8.57.0", + "vite": "^8.0.1" + } + }, + "node_modules/@apidevtools/json-schema-ref-parser": { + "version": "14.2.1", + "resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-14.2.1.tgz", + "integrity": "sha512-HmdFw9CDYqM6B25pqGBpNeLCKvGPlIx1EbLrVL0zPvj50CJQUHyBNBw45Muk0kEIkogo1VZvOKHajdMuAzSxRg==", + "dev": true, + "license": "MIT", + "dependencies": { + "js-yaml": "^4.1.0" + }, + "engines": { + "node": ">= 20" + }, + "funding": { + "url": "https://github.com/sponsors/philsturgeon" + }, + "peerDependencies": { + "@types/json-schema": "^7.0.15" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", + "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz", + "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", + "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.29.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", + "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz", + "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz", + "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz", + "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@emnapi/core": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.9.1.tgz", + "integrity": "sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.2.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.1.tgz", + "integrity": "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.0.tgz", + "integrity": "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz", + "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.5" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz", + "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.14.0", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.5", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.4", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz", + "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@heroicons/react": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-2.2.0.tgz", + "integrity": "sha512-LMcepvRaS9LYHJGsF0zzmgKCUim/X3N/DQKc4jepAXJ7l8QxJ1PmxJzqplF2Z3FE4PqBAIGyJAQ/w4B5dsqbtQ==", + "license": "MIT", + "peerDependencies": { + "react": ">= 16 || ^19.0.0-rc" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.7", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz", + "integrity": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.7.1", + "@emnapi/runtime": "^1.7.1", + "@tybys/wasm-util": "^0.10.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Brooooooklyn" + } + }, + "node_modules/@oxc-project/types": { + "version": "0.122.0", + "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.122.0.tgz", + "integrity": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/Boshen" + } + }, + "node_modules/@rolldown/binding-android-arm64": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.12.tgz", + "integrity": "sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-darwin-arm64": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.12.tgz", + "integrity": "sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-darwin-x64": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.12.tgz", + "integrity": "sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-freebsd-x64": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.12.tgz", + "integrity": "sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-arm-gnueabihf": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.12.tgz", + "integrity": "sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-arm64-gnu": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.12.tgz", + "integrity": "sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-arm64-musl": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.12.tgz", + "integrity": "sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-ppc64-gnu": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.12.tgz", + "integrity": "sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-s390x-gnu": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.12.tgz", + "integrity": "sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og==", + "cpu": [ + "s390x" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-x64-gnu": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.12.tgz", + "integrity": "sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-linux-x64-musl": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.12.tgz", + "integrity": "sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-openharmony-arm64": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.12.tgz", + "integrity": "sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-wasm32-wasi": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.12.tgz", + "integrity": "sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@napi-rs/wasm-runtime": "^1.1.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@rolldown/binding-win32-arm64-msvc": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.12.tgz", + "integrity": "sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/binding-win32-x64-msvc": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.12.tgz", + "integrity": "sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^20.19.0 || >=22.12.0" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-rc.7", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.7.tgz", + "integrity": "sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tailwindcss/node": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.4.tgz", + "integrity": "sha512-Ai7+yQPxz3ddrDQzFfBKdHEVBg0w3Zl83jnjuwxnZOsnH9pGn93QHQtpU0p/8rYWxvbFZHneni6p1BSLK4DkGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "enhanced-resolve": "^5.19.0", + "jiti": "^2.6.1", + "lightningcss": "1.32.0", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.2.4" + } + }, + "node_modules/@tailwindcss/oxide": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.4.tgz", + "integrity": "sha512-9El/iI069DKDSXwTvB9J4BwdO5JhRrOweGaK25taBAvBXyXqJAX+Jqdvs8r8gKpsI/1m0LeJLyQYTf/WLrBT1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 20" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.2.4", + "@tailwindcss/oxide-darwin-arm64": "4.2.4", + "@tailwindcss/oxide-darwin-x64": "4.2.4", + "@tailwindcss/oxide-freebsd-x64": "4.2.4", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.4", + "@tailwindcss/oxide-linux-arm64-gnu": "4.2.4", + "@tailwindcss/oxide-linux-arm64-musl": "4.2.4", + "@tailwindcss/oxide-linux-x64-gnu": "4.2.4", + "@tailwindcss/oxide-linux-x64-musl": "4.2.4", + "@tailwindcss/oxide-wasm32-wasi": "4.2.4", + "@tailwindcss/oxide-win32-arm64-msvc": "4.2.4", + "@tailwindcss/oxide-win32-x64-msvc": "4.2.4" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.4.tgz", + "integrity": "sha512-e7MOr1SAn9U8KlZzPi1ZXGZHeC5anY36qjNwmZv9pOJ8E4Q6jmD1vyEHkQFmNOIN7twGPEMXRHmitN4zCMN03g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.4.tgz", + "integrity": "sha512-tSC/Kbqpz/5/o/C2sG7QvOxAKqyd10bq+ypZNf+9Fi2TvbVbv1zNpcEptcsU7DPROaSbVgUXmrzKhurFvo5eDg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.4.tgz", + "integrity": "sha512-yPyUXn3yO/ufR6+Kzv0t4fCg2qNr90jxXc5QqBpjlPNd0NqyDXcmQb/6weunH/MEDXW5dhyEi+agTDiqa3WsGg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.4.tgz", + "integrity": "sha512-BoMIB4vMQtZsXdGLVc2z+P9DbETkiopogfWZKbWwM8b/1Vinbs4YcUwo+kM/KeLkX3Ygrf4/PsRndKaYhS8Eiw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.4.tgz", + "integrity": "sha512-7pIHBLTHYRAlS7V22JNuTh33yLH4VElwKtB3bwchK/UaKUPpQ0lPQiOWcbm4V3WP2I6fNIJ23vABIvoy2izdwA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.4.tgz", + "integrity": "sha512-+E4wxJ0ZGOzSH325reXTWB48l42i93kQqMvDyz5gqfRzRZ7faNhnmvlV4EPGJU3QJM/3Ab5jhJ5pCRUsKn6OQw==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.4.tgz", + "integrity": "sha512-bBADEGAbo4ASnppIziaQJelekCxdMaxisrk+fB7Thit72IBnALp9K6ffA2G4ruj90G9XRS2VQ6q2bCKbfFV82g==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.4.tgz", + "integrity": "sha512-7Mx25E4WTfnht0TVRTyC00j3i0M+EeFe7wguMDTlX4mRxafznw0CA8WJkFjWYH5BlgELd1kSjuU2JiPnNZbJDA==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.4.tgz", + "integrity": "sha512-2wwJRF7nyhOR0hhHoChc04xngV3iS+akccHTGtz965FwF0up4b2lOdo6kI1EbDaEXKgvcrFBYcYQQ/rrnWFVfA==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.4.tgz", + "integrity": "sha512-FQsqApeor8Fo6gUEklzmaa9994orJZZDBAlQpK2Mq+DslRKFJeD6AjHpBQ0kZFQohVr8o85PPh8eOy86VlSCmw==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.8.1", + "@emnapi/runtime": "^1.8.1", + "@emnapi/wasi-threads": "^1.1.0", + "@napi-rs/wasm-runtime": "^1.1.1", + "@tybys/wasm-util": "^0.10.1", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.4.tgz", + "integrity": "sha512-L9BXqxC4ToVgwMFqj3pmZRqyHEztulpUJzCxUtLjobMCzTPsGt1Fa9enKbOpY2iIyVtaHNeNvAK8ERP/64sqGQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.4.tgz", + "integrity": "sha512-ESlKG0EpVJQwRjXDDa9rLvhEAh0mhP1sF7sap9dNZT0yyl9SAG6T7gdP09EH0vIv0UNTlo6jPWyujD6559fZvw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 20" + } + }, + "node_modules/@tailwindcss/vite": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.4.tgz", + "integrity": "sha512-pCvohwOCspk3ZFn6eJzrrX3g4n2JY73H6MmYC87XfGPyTty4YsCjYTMArRZm/zOI8dIt3+EcrLHAFPe5A4bgtw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@tailwindcss/node": "4.2.4", + "@tailwindcss/oxide": "4.2.4", + "tailwindcss": "4.2.4" + }, + "peerDependencies": { + "vite": "^5.2.0 || ^6 || ^7 || ^8" + } + }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/d3": { + "version": "7.4.3", + "resolved": "https://registry.npmjs.org/@types/d3/-/d3-7.4.3.tgz", + "integrity": "sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==", + "license": "MIT", + "dependencies": { + "@types/d3-array": "*", + "@types/d3-axis": "*", + "@types/d3-brush": "*", + "@types/d3-chord": "*", + "@types/d3-color": "*", + "@types/d3-contour": "*", + "@types/d3-delaunay": "*", + "@types/d3-dispatch": "*", + "@types/d3-drag": "*", + "@types/d3-dsv": "*", + "@types/d3-ease": "*", + "@types/d3-fetch": "*", + "@types/d3-force": "*", + "@types/d3-format": "*", + "@types/d3-geo": "*", + "@types/d3-hierarchy": "*", + "@types/d3-interpolate": "*", + "@types/d3-path": "*", + "@types/d3-polygon": "*", + "@types/d3-quadtree": "*", + "@types/d3-random": "*", + "@types/d3-scale": "*", + "@types/d3-scale-chromatic": "*", + "@types/d3-selection": "*", + "@types/d3-shape": "*", + "@types/d3-time": "*", + "@types/d3-time-format": "*", + "@types/d3-timer": "*", + "@types/d3-transition": "*", + "@types/d3-zoom": "*" + } + }, + "node_modules/@types/d3-array": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.2.tgz", + "integrity": "sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==", + "license": "MIT" + }, + "node_modules/@types/d3-axis": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-3.0.6.tgz", + "integrity": "sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-brush": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-3.0.6.tgz", + "integrity": "sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-chord": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-3.0.6.tgz", + "integrity": "sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==", + "license": "MIT" + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", + "license": "MIT" + }, + "node_modules/@types/d3-contour": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-contour/-/d3-contour-3.0.6.tgz", + "integrity": "sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==", + "license": "MIT", + "dependencies": { + "@types/d3-array": "*", + "@types/geojson": "*" + } + }, + "node_modules/@types/d3-delaunay": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==", + "license": "MIT" + }, + "node_modules/@types/d3-dispatch": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.7.tgz", + "integrity": "sha512-5o9OIAdKkhN1QItV2oqaE5KMIiXAvDWBDPrD85e58Qlz1c1kI/J0NcqbEG88CoTwJrYe7ntUCVfeUl2UJKbWgA==", + "license": "MIT" + }, + "node_modules/@types/d3-drag": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz", + "integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-dsv": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-3.0.7.tgz", + "integrity": "sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==", + "license": "MIT" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==", + "license": "MIT" + }, + "node_modules/@types/d3-fetch": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-fetch/-/d3-fetch-3.0.7.tgz", + "integrity": "sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==", + "license": "MIT", + "dependencies": { + "@types/d3-dsv": "*" + } + }, + "node_modules/@types/d3-force": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.10.tgz", + "integrity": "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==", + "license": "MIT" + }, + "node_modules/@types/d3-format": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.4.tgz", + "integrity": "sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==", + "license": "MIT" + }, + "node_modules/@types/d3-geo": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-3.1.0.tgz", + "integrity": "sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/d3-hierarchy": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz", + "integrity": "sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==", + "license": "MIT" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "license": "MIT", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz", + "integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==", + "license": "MIT" + }, + "node_modules/@types/d3-polygon": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-3.0.2.tgz", + "integrity": "sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==", + "license": "MIT" + }, + "node_modules/@types/d3-quadtree": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz", + "integrity": "sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==", + "license": "MIT" + }, + "node_modules/@types/d3-random": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.3.tgz", + "integrity": "sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==", + "license": "MIT" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz", + "integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==", + "license": "MIT", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-scale-chromatic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", + "integrity": "sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==", + "license": "MIT" + }, + "node_modules/@types/d3-selection": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz", + "integrity": "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==", + "license": "MIT" + }, + "node_modules/@types/d3-shape": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.8.tgz", + "integrity": "sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==", + "license": "MIT", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz", + "integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==", + "license": "MIT" + }, + "node_modules/@types/d3-time-format": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-4.0.3.tgz", + "integrity": "sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==", + "license": "MIT" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==", + "license": "MIT" + }, + "node_modules/@types/d3-transition": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz", + "integrity": "sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-zoom": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz", + "integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==", + "license": "MIT", + "dependencies": { + "@types/d3-interpolate": "*", + "@types/d3-selection": "*" + } + }, + "node_modules/@types/debug": { + "version": "4.1.13", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz", + "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==", + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" + }, + "node_modules/@types/estree-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", + "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", + "license": "MIT", + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/@types/geojson": { + "version": "7946.0.16", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz", + "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==", + "license": "MIT" + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.12.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.0.tgz", + "integrity": "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/react": { + "version": "19.2.14", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz", + "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==", + "license": "MIT", + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.57.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.2.tgz", + "integrity": "sha512-NZZgp0Fm2IkD+La5PR81sd+g+8oS6JwJje+aRWsDocxHkjyRw0J5L5ZTlN3LI1LlOcGL7ph3eaIUmTXMIjLk0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.12.2", + "@typescript-eslint/scope-manager": "8.57.2", + "@typescript-eslint/type-utils": "8.57.2", + "@typescript-eslint/utils": "8.57.2", + "@typescript-eslint/visitor-keys": "8.57.2", + "ignore": "^7.0.5", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.57.2", + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.57.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.57.2.tgz", + "integrity": "sha512-30ScMRHIAD33JJQkgfGW1t8CURZtjc2JpTrq5n2HFhOefbAhb7ucc7xJwdWcrEtqUIYJ73Nybpsggii6GtAHjA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.57.2", + "@typescript-eslint/types": "8.57.2", + "@typescript-eslint/typescript-estree": "8.57.2", + "@typescript-eslint/visitor-keys": "8.57.2", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.57.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.57.2.tgz", + "integrity": "sha512-FuH0wipFywXRTHf+bTTjNyuNQQsQC3qh/dYzaM4I4W0jrCqjCVuUh99+xd9KamUfmCGPvbO8NDngo/vsnNVqgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.57.2", + "@typescript-eslint/types": "^8.57.2", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.57.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.57.2.tgz", + "integrity": "sha512-snZKH+W4WbWkrBqj4gUNRIGb/jipDW3qMqVJ4C9rzdFc+wLwruxk+2a5D+uoFcKPAqyqEnSb4l2ULuZf95eSkw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.57.2", + "@typescript-eslint/visitor-keys": "8.57.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.57.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.2.tgz", + "integrity": "sha512-3Lm5DSM+DCowsUOJC+YqHHnKEfFh5CoGkj5Z31NQSNF4l5wdOwqGn99wmwN/LImhfY3KJnmordBq/4+VDe2eKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.57.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.57.2.tgz", + "integrity": "sha512-Co6ZCShm6kIbAM/s+oYVpKFfW7LBc6FXoPXjTRQ449PPNBY8U0KZXuevz5IFuuUj2H9ss40atTaf9dlGLzbWZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.57.2", + "@typescript-eslint/typescript-estree": "8.57.2", + "@typescript-eslint/utils": "8.57.2", + "debug": "^4.4.3", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.57.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.57.2.tgz", + "integrity": "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.57.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.2.tgz", + "integrity": "sha512-2MKM+I6g8tJxfSmFKOnHv2t8Sk3T6rF20A1Puk0svLK+uVapDZB/4pfAeB7nE83uAZrU6OxW+HmOd5wHVdXwXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.57.2", + "@typescript-eslint/tsconfig-utils": "8.57.2", + "@typescript-eslint/types": "8.57.2", + "@typescript-eslint/visitor-keys": "8.57.2", + "debug": "^4.4.3", + "minimatch": "^10.2.2", + "semver": "^7.7.3", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz", + "integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "10.2.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz", + "integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "brace-expansion": "^5.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.57.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.57.2.tgz", + "integrity": "sha512-krRIbvPK1ju1WBKIefiX+bngPs+odIQUtR7kymzPfo1POVw3jlF+nLkmexdSSd4UCbDcQn+wMBATOOmpBbqgKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.9.1", + "@typescript-eslint/scope-manager": "8.57.2", + "@typescript-eslint/types": "8.57.2", + "@typescript-eslint/typescript-estree": "8.57.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.57.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.2.tgz", + "integrity": "sha512-zhahknjobV2FiD6Ee9iLbS7OV9zi10rG26odsQdfBO/hjSzUQbkIYgda+iNKK1zNiW2ey+Lf8MU5btN17V3dUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.57.2", + "eslint-visitor-keys": "^5.0.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^20.19.0 || ^22.13.0 || >=24" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "license": "ISC" + }, + "node_modules/@vitejs/plugin-react": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.1.tgz", + "integrity": "sha512-l9X/E3cDb+xY3SWzlG1MOGt2usfEHGMNIaegaUGFsLkb3RCn/k8/TOXBcab+OndDI4TBtktT8/9BwwW8Vi9KUQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rolldown/pluginutils": "1.0.0-rc.7" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "peerDependencies": { + "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0", + "babel-plugin-react-compiler": "^1.0.0", + "vite": "^8.0.0" + }, + "peerDependenciesMeta": { + "@rolldown/plugin-babel": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + } + } + }, + "node_modules/acorn": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.14.0.tgz", + "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/autoprefixer": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.5.0.tgz", + "integrity": "sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.28.2", + "caniuse-lite": "^1.0.30001787", + "fraction.js": "^5.3.4", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.20", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.20.tgz", + "integrity": "sha512-1AaXxEPfXT+GvTBJFuy4yXVHWJBXa4OdbIebGN/wX5DlsIkU0+wzGnd2lOzokSk51d5LUmqjgBLRLlypLUqInQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.13.tgz", + "integrity": "sha512-9ZLprWS6EENmhEOpjCYW2c8VkmOvckIJZfkr7rBW6dObmfgJ/L1GpSYW5Hpo9lDz4D1+n0Ckz8rU7FwHDQiG/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/browserslist": { + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", + "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.10.12", + "caniuse-lite": "^1.0.30001782", + "electron-to-chromium": "^1.5.328", + "node-releases": "^2.0.36", + "update-browserslist-db": "^1.2.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001790", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001790.tgz", + "integrity": "sha512-bOoxfJPyYo+ds6W0YfptaCWbFnJYjh2Y1Eow5lRv+vI2u8ganPZqNm1JwNh0t2ELQCqIWg4B3dWEusgAmsoyOw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-reference-invalid": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/concurrently": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.2.1.tgz", + "integrity": "sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "4.1.2", + "rxjs": "7.8.2", + "shell-quote": "1.8.3", + "supports-color": "8.1.1", + "tree-kill": "1.2.2", + "yargs": "17.7.2" + }, + "bin": { + "conc": "dist/bin/concurrently.js", + "concurrently": "dist/bin/concurrently.js" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" + } + }, + "node_modules/concurrently/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cookie": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz", + "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "license": "MIT" + }, + "node_modules/d3": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", + "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", + "license": "ISC", + "dependencies": { + "d3-array": "3", + "d3-axis": "3", + "d3-brush": "3", + "d3-chord": "3", + "d3-color": "3", + "d3-contour": "4", + "d3-delaunay": "6", + "d3-dispatch": "3", + "d3-drag": "3", + "d3-dsv": "3", + "d3-ease": "3", + "d3-fetch": "3", + "d3-force": "3", + "d3-format": "3", + "d3-geo": "3", + "d3-hierarchy": "3", + "d3-interpolate": "3", + "d3-path": "3", + "d3-polygon": "3", + "d3-quadtree": "3", + "d3-random": "3", + "d3-scale": "4", + "d3-scale-chromatic": "3", + "d3-selection": "3", + "d3-shape": "3", + "d3-time": "3", + "d3-time-format": "4", + "d3-timer": "3", + "d3-transition": "3", + "d3-zoom": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "license": "ISC", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-axis": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", + "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-brush": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", + "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "3", + "d3-transition": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-chord": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", + "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", + "license": "ISC", + "dependencies": { + "d3-path": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-contour": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", + "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", + "license": "ISC", + "dependencies": { + "d3-array": "^3.2.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-delaunay": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==", + "license": "ISC", + "dependencies": { + "delaunator": "5" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-dispatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", + "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-drag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-selection": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-dsv": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", + "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", + "license": "ISC", + "dependencies": { + "commander": "7", + "iconv-lite": "0.6", + "rw": "1" + }, + "bin": { + "csv2json": "bin/dsv2json.js", + "csv2tsv": "bin/dsv2dsv.js", + "dsv2dsv": "bin/dsv2dsv.js", + "dsv2json": "bin/dsv2json.js", + "json2csv": "bin/json2dsv.js", + "json2dsv": "bin/json2dsv.js", + "json2tsv": "bin/json2dsv.js", + "tsv2csv": "bin/dsv2dsv.js", + "tsv2json": "bin/dsv2json.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-fetch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", + "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", + "license": "ISC", + "dependencies": { + "d3-dsv": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-force": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", + "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-quadtree": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.2.tgz", + "integrity": "sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2.5.0 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-hierarchy": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", + "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-polygon": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", + "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-quadtree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", + "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-random": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", + "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "license": "ISC", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale-chromatic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", + "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3", + "d3-interpolate": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-selection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "license": "ISC", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-transition": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3", + "d3-dispatch": "1 - 3", + "d3-ease": "1 - 3", + "d3-interpolate": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "d3-selection": "2 - 3" + } + }, + "node_modules/d3-zoom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "2 - 3", + "d3-transition": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decode-named-character-reference": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz", + "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==", + "license": "MIT", + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/delaunator": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.1.0.tgz", + "integrity": "sha512-AGrQ4QSgssa1NGmWmLPqN5NY2KajF5MqxetNEO+o0n3ZwZZeTmt7bBnvzHWrmkZFxGgr4HdyFgelzgi06otLuQ==", + "license": "ISC", + "dependencies": { + "robust-predicates": "^3.0.2" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.328", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.328.tgz", + "integrity": "sha512-QNQ5l45DzYytThO21403XN3FvK0hOkWDG8viNf6jqS42msJ8I4tGDSpBCgvDRRPnkffafiwAym2X2eHeGD2V0w==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/enhanced-resolve": { + "version": "5.20.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz", + "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.3.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.39.4", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz", + "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.2", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.5", + "@eslint/js": "9.39.4", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.14.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.5", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz", + "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.24.4", + "@babel/parser": "^7.24.4", + "hermes-parser": "^0.25.1", + "zod": "^3.25.0 || ^4.0.0", + "zod-validation-error": "^3.5.0 || ^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.2.tgz", + "integrity": "sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "eslint": "^9 || ^10" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-util-is-identifier-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", + "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", + "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", + "dev": true, + "license": "ISC" + }, + "node_modules/fraction.js": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz", + "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fs-extra": { + "version": "11.3.5", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.5.tgz", + "integrity": "sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "17.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-17.4.0.tgz", + "integrity": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/handlebars": { + "version": "4.7.9", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.9.tgz", + "integrity": "sha512-4E71E0rpOaQuJR2A3xDZ+GM1HyWYv1clR58tC8emQNeQe3RH7MAzSbat+V0wG78LQBo6m6bzSG/L4pBuCsgnUQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hast-util-to-jsx-runtime": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz", + "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-js": "^1.0.0", + "unist-util-position": "^5.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "dev": true, + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hermes-estree": "0.25.1" + } + }, + "node_modules/html-url-attributes": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz", + "integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inline-style-parser": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz", + "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==", + "license": "MIT" + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/is-alphabetical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "license": "MIT", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-decimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-hexadecimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/jiti": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz", + "integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lightningcss": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", + "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.32.0", + "lightningcss-darwin-arm64": "1.32.0", + "lightningcss-darwin-x64": "1.32.0", + "lightningcss-freebsd-x64": "1.32.0", + "lightningcss-linux-arm-gnueabihf": "1.32.0", + "lightningcss-linux-arm64-gnu": "1.32.0", + "lightningcss-linux-arm64-musl": "1.32.0", + "lightningcss-linux-x64-gnu": "1.32.0", + "lightningcss-linux-x64-musl": "1.32.0", + "lightningcss-win32-arm64-msvc": "1.32.0", + "lightningcss-win32-x64-msvc": "1.32.0" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", + "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", + "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", + "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", + "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", + "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", + "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", + "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", + "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", + "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", + "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", + "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lucide-react": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.7.0.tgz", + "integrity": "sha512-yI7BeItCLZJTXikmK4KNUGCKoGzSvbKlfCvw44bU4fXAL6v3gYS4uHD1jzsLkfwODYwI6Drw5Tu9Z5ulDe0TSg==", + "license": "ISC", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/markdown-table": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", + "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/mdast-util-find-and-replace": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", + "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz", + "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", + "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==", + "license": "MIT", + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-gfm-autolink-literal": "^2.0.0", + "mdast-util-gfm-footnote": "^2.0.0", + "mdast-util-gfm-strikethrough": "^2.0.0", + "mdast-util-gfm-table": "^2.0.0", + "mdast-util-gfm-task-list-item": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", + "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "ccount": "^2.0.0", + "devlop": "^1.0.0", + "mdast-util-find-and-replace": "^3.0.0", + "micromark-util-character": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz", + "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-jsx": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz", + "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-stringify-position": "^4.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", + "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", + "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", + "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", + "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", + "license": "MIT", + "dependencies": { + "micromark-extension-gfm-autolink-literal": "^2.0.0", + "micromark-extension-gfm-footnote": "^2.0.0", + "micromark-extension-gfm-strikethrough": "^2.0.0", + "micromark-extension-gfm-table": "^2.0.0", + "micromark-extension-gfm-tagfilter": "^2.0.0", + "micromark-extension-gfm-task-list-item": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", + "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", + "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", + "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", + "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-factory-destination": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", + "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-label": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", + "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-title": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", + "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", + "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-chunked": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", + "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", + "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-combine-extensions": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", + "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", + "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-string": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", + "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-html-tag-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", + "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", + "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-resolve-all": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", + "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-subtokenize": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", + "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.36", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz", + "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==", + "dev": true, + "license": "MIT" + }, + "node_modules/openapi-typescript-codegen": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/openapi-typescript-codegen/-/openapi-typescript-codegen-0.30.0.tgz", + "integrity": "sha512-NO24vrOYEEREkuEwtLemXiV0/3wUj1HvS+0UuAinVNWKJOyNlXTj5hehdW9Dyob4u5YGrRG9dc9TBZW7/UszGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@apidevtools/json-schema-ref-parser": "^14.2.1", + "camelcase": "^6.3.0", + "commander": "^14.0.2", + "fs-extra": "^11.3.3", + "handlebars": "^4.7.8" + }, + "bin": { + "openapi": "bin/index.js" + } + }, + "node_modules/openapi-typescript-codegen/node_modules/commander": { + "version": "14.0.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-14.0.3.tgz", + "integrity": "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-entities": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz", + "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "character-entities-legacy": "^3.0.0", + "character-reference-invalid": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse-entities/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", + "license": "MIT" + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.10", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.10.tgz", + "integrity": "sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/property-information": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/react": { + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz", + "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz", + "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.4" + } + }, + "node_modules/react-markdown": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-10.1.0.tgz", + "integrity": "sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "hast-util-to-jsx-runtime": "^2.0.0", + "html-url-attributes": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "remark-parse": "^11.0.0", + "remark-rehype": "^11.0.0", + "unified": "^11.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@types/react": ">=18", + "react": ">=18" + } + }, + "node_modules/react-router": { + "version": "7.13.2", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.13.2.tgz", + "integrity": "sha512-tX1Aee+ArlKQP+NIUd7SE6Li+CiGKwQtbS+FfRxPX6Pe4vHOo6nr9d++u5cwg+Z8K/x8tP+7qLmujDtfrAoUJA==", + "license": "MIT", + "dependencies": { + "cookie": "^1.0.1", + "set-cookie-parser": "^2.6.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + } + } + }, + "node_modules/react-router-dom": { + "version": "7.13.2", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.13.2.tgz", + "integrity": "sha512-aR7SUORwTqAW0JDeiWF07e9SBE9qGpByR9I8kJT5h/FrBKxPMS6TiC7rmVO+gC0q52Bx7JnjWe8Z1sR9faN4YA==", + "license": "MIT", + "dependencies": { + "react-router": "7.13.2" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/remark-gfm": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz", + "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-gfm": "^3.0.0", + "micromark-extension-gfm": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-stringify": "^11.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-rehype": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", + "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "mdast-util-to-hast": "^13.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-to-markdown": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/robust-predicates": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.3.tgz", + "integrity": "sha512-NS3levdsRIUOmiJ8FZWCP7LG3QpJyrs/TE0Zpf1yvZu8cAJJ6QMW92H1c7kWpdIHo8RvmLxN/o2JXTKHp74lUA==", + "license": "Unlicense" + }, + "node_modules/rolldown": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.12.tgz", + "integrity": "sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@oxc-project/types": "=0.122.0", + "@rolldown/pluginutils": "1.0.0-rc.12" + }, + "bin": { + "rolldown": "bin/cli.mjs" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "optionalDependencies": { + "@rolldown/binding-android-arm64": "1.0.0-rc.12", + "@rolldown/binding-darwin-arm64": "1.0.0-rc.12", + "@rolldown/binding-darwin-x64": "1.0.0-rc.12", + "@rolldown/binding-freebsd-x64": "1.0.0-rc.12", + "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.12", + "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.12", + "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.12", + "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.12", + "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.12", + "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.12", + "@rolldown/binding-linux-x64-musl": "1.0.0-rc.12", + "@rolldown/binding-openharmony-arm64": "1.0.0-rc.12", + "@rolldown/binding-wasm32-wasi": "1.0.0-rc.12", + "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.12", + "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.12" + } + }, + "node_modules/rolldown/node_modules/@rolldown/pluginutils": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.12.tgz", + "integrity": "sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==", + "dev": true, + "license": "MIT" + }, + "node_modules/rw": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==", + "license": "BSD-3-Clause" + }, + "node_modules/rxjs": { + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", + "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/set-cookie-parser": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz", + "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==", + "license": "MIT" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz", + "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "license": "MIT", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-to-js": { + "version": "1.1.21", + "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz", + "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==", + "license": "MIT", + "dependencies": { + "style-to-object": "1.0.14" + } + }, + "node_modules/style-to-object": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz", + "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==", + "license": "MIT", + "dependencies": { + "inline-style-parser": "0.2.7" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tailwindcss": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.4.tgz", + "integrity": "sha512-HhKppgO81FQof5m6TEnuBWCZGgfRAWbaeOaGT00KOy/Pf/j6oUihdvBpA7ltCeAvZpFhW3j0PTclkxsd4IXYDA==", + "dev": true, + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz", + "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "license": "MIT", + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/ts-api-utils": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz", + "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.57.2", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.57.2.tgz", + "integrity": "sha512-VEPQ0iPgWO/sBaZOU1xo4nuNdODVOajPnTIbog2GKYr31nIlZ0fWPoCQgGfF3ETyBl1vn63F/p50Um9Z4J8O8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.57.2", + "@typescript-eslint/parser": "8.57.2", + "@typescript-eslint/typescript-estree": "8.57.2", + "@typescript-eslint/utils": "8.57.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/uglify-js": { + "version": "3.19.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", + "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true, + "license": "MIT" + }, + "node_modules/unified": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz", + "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", + "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vite": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.3.tgz", + "integrity": "sha512-B9ifbFudT1TFhfltfaIPgjo9Z3mDynBTJSUYxTjOQruf/zHH+ezCQKcoqO+h7a9Pw9Nm/OtlXAiGT1axBgwqrQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "lightningcss": "^1.32.0", + "picomatch": "^4.0.4", + "postcss": "^8.5.8", + "rolldown": "1.0.0-rc.12", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "@vitejs/devtools": "^0.1.0", + "esbuild": "^0.27.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "@vitejs/devtools": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz", + "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz", + "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.25.0 || ^4.0.0" + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + } +} diff --git a/frontend-react/package.json b/frontend-react/package.json new file mode 100644 index 0000000000000000000000000000000000000000..f7c0e3f7fdac425be9526779c2ec2da6708db40e --- /dev/null +++ b/frontend-react/package.json @@ -0,0 +1,46 @@ +{ + "name": "frontend-react", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc -b && vite build", + "lint": "eslint .", + "preview": "vite preview", + "server": "cd ../ && .\\venv\\Scripts\\python.exe -m uvicorn src.graph_rag_service.api.server:app --reload", + "worker": "cd ../ && .\\venv\\Scripts\\celery.exe -A src.graph_rag_service.workers.celery_worker worker --loglevel=info --pool=solo", + "backend": "concurrently \"npm run server\" \"npm run worker\"" + }, + "dependencies": { + "@heroicons/react": "^2.2.0", + "@types/d3": "^7.4.3", + "d3": "^7.9.0", + "lucide-react": "^1.7.0", + "react": "^19.2.4", + "react-dom": "^19.2.4", + "react-markdown": "^10.1.0", + "react-router-dom": "^7.13.2", + "remark-gfm": "^4.0.1" + }, + "devDependencies": { + "@eslint/js": "^9.39.4", + "@tailwindcss/vite": "^4.2.4", + "@types/node": "^24.12.0", + "@types/react": "^19.2.14", + "@types/react-dom": "^19.2.3", + "@vitejs/plugin-react": "^6.0.1", + "autoprefixer": "^10.5.0", + "concurrently": "^9.2.1", + "eslint": "^9.39.4", + "eslint-plugin-react-hooks": "^7.0.1", + "eslint-plugin-react-refresh": "^0.5.2", + "globals": "^17.4.0", + "openapi-typescript-codegen": "^0.30.0", + "postcss": "^8.5.10", + "tailwindcss": "^4.2.4", + "typescript": "~5.9.3", + "typescript-eslint": "^8.57.0", + "vite": "^8.0.1" + } +} diff --git a/frontend-react/public/_redirects b/frontend-react/public/_redirects new file mode 100644 index 0000000000000000000000000000000000000000..50a463356b7d89bc7f17cfe56003eab71b56d8ad --- /dev/null +++ b/frontend-react/public/_redirects @@ -0,0 +1 @@ +/* /index.html 200 \ No newline at end of file diff --git a/frontend-react/public/favicon.svg b/frontend-react/public/favicon.svg new file mode 100644 index 0000000000000000000000000000000000000000..6893eb13237060adc0c968a690149a49faa2d7d3 --- /dev/null +++ b/frontend-react/public/favicon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-react/public/icons.svg b/frontend-react/public/icons.svg new file mode 100644 index 0000000000000000000000000000000000000000..e9522193d9f796a9748e9ad8c952a5df73c87db9 --- /dev/null +++ b/frontend-react/public/icons.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontend-react/public/thumbnail.png b/frontend-react/public/thumbnail.png new file mode 100644 index 0000000000000000000000000000000000000000..e7710d434efabfad76c943ddb61aa42c70a56581 --- /dev/null +++ b/frontend-react/public/thumbnail.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0fd3b4ca20ef442918b0cd3504825b0a966e94d681732c036298395d5a773a +size 545039 diff --git a/frontend-react/src/App.css b/frontend-react/src/App.css new file mode 100644 index 0000000000000000000000000000000000000000..456ff12b618716728a022ab654c8a837b9cd74e9 --- /dev/null +++ b/frontend-react/src/App.css @@ -0,0 +1 @@ +/* Empty file to override default vite styles */ diff --git a/frontend-react/src/App.tsx b/frontend-react/src/App.tsx new file mode 100644 index 0000000000000000000000000000000000000000..198dca67a098ea8a5fde2d96981d512f154882da --- /dev/null +++ b/frontend-react/src/App.tsx @@ -0,0 +1,179 @@ +import React from 'react'; +import { BrowserRouter, Routes, Route, Navigate, NavLink } from 'react-router-dom'; +import { AuthProvider, useAuth } from './context/AuthContext'; + +import Login from './views/Login'; +import Home from './views/Home'; +import Process from './views/Process'; +import InteractionView from './views/InteractionView'; +import SimulationRunView from './views/SimulationRunView'; +import Ontology from './views/Ontology'; +import InsightsView from './views/InsightsView'; +import AdminDashboard from './views/AdminDashboard'; + +const ProtectedRoute = ({ children }: { children: React.ReactNode }) => { + const { isAuthenticated } = useAuth(); + if (!isAuthenticated) return ; + return children; +}; + +const Navigation: React.FC = () => { + const { logout, user } = useAuth(); + return ( + + ); +}; + +const Layout = ({ children }: { children: React.ReactNode }) => ( + <> + + {children} + +); + +function App() { + return ( + + + + } /> + + } /> + } /> + } /> + } /> + } /> + } /> + } /> + + + + ); +} + +export default App; diff --git a/frontend-react/src/assets/hero.png b/frontend-react/src/assets/hero.png new file mode 100644 index 0000000000000000000000000000000000000000..2d58a13c6c916ee1d261fc82517761fa3acf2c8d --- /dev/null +++ b/frontend-react/src/assets/hero.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72a860570eddf1dd9988f26c7106c67be286bc9f2fd3303c465ce87edb1ae6cd +size 44919 diff --git a/frontend-react/src/assets/react.svg b/frontend-react/src/assets/react.svg new file mode 100644 index 0000000000000000000000000000000000000000..6c87de9bb3358469122cc991d5cf578927246184 --- /dev/null +++ b/frontend-react/src/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-react/src/assets/vite.svg b/frontend-react/src/assets/vite.svg new file mode 100644 index 0000000000000000000000000000000000000000..5101b674df391399da71c767aa5c976426c9dc7a --- /dev/null +++ b/frontend-react/src/assets/vite.svg @@ -0,0 +1 @@ +Vite diff --git a/frontend-react/src/components/GraphCanvas.tsx b/frontend-react/src/components/GraphCanvas.tsx new file mode 100644 index 0000000000000000000000000000000000000000..a172f585f4f8761f53e0bd223cc97d8e2e6f594b --- /dev/null +++ b/frontend-react/src/components/GraphCanvas.tsx @@ -0,0 +1,570 @@ +import { useEffect, useRef, forwardRef, useImperativeHandle, useState } from 'react'; +import * as d3 from 'd3'; +import { X, Tag, FileText, Database } from 'lucide-react'; + +// 12-color categorical palette for node types +const TYPE_COLORS = [ + '#e63946', '#457b9d', '#2a9d8f', '#e9c46a', '#f4a261', + '#6a4c93', '#1982c4', '#8ac926', '#ff595e', '#6a994e', + '#bc4749', '#a8dadc' +]; + +export interface GraphOptions { + colorByType: boolean; + showLabels: boolean; + showEdgeLabels: boolean; + nodeRadius: number; + linkDistance: number; + chargeStrength: number; + showCurvedEdges: boolean; + nodeSizeByDegree: boolean; + centerGravity: number; // 0 = no gravity, 0.1 = default +} + +export const DEFAULT_OPTIONS: GraphOptions = { + colorByType: true, + showLabels: true, + showEdgeLabels: false, + nodeRadius: 16, + linkDistance: 120, + chargeStrength: -300, + showCurvedEdges: false, + nodeSizeByDegree: false, + centerGravity: 0.05, +}; + +interface GraphCanvasProps { + data: { nodes: any[]; edges: any[] }; + onNodeUpdate?: (nodeId: string, newName: string) => void; + options?: GraphOptions; + highlightNodeIds?: Set; // nodes to highlight (from search) +} + +export interface GraphCanvasHandle { + exportPNG: () => void; + exportSVG: () => void; + fitView: () => void; + highlightNode: (id: string) => void; +} + +const GraphCanvas = forwardRef( + ({ data, onNodeUpdate, options = DEFAULT_OPTIONS, highlightNodeIds }, ref) => { + const [activeNode, setActiveNode] = useState(null); + const containerRef = useRef(null); + const svgRef = useRef(null); + const zoomRef = useRef | null>(null); + const gRef = useRef | null>(null); + const simulationRef = useRef | null>(null); + const typeColorMap = useRef>(new Map()); + + // ── Imperative API ───────────────────────────────────────────────────── + useImperativeHandle(ref, () => ({ + exportPNG() { + if (!svgRef.current) return; + const svgEl = svgRef.current; + const serializer = new XMLSerializer(); + const svgStr = serializer.serializeToString(svgEl); + const canvas = document.createElement('canvas'); + canvas.width = svgEl.clientWidth * 2; + canvas.height = svgEl.clientHeight * 2; + const ctx = canvas.getContext('2d')!; + const img = new Image(); + const blob = new Blob([svgStr], { type: 'image/svg+xml;charset=utf-8' }); + const url = URL.createObjectURL(blob); + img.onload = () => { + ctx.fillStyle = '#fff'; + ctx.fillRect(0, 0, canvas.width, canvas.height); + ctx.scale(2, 2); + ctx.drawImage(img, 0, 0); + URL.revokeObjectURL(url); + const a = document.createElement('a'); + a.download = 'graph.png'; + a.href = canvas.toDataURL('image/png'); + a.click(); + }; + img.src = url; + }, + exportSVG() { + if (!svgRef.current) return; + const serializer = new XMLSerializer(); + const svgStr = serializer.serializeToString(svgRef.current); + const blob = new Blob([svgStr], { type: 'image/svg+xml;charset=utf-8' }); + const url = URL.createObjectURL(blob); + const a = document.createElement('a'); + a.download = 'graph.svg'; + a.href = url; + a.click(); + URL.revokeObjectURL(url); + }, + fitView() { + if (!svgRef.current || !zoomRef.current) return; + d3.select(svgRef.current).transition().duration(600).call( + zoomRef.current.transform, d3.zoomIdentity + ); + }, + highlightNode(id: string) { + if (!svgRef.current || !zoomRef.current) return; + const node = simulationRef.current?.nodes().find((n: any) => n.id === id); + if (!node || node.x === undefined) return; + const svg = d3.select(svgRef.current); + const w = svgRef.current.clientWidth; + const h = svgRef.current.clientHeight; + const t = d3.zoomIdentity.translate(w / 2 - node.x, h / 2 - node.y); + svg.transition().duration(700).call(zoomRef.current.transform, t); + } + })); + + // ── Main D3 render effect ────────────────────────────────────────────── + useEffect(() => { + if (!data.nodes.length || !containerRef.current || !svgRef.current) return; + + const width = containerRef.current.clientWidth; + const height = containerRef.current.clientHeight; + + // Build type→color map (stable) + const types = [...new Set(data.nodes.map(n => n.type || 'Unknown'))]; + types.forEach((t, i) => { + if (!typeColorMap.current.has(t)) { + typeColorMap.current.set(t, TYPE_COLORS[i % TYPE_COLORS.length]); + } + }); + + const svg = d3.select(svgRef.current); + svg.selectAll('*').remove(); + + const nodes: any[] = data.nodes.map(d => ({ ...d })); + const nodeIds = new Set(nodes.map(n => n.id)); + const links: any[] = data.edges + .filter(d => nodeIds.has(d.source) && nodeIds.has(d.target)) + .map(d => ({ ...d })); + + // Degree map for node-size-by-degree + const degreeMap = new Map(); + nodes.forEach(n => degreeMap.set(n.id, 0)); + links.forEach(l => { + const sid = typeof l.source === 'object' ? l.source.id : l.source; + const tid = typeof l.target === 'object' ? l.target.id : l.target; + degreeMap.set(sid, (degreeMap.get(sid) || 0) + 1); + degreeMap.set(tid, (degreeMap.get(tid) || 0) + 1); + }); + const maxDegree = Math.max(1, ...degreeMap.values()); + + const nodeR = (d: any) => { + if (!options.nodeSizeByDegree) return options.nodeRadius; + const deg = degreeMap.get(d.id) || 0; + return Math.max(8, options.nodeRadius * (0.5 + 1.0 * (deg / maxDegree))); + }; + + // ── Defs: arrowhead markers ────────────────────────────────────────── + const defs = svg.append('defs'); + if (options.colorByType) { + types.forEach(t => { + const color = typeColorMap.current.get(t) || '#000'; + defs.append('marker') + .attr('id', `arrow-${t.replace(/\s+/g, '_')}`) + .attr('viewBox', '-0 -5 10 10').attr('refX', options.nodeRadius + 10) + .attr('refY', 0).attr('orient', 'auto') + .attr('markerWidth', 6).attr('markerHeight', 6) + .append('path').attr('d', 'M 0,-5 L 10,0 L 0,5').attr('fill', color); + }); + } else { + defs.append('marker') + .attr('id', 'arrow-default') + .attr('viewBox', '-0 -5 10 10').attr('refX', options.nodeRadius + 10) + .attr('refY', 0).attr('orient', 'auto') + .attr('markerWidth', 6).attr('markerHeight', 6) + .append('path').attr('d', 'M 0,-5 L 10,0 L 0,5').attr('fill', '#666'); + } + + // ── Force simulation ────────────────────────────────────────────────── + const sim = d3.forceSimulation(nodes) + .force('link', d3.forceLink(links).id((d: any) => d.id).distance(options.linkDistance)) + .force('charge', d3.forceManyBody().strength(options.chargeStrength)) + .force('center', d3.forceCenter(width / 2, height / 2).strength(options.centerGravity)) + .force('collide', d3.forceCollide().radius((d: any) => nodeR(d) + 14)); + + simulationRef.current = sim; + + const g = svg.append('g').attr('class', 'graph-root'); + gRef.current = g; + + // ── Tooltip ─────────────────────────────────────────────────────────── + const tooltip = d3.select(containerRef.current) + .selectAll('.graph-tooltip').data([null]).join('div') + .attr('class', 'graph-tooltip') + .style('position', 'absolute') + .style('pointer-events', 'none') + .style('background', '#000') + .style('color', '#fff') + .style('padding', '6px 12px') + .style('font-family', '"JetBrains Mono", monospace') + .style('font-size', '11px') + .style('line-height', '1.5') + .style('opacity', 0) + .style('border', '1px solid #333') + .style('z-index', '999') + .style('max-width', '220px') + .style('word-break', 'break-word'); + + // ── Links ──────────────────────────────────────────────────────────── + const linkG = g.append('g').attr('class', 'links'); + + // Adjacency set for hover highlight + const adjacentIds = new Set(); + + // Straight lines or curved paths + const linkEl = options.showCurvedEdges + ? linkG.selectAll('path').data(links).enter().append('path') + .attr('fill', 'none') + .attr('stroke', (d: any) => { + if (!options.colorByType) return '#aaa'; + const srcNode = nodes.find(n => n.id === (typeof d.source === 'object' ? d.source.id : d.source)); + return srcNode ? (typeColorMap.current.get(srcNode.type) || '#aaa') : '#aaa'; + }) + .attr('stroke-width', 1.5) + .attr('stroke-opacity', 0.55) + .attr('marker-end', (d: any) => { + if (!options.colorByType) return 'url(#arrow-default)'; + const srcNode = nodes.find(n => n.id === (typeof d.source === 'object' ? d.source.id : d.source)); + const t = srcNode?.type?.replace(/\s+/g, '_') || 'Unknown'; + return `url(#arrow-${t})`; + }) + : linkG.selectAll('line').data(links).enter().append('line') + .attr('stroke', (d: any) => { + if (!options.colorByType) return '#aaa'; + const srcNode = nodes.find(n => n.id === (typeof d.source === 'object' ? d.source.id : d.source)); + return srcNode ? (typeColorMap.current.get(srcNode.type) || '#aaa') : '#aaa'; + }) + .attr('stroke-width', 1.5) + .attr('stroke-opacity', 0.55) + .attr('marker-end', (d: any) => { + if (!options.colorByType) return 'url(#arrow-default)'; + const srcNode = nodes.find(n => n.id === (typeof d.source === 'object' ? d.source.id : d.source)); + const t = srcNode?.type?.replace(/\s+/g, '_') || 'Unknown'; + return `url(#arrow-${t})`; + }); + + // ── Nodes ───────────────────────────────────────────────────────────── + const node = g.append('g').attr('class', 'nodes') + .selectAll('g').data(nodes).enter().append('g') + .call(d3.drag() + .on('start', (event, d) => { if (!event.active) sim.alphaTarget(0.3).restart(); d.fx = d.x; d.fy = d.y; }) + .on('drag', (event, d) => { d.fx = event.x; d.fy = event.y; }) + .on('end', (event, d) => { if (!event.active) sim.alphaTarget(0); d.fx = null; d.fy = null; }) + ) + .on('mouseover', (_, d: any) => { + // Build adjacent set + adjacentIds.clear(); + adjacentIds.add(d.id); + links.forEach(l => { + const sid = typeof l.source === 'object' ? l.source.id : l.source; + const tid = typeof l.target === 'object' ? l.target.id : l.target; + if (sid === d.id) adjacentIds.add(tid); + if (tid === d.id) adjacentIds.add(sid); + }); + // Dim non-adjacent + node.select('circle') + .style('opacity', (n: any) => adjacentIds.has(n.id) ? 1 : 0.15) + .style('stroke-width', (n: any) => n.id === d.id ? 4 : 2); + (linkEl as any) + .style('stroke-opacity', (l: any) => { + const sid = typeof l.source === 'object' ? l.source.id : l.source; + const tid = typeof l.target === 'object' ? l.target.id : l.target; + return (sid === d.id || tid === d.id) ? 0.9 : 0.04; + }); + tooltip + .style('opacity', 1) + .html(`${d.label}
ID: ${d.id}
Type: ${d.type || '—'}
Degree: ${degreeMap.get(d.id) || 0}`); + }) + .on('mousemove', (event) => { + const rect = containerRef.current!.getBoundingClientRect(); + tooltip + .style('left', (event.clientX - rect.left + 14) + 'px') + .style('top', (event.clientY - rect.top - 32) + 'px'); + }) + .on('mouseout', () => { + adjacentIds.clear(); + node.select('circle') + .style('opacity', (n: any) => { + if (!highlightNodeIds || highlightNodeIds.size === 0) return 1; + return highlightNodeIds.has(n.id) ? 1 : 0.2; + }) + .style('stroke-width', (n: any) => highlightNodeIds?.has(n.id) ? 4 : 2); + (linkEl as any).style('stroke-opacity', 0.55); + tooltip.style('opacity', 0); + }) + .on('click', (event, d: any) => { + setActiveNode(d); + // Zoom to node on single click + if (!svgRef.current || !zoomRef.current) return; + const w = svgRef.current.clientWidth; + const h = svgRef.current.clientHeight; + const t = d3.zoomIdentity.translate(w / 2 - d.x, h / 2 - d.y).scale(1.4); + d3.select(svgRef.current).transition().duration(500).call(zoomRef.current.transform, t); + event.stopPropagation(); + }) + .on('dblclick', (event, d: any) => { + const newName = window.prompt('Update entity name:', d.label); + if (newName && newName.trim() && newName.trim() !== d.label) { + const updated = newName.trim(); + d.label = updated; + d3.select(event.currentTarget).select('text.node-label').text( + updated.length > 18 ? updated.substring(0, 16) + '…' : updated + ); + if (onNodeUpdate) onNodeUpdate(d.id, updated); + } + }); + + // Circle + node.append('circle') + .attr('r', (d: any) => nodeR(d)) + .attr('fill', (d: any) => options.colorByType + ? (typeColorMap.current.get(d.type) || '#ccc') + : '#fff') + .attr('stroke', (d: any) => { + if (highlightNodeIds && highlightNodeIds.size > 0) { + return highlightNodeIds.has(d.id) ? '#ff0' : (options.colorByType + ? d3.color(typeColorMap.current.get(d.type) || '#ccc')!.darker(1).toString() + : '#000'); + } + return options.colorByType + ? d3.color(typeColorMap.current.get(d.type) || '#ccc')!.darker(1).toString() + : '#000'; + }) + .attr('stroke-width', (d: any) => highlightNodeIds?.has(d.id) ? 4 : 2) + .style('opacity', (d: any) => { + if (!highlightNodeIds || highlightNodeIds.size === 0) return 1; + return highlightNodeIds.has(d.id) ? 1 : 0.2; + }) + .style('filter', 'drop-shadow(1px 2px 3px rgba(0,0,0,0.15))') + .style('cursor', 'pointer'); + + // Type abbreviation inside circle + node.append('text') + .attr('class', 'node-type-badge') + .text((d: any) => (d.type || '?').substring(0, 2).toUpperCase()) + .attr('text-anchor', 'middle').attr('dy', '0.35em') + .style('font-family', '"JetBrains Mono", monospace') + .style('font-size', (d: any) => `${Math.max(8, nodeR(d) - 6)}px`) + .style('font-weight', '700') + .style('fill', (d: any) => { + if (!options.colorByType) return '#000'; + const c = d3.color(typeColorMap.current.get(d.type) || '#ccc'); + if (!c) return '#000'; + const { r, g: gv, b } = c.rgb(); + return (r * 0.299 + gv * 0.587 + b * 0.114) > 150 ? '#111' : '#fff'; + }) + .style('pointer-events', 'none'); + + // Node name label below circle + if (options.showLabels) { + node.append('text') + .attr('class', 'node-label') + .text((d: any) => d.label && d.label.length > 18 ? d.label.substring(0, 16) + '…' : d.label) + .attr('text-anchor', 'middle') + .attr('dy', (d: any) => nodeR(d) + 14) + .style('font-family', '"JetBrains Mono", monospace') + .style('font-size', '10px') + .style('font-weight', '600') + .style('fill', '#222') + .style('pointer-events', 'none'); + } + + // Edge labels + let edgeLabel: d3.Selection | null = null; + if (options.showEdgeLabels) { + edgeLabel = g.append('g').attr('class', 'edge-labels') + .selectAll('text').data(links).enter().append('text') + .text((d: any) => d.type || '') + .style('font-family', '"JetBrains Mono", monospace') + .style('font-size', '9px') + .style('fill', '#777') + .style('text-anchor', 'middle') + .style('pointer-events', 'none') + .attr('dy', -5); + } + + // ── Tick ────────────────────────────────────────────────────────────── + sim.on('tick', () => { + if (options.showCurvedEdges) { + (linkEl as d3.Selection) + .attr('d', (d: any) => { + const sx = d.source.x, sy = d.source.y; + const tx = d.target.x, ty = d.target.y; + const dx = tx - sx, dy = ty - sy; + const dr = Math.sqrt(dx * dx + dy * dy) * 0.8; + return `M${sx},${sy}A${dr},${dr} 0 0,1 ${tx},${ty}`; + }); + } else { + (linkEl as d3.Selection) + .attr('x1', (d: any) => d.source.x).attr('y1', (d: any) => d.source.y) + .attr('x2', (d: any) => d.target.x).attr('y2', (d: any) => d.target.y); + } + node.attr('transform', (d: any) => `translate(${d.x},${d.y})`); + if (edgeLabel) { + edgeLabel + .attr('x', (d: any) => (d.source.x + d.target.x) / 2) + .attr('y', (d: any) => (d.source.y + d.target.y) / 2); + } + }); + + // ── Zoom / Pan ──────────────────────────────────────────────────────── + const zoom = d3.zoom() + .scaleExtent([0.03, 8]) + .on('zoom', (event) => g.attr('transform', event.transform)); + + svg.call(zoom); + // Click on SVG background resets highlighting and active node + svg.on('click', () => { + setActiveNode(null); + node.select('circle').style('opacity', 1).style('stroke-width', 2); + (linkEl as any).style('stroke-opacity', 0.55); + }); + + zoomRef.current = zoom; + + return () => { sim.stop(); }; + }, [data, options, highlightNodeIds]); + + return ( +
+ + + {/* ── Node details modal ────────────────────────────────────────────── */} + {activeNode && ( +
+
+
+

NODE DETAILS

+ + {activeNode.type || 'Unknown'} + +
+ +
+ +
+
+ Name: + {activeNode.label || '—'} +
+
+ UUID: + {activeNode.id} +
+ + {activeNode.properties && Object.keys(activeNode.properties).length > 0 && ( + <> +
+
PROPERTIES
+
+ {Object.entries(activeNode.properties).map(([k, v]) => ( +
+ {k}: + {String(v)} +
+ ))} +
+ + )} + + {activeNode.description && ( + <> +
+
DESCRIPTION / SUMMARY
+
+ {activeNode.description} +
+ + )} +
+
+ )} + + +
+ ); + } +); + +GraphCanvas.displayName = 'GraphCanvas'; +export default GraphCanvas; diff --git a/frontend-react/src/context/AuthContext.tsx b/frontend-react/src/context/AuthContext.tsx new file mode 100644 index 0000000000000000000000000000000000000000..9071d31872550cdad81d0d7800d27c37bf5e6c79 --- /dev/null +++ b/frontend-react/src/context/AuthContext.tsx @@ -0,0 +1,64 @@ +import React, { createContext, useContext, useState, useEffect } from 'react'; + +// This acts as our authentication context for the React application + +interface User { + username: string; + email?: string; + full_name?: string; + scopes: string[]; +} + +interface AuthContextType { + token: string | null; + user: User | null; + login: (token: string, user: User) => void; + logout: () => void; + isAuthenticated: boolean; +} + +const AuthContext = createContext(undefined); + +export const AuthProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => { + const [token, setToken] = useState(localStorage.getItem('token')); + const [user, setUser] = useState(null); + + useEffect(() => { + const storedUser = localStorage.getItem('user'); + if (storedUser) { + try { + setUser(JSON.parse(storedUser)); + } catch (e) { + console.error('Failed to parse stored user', e); + } + } + }, []); + + const login = (newToken: string, newUser: User) => { + localStorage.setItem('token', newToken); + localStorage.setItem('user', JSON.stringify(newUser)); + setToken(newToken); + setUser(newUser); + }; + + const logout = () => { + localStorage.removeItem('token'); + localStorage.removeItem('user'); + setToken(null); + setUser(null); + }; + + return ( + + {children} + + ); +}; + +export const useAuth = () => { + const context = useContext(AuthContext); + if (context === undefined) { + throw new Error('useAuth must be used within an AuthProvider'); + } + return context; +}; diff --git a/frontend-react/src/index.css b/frontend-react/src/index.css new file mode 100644 index 0000000000000000000000000000000000000000..76a507ce7f82b0753729ef58b3f76e508eb22d77 --- /dev/null +++ b/frontend-react/src/index.css @@ -0,0 +1,494 @@ +@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&family=Noto+Sans+SC:wght@400;500;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap'); +@import "tailwindcss"; + +/* ── Design Tokens ─────────────────────────────────────────────────────── */ +:root { + --bg-color: #ffffff; + --text-color: #000000; + --border-color: #000000; + --surface-color: #f5f5f5; /* subtle off-white for secondary surfaces */ + --hover-bg: #f0f0f0; + --muted-color: #666666; + --success-color: #16a34a; + --error-color: #dc2626; + --warning-color: #d97706; + + --font-sans: 'Inter', 'Noto Sans SC', sans-serif; + --font-display: 'Space Grotesk', 'Inter', sans-serif; + --font-mono: 'JetBrains Mono', monospace; + + --transition-speed: 0.18s; + --nav-height: 60px; +} + +/* ── Reset ─────────────────────────────────────────────────────────────── */ +*, *::before, *::after { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +body { + font-family: var(--font-sans); + background-color: var(--bg-color); + color: var(--text-color); + line-height: 1.6; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + min-height: 100vh; +} + +h1, h2, h3, h4, h5, h6 { + font-family: var(--font-display); + font-weight: 600; + margin-bottom: 0.75rem; + line-height: 1.2; +} + +code, pre, .technical { font-family: var(--font-mono); } + +/* ── Links ─────────────────────────────────────────────────────────────── */ +a { + color: var(--text-color); + text-decoration: underline; + text-underline-offset: 3px; + transition: background var(--transition-speed), color var(--transition-speed); +} +a:hover { + background-color: var(--text-color); + color: var(--bg-color); +} + +/* ── Buttons ───────────────────────────────────────────────────────────── */ +button, .app-btn { + font-family: var(--font-display); + background-color: var(--bg-color); + color: var(--text-color); + border: 2px solid var(--border-color); + padding: 0.5rem 1rem; + font-weight: 600; + cursor: pointer; + transition: background var(--transition-speed) ease, color var(--transition-speed) ease; + font-size: 0.9rem; + text-transform: uppercase; + letter-spacing: 0.8px; + display: inline-flex; + align-items: center; + gap: 0.4rem; +} +button:hover, .app-btn:hover { + background-color: var(--text-color); + color: var(--bg-color); +} +button:disabled, .app-btn:disabled { + opacity: 0.45; + cursor: not-allowed; + pointer-events: none; +} + +/* Text-only button (no border, no background) */ +.text-btn { + background: none !important; + border: none !important; + color: var(--text-color); + text-decoration: underline; + text-underline-offset: 3px; + cursor: pointer; + font-family: var(--font-mono); + font-size: 0.8rem; + font-weight: 600; + transition: background var(--transition-speed), color var(--transition-speed); + padding: 0.2rem 0.4rem; +} +.text-btn:hover { + background: var(--text-color) !important; + color: var(--bg-color) !important; +} + +/* ── Toast dismiss button ──────────────────────────────────────────────── */ +/* Prevents global button:hover from flipping the close button inside toasts */ +.toast-dismiss-btn { + background: transparent !important; + border: none !important; + color: inherit !important; + cursor: pointer !important; + margin-left: auto !important; + padding: 0 0.3rem !important; + font-size: 1.2rem !important; + line-height: 1 !important; + opacity: 0.7; + flex-shrink: 0; + transition: opacity 0.12s ease !important; +} +.toast-dismiss-btn:hover { + background: transparent !important; + color: inherit !important; + opacity: 1 !important; +} + +/* ── Status toast ──────────────────────────────────────────────────────── */ +.status-toast { + position: fixed; + bottom: 2rem; + right: 2rem; + background: var(--text-color); + color: var(--bg-color); + padding: 0.9rem 1.2rem; + border-left: 5px solid #000; + box-shadow: 4px 4px 0 rgba(0,0,0,0.3); + display: flex; + align-items: center; + gap: 0.75rem; + z-index: 9999; + font-family: var(--font-mono); + font-weight: 700; + font-size: 0.85rem; + max-width: 420px; + animation: slideUpToast 0.28s ease-out both; + will-change: transform; +} +.status-toast.error { border-left-color: var(--error-color); } +.status-toast.success { border-left-color: var(--success-color); } + +/* ── Form Controls ─────────────────────────────────────────────────────── */ +input, textarea, select { + font-family: var(--font-sans); + background-color: var(--bg-color); + color: var(--text-color); + border: 2px solid var(--border-color); + padding: 0.5rem 0.75rem; + font-size: 0.95rem; + transition: box-shadow var(--transition-speed) ease; +} +input:focus, textarea:focus, select:focus { + outline: none; + box-shadow: 3px 3px 0 var(--border-color); +} + +/* ── Scrollbars ────────────────────────────────────────────────────────── */ +::-webkit-scrollbar { width: 8px; height: 8px; } +::-webkit-scrollbar-track { background: #f9f9f9; border-left: 1px solid #e5e5e5; } +::-webkit-scrollbar-thumb { background: #ccc; } +::-webkit-scrollbar-thumb:hover { background: #999; } + +/* ── Layout Utilities ──────────────────────────────────────────────────── */ +.container { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; +} + +.card { + border: 2px solid var(--border-color); + padding: 1.5rem; + background-color: var(--bg-color); + transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease; +} +.card:hover { + transform: translateY(-2px); + box-shadow: 5px 5px 0 var(--border-color); +} + +.mono-text { font-family: var(--font-mono); font-size: 0.88em; } + +.flex-center { + display: flex; + align-items: center; + justify-content: center; +} + +.flex-between { + display: flex; + align-items: center; + justify-content: space-between; + flex-wrap: wrap; + gap: 1rem; +} + +.full-width { width: 100%; } + +.page-header { + border-bottom: 3px solid var(--border-color); + padding-bottom: 1rem; + margin-bottom: 2rem; +} + +/* ── Keyframes ─────────────────────────────────────────────────────────── */ +@keyframes fadeIn { + from { opacity: 0; transform: translateY(8px); } + to { opacity: 1; transform: translateY(0); } +} + +@keyframes slideUpToast { + from { transform: translateY(80px); opacity: 0; } + to { transform: translateY(0); opacity: 1; } +} + +@keyframes slideUp { + from { transform: translateY(20px); opacity: 0; } + to { transform: translateY(0); opacity: 1; } +} + +@keyframes spin { + 100% { transform: rotate(360deg); } +} + +.fade-in { animation: fadeIn 0.4s ease both; } + +/* ── Status indicators ─────────────────────────────────────────────────── */ +.status-dot { + display: inline-block; + width: 8px; + height: 8px; + border-radius: 50%; + flex-shrink: 0; +} +.status-dot.online { background: var(--success-color); } +.status-dot.offline { background: var(--error-color); } + +/* ── Responsive ────────────────────────────────────────────────────────── */ +@media (max-width: 768px) { + .container { padding: 1rem; } + .card { padding: 1rem; } +} + +/* ── Admin / shared aliases ─────────────────────────────────────────────── */ +/* These classes are referenced in AdminDashboard and other views. */ +/* They map onto the existing design system so everything is uniform. */ + +/* Base btn — same as global button but without uppercase transform */ +.btn { + font-family: var(--font-display); + background-color: var(--bg-color); + color: var(--text-color); + border: 2px solid var(--border-color); + padding: 0.5rem 1rem; + font-weight: 600; + cursor: pointer; + font-size: 0.85rem; + letter-spacing: 0.5px; + display: inline-flex; + align-items: center; + gap: 0.4rem; + transition: background var(--transition-speed) ease, color var(--transition-speed) ease; +} +.btn:hover:not(:disabled) { + background-color: var(--text-color); + color: var(--bg-color); +} +.btn:disabled { + opacity: 0.45; + cursor: not-allowed; + pointer-events: none; +} + +/* Primary button — filled black */ +.btn-primary { + background-color: var(--text-color); + color: var(--bg-color); + border: 2px solid var(--text-color); +} +.btn-primary:hover:not(:disabled) { + background-color: #333; + border-color: #333; +} + +/* Outline / ghost button */ +.btn-outline { + background: transparent; + color: var(--text-color); + border: 2px solid var(--border-color); +} +.btn-outline:hover:not(:disabled) { + background: var(--text-color); + color: var(--bg-color); +} + +/* Danger button */ +.btn-danger { + color: var(--error-color); + border-color: var(--error-color); +} +.btn-danger:hover:not(:disabled) { + background: var(--error-color); + color: #fff; +} + +/* Uniform search / select input (matches global input but explicit class) */ +.search-input { + font-family: var(--font-sans); + background-color: var(--bg-color); + color: var(--text-color); + border: 2px solid var(--border-color); + padding: 0.5rem 0.75rem; + font-size: 0.9rem; + transition: box-shadow var(--transition-speed) ease; + width: 100%; +} +.search-input:focus { + outline: none; + box-shadow: 3px 3px 0 var(--border-color); +} + +/* Status / metric cards */ +.status-card { + border: 2px solid var(--border-color); + padding: 1.25rem 1.5rem; + background: var(--bg-color); +} + +.metric-value { + font-family: var(--font-mono); + font-size: 2rem; + font-weight: 900; + line-height: 1; + margin-top: 0.25rem; +} + +.status-label { + font-family: var(--font-mono); + font-size: 0.68rem; + font-weight: 700; + color: var(--muted-color); + letter-spacing: 1px; + text-transform: uppercase; +} + +/* Online / offline indicator dots */ +.indicator { + width: 10px; + height: 10px; + border-radius: 50%; + flex-shrink: 0; +} +.indicator.online { background: var(--success-color); } +.indicator.offline { background: var(--error-color); } +.indicator.pending { background: var(--warning-color); } + +/* Typography */ +.title-lg { + font-family: var(--font-display); + font-size: 1.8rem; + font-weight: 700; + line-height: 1.1; +} +.title-md { + font-family: var(--font-display); + font-size: 1.15rem; + font-weight: 700; +} +.title-sm { + font-family: var(--font-mono); + font-size: 0.72rem; + font-weight: 700; + letter-spacing: 1px; + text-transform: uppercase; + color: var(--muted-color); +} + +/* Data table */ +.data-table { + width: 100%; + border-collapse: collapse; + font-size: 0.9rem; +} +.data-table thead tr { + background: var(--surface-color); + border-bottom: 2px solid var(--border-color); +} +.data-table th, +.data-table td { + padding: 0.75rem 1rem; + text-align: left; + border-bottom: 1px solid #eaeaea; +} +.data-table th { + font-family: var(--font-mono); + font-size: 0.72rem; + font-weight: 700; + letter-spacing: 0.8px; + text-transform: uppercase; + color: var(--muted-color); +} +.data-table tbody tr:hover { + background: var(--surface-color); +} +.data-table tbody tr:last-child td { + border-bottom: none; +} + +/* Tag / badge chips */ +.chip { + display: inline-flex; + align-items: center; + gap: 4px; + border: 1.5px solid var(--border-color); + padding: 2px 8px; + font-family: var(--font-mono); + font-size: 0.72rem; + font-weight: 700; +} +.chip.success { border-color: var(--success-color); color: var(--success-color); } +.chip.error { border-color: var(--error-color); color: var(--error-color); } +.chip.warning { border-color: var(--warning-color); color: var(--warning-color); } +.chip.filled { background: var(--text-color); color: var(--bg-color); } + +/* Empty state */ +.empty-state { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + padding: 4rem 2rem; + color: var(--muted-color); + gap: 0.75rem; + border: 2px dashed var(--border-color); + font-family: var(--font-mono); + font-size: 0.85rem; + letter-spacing: 0.5px; + text-align: center; +} + +/* Help tooltip */ +.help-tooltip { + position: relative; + display: inline-flex; + align-items: center; +} +.help-tooltip [data-tip] { + cursor: help; + color: var(--muted-color); +} +.help-tooltip [data-tip]:hover::after { + content: attr(data-tip); + position: absolute; + bottom: 125%; + left: 50%; + transform: translateX(-50%); + background: var(--text-color); + color: var(--bg-color); + padding: 0.4rem 0.75rem; + font-family: var(--font-mono); + font-size: 0.75rem; + white-space: nowrap; + z-index: 9999; + pointer-events: none; + max-width: 260px; + white-space: normal; + text-align: center; +} + +/* Page info bar */ +.page-info-bar { + background: var(--surface-color); + border-left: 4px solid var(--border-color); + padding: 0.75rem 1rem; + font-size: 0.82rem; + line-height: 1.6; + margin-bottom: 1.5rem; + display: flex; + align-items: flex-start; + gap: 0.75rem; + color: var(--muted-color); +} +.page-info-bar strong { color: var(--text-color); font-family: var(--font-mono); } diff --git a/frontend-react/src/main.tsx b/frontend-react/src/main.tsx new file mode 100644 index 0000000000000000000000000000000000000000..bef5202a32cbd0632c43de40f6e908532903fd42 --- /dev/null +++ b/frontend-react/src/main.tsx @@ -0,0 +1,10 @@ +import { StrictMode } from 'react' +import { createRoot } from 'react-dom/client' +import './index.css' +import App from './App.tsx' + +createRoot(document.getElementById('root')!).render( + + + , +) diff --git a/frontend-react/src/types/api.ts b/frontend-react/src/types/api.ts new file mode 100644 index 0000000000000000000000000000000000000000..f4866a0c138be56dd392aa93f67743e17843587d --- /dev/null +++ b/frontend-react/src/types/api.ts @@ -0,0 +1,183 @@ +export interface LoginRequest { + username: string; + password: string; +} + +export interface RegisterRequest { + username: string; + password: string; + email?: string; + full_name?: string; + scopes?: string[]; + tenant_id?: string; +} + +export interface TokenResponse { + access_token: string; + token_type: string; +} + +export interface DocumentUploadResponse { + document_id: string; + filename: string; + size_bytes: number; + task_id?: string; + message: string; +} + +export interface ScrapeRequest { + url: string; +} + +export interface CrawlRequest { + url: string; + max_depth?: number; + max_pages?: number; +} + +export interface IngestionStatusResponse { + task_id: string; + status: string; + progress?: Record; + result?: Record; +} + +export interface DocumentInfo { + id: string; + filename: string; + file_type: string; + size_bytes: number; + upload_date: string; +} + +export interface DocumentListResponse { + documents: DocumentInfo[]; + total: number; +} + +export interface QueryRequest { + query: string; + top_k?: number; + streaming?: boolean; + document_id?: string; + conversation_id?: string; + use_got?: boolean; + at_time?: string; +} + +export interface ConfidenceJudgmentResponse { + score: number; + reasoning: string; + grounded_claims: number; + ungrounded_claims: number; + hallucination_risk: 'low' | 'medium' | 'high'; +} + +export interface QueryResponse { + answer: string; + sources: Array>; + reasoning_chain: string[]; + confidence: number; + confidence_judgment?: ConfidenceJudgmentResponse; + retrieval_method: string; + processing_time_seconds: number; + conversation_id?: string; + drift_expanded?: boolean; + total_sub_queries?: number; +} + +export interface EvalResultData { + overall_score?: number; + faithfulness: number; + answer_relevancy?: number; + relevancy?: number; + context_precision?: number; + precision?: number; +} + +export interface Message { + id?: string; + role: string; + content: string; + reasoning?: string[]; + sources?: Array>; + confidence?: number | null; + hallucination_risk?: string; + confidence_reasoning?: string; + created_at?: string; + eval_result?: EvalResultData; + evaluating?: boolean; + drift_expanded?: boolean; +} + +export interface Conversation { + id: string; + title: string; + created_at: string; + updated_at: string; + messages?: Message[]; +} + +export interface ConversationListResponse { + conversations: Conversation[]; +} + +export interface OntologyResponse { + version: string; + entity_types: string[]; + relationship_types: string[]; + properties: Record; + created_at: string; + approved: boolean; +} + +export interface OntologyUpdateRequest { + entity_types?: string[]; + relationship_types?: string[]; + properties?: Record; + approved?: boolean; +} + +export interface GraphNode { + id: string; + label: string; + type: string; + description?: string; + properties: Record; + community_id?: number; + valid_from?: string; + valid_until?: string; +} + +export interface GraphEdge { + source: string; + target: string; + type: string; + properties: Record; + valid_from?: string; + confidence?: number; +} + +export interface GraphVisualizationResponse { + nodes: GraphNode[]; + edges: GraphEdge[]; +} + +export interface SystemHealthResponse { + status: string; + version: string; + neo4j_connected: boolean; + redis_connected: boolean; + workers_active: number; + timestamp: string; +} + +export interface SystemStatsResponse { + documents_count: number; + entities_count: number; + relationships_count: number; + chunks_count: number; + ontology_version: string; +} + +export interface DriftReport { id: string; detected_at: string; new_entity_types: string[]; new_relationship_types: string[]; removed_entity_types: string[]; removed_relationship_types: string[]; sample_size: number; drift_score: number; status: string; approved_by?: string; approved_at?: string; } diff --git a/frontend-react/src/views/AdminDashboard.tsx b/frontend-react/src/views/AdminDashboard.tsx new file mode 100644 index 0000000000000000000000000000000000000000..a08ea36bb7b2fa807029d93e126a41101f14ce32 --- /dev/null +++ b/frontend-react/src/views/AdminDashboard.tsx @@ -0,0 +1,762 @@ +import React, { useState, useEffect, useCallback } from 'react'; +import { useAuth } from '../context/AuthContext'; +import { + BarChart2, Cpu, Users, Database, Settings, + Trash2, Check, X, Play, RefreshCw, Shield, + AlertTriangle, Zap, GitBranch, Info +} from 'lucide-react'; + +const API_BASE = import.meta.env.VITE_API_BASE_URL || 'http://localhost:8000/api'; + +// ─── Helpers ────────────────────────────────────────────────────────────────── +const Spinner = () => ( + +); + +// ─── Tab Components ────────────────────────────────────────────────────────── + +const OverviewTab = ({ stats, health, onRefresh }: { stats: Partial; health: import('../types/api').SystemHealthResponse | any; onRefresh: () => void }) => ( +
+ {/* KPI Grid */} +
+ {[ + { label:'Graph Nodes', value: stats?.graph?.nodes ?? stats?.total_nodes ?? '—', icon: }, + { label:'Relationships', value: stats?.graph?.relationships ?? stats?.total_relationships ?? '—', icon: }, + { label:'Documents', value: stats?.documents?.total ?? stats?.total_documents ?? '—', icon: }, + { label:'Est. LLM Cost', value: `$${(stats?.costs?.total_estimated_usd ?? 0).toFixed(4)}`, icon: }, + ].map(c => ( +
+
+
{c.label}
+ {c.icon} +
+
{c.value}
+
+ ))} +
+ + {/* System health */} +
+
+

System Health

+ +
+ {health ? ( +
+ {Object.entries(health).map(([k, v]: [string, any]) => { + const isOk = v === true || v === 'ok' || v === 'connected' || v === 'healthy'; + const isErr = v === false || v === 'error' || v === 'disconnected'; + return ( +
+ +
+
{k.toUpperCase()}
+
+ {typeof v === 'object' ? JSON.stringify(v) : String(v)} +
+
+
+ ); + })} +
+ ) : ( +
+ Loading health data… +
+ )} +
+ + {/* Provider info */} + {stats?.system && ( +
+

LLM Provider

+
+ {Object.entries(stats.system).map(([k, v]: any) => ( +
{k}: {String(v)}
+ ))} +
+
+ )} +
+); + +const UsersTab = ({ token }: { token: string | null }) => { + const [users, setUsers] = useState([]); + const [loading, setLoading] = useState(true); + const [msg, setMsg] = useState(''); + + const fetchUsers = useCallback(async () => { + setLoading(true); + try { + const res = await fetch(`${API_BASE}/admin/users`, { headers: { Authorization: `Bearer ${token}` } }); + if (res.ok) { + const json = await res.json(); + setUsers(json.users || []); + } + } finally { setLoading(false); } + }, [token]); + + useEffect(() => { fetchUsers(); }, [fetchUsers]); + + const updateRole = async (username: string, scopes: string) => { + const res = await fetch(`${API_BASE}/admin/users/${username}/role`, { + method: 'PUT', + headers: { Authorization: `Bearer ${token}`, 'Content-Type': 'application/json' }, + body: JSON.stringify({ scopes: [scopes] }) + }); + if (res.ok) { + setUsers(u => u.map(usr => usr.username === username ? { ...usr, scopes: [scopes] } : usr)); + setMsg(`Role updated for ${username}`); + setTimeout(() => setMsg(''), 3000); + } else { + setMsg(`Failed to update role for ${username}`); + setTimeout(() => setMsg(''), 3000); + } + }; + + return ( +
+
+

Registered Users

+ +
+ {msg &&
{msg}
} + {loading ? ( +
+ ) : ( +
+ + + + {users.map(u => { + const isAdminUser = u.username === 'admin'; + const currentScope = u.scopes?.includes('admin') ? 'admin' : (u.scopes?.includes('write') ? 'write' : 'read'); + return ( + + + + + + ); + })} + {users.length === 0 && ( + + )} + +
UsernameScopeChange Role
+ {u.username} + {isAdminUser && PROTECTED} + {u.scopes?.join(', ') || 'none'} + {isAdminUser ? ( + + ) : ( + + )} +
No users found.
+
+ )} +
+ ); +}; + +const DocumentsTab = ({ token }: { token: string | null }) => { + const [docs, setDocs] = useState([]); + const [loading, setLoading] = useState(true); + const [msg, setMsg] = useState(''); + + const fetchDocs = useCallback(async () => { + setLoading(true); + try { + const res = await fetch(`${API_BASE}/admin/documents`, { headers: { Authorization: `Bearer ${token}` } }); + if (res.ok) { + const json = await res.json(); + setDocs(json.documents || []); + } + } finally { setLoading(false); } + }, [token]); + + useEffect(() => { fetchDocs(); }, [fetchDocs]); + + const deleteDoc = async (id: string, filename: string) => { + if (!window.confirm(`Delete "${filename}" and all its graph data? This cannot be undone.`)) return; + const res = await fetch(`${API_BASE}/admin/documents/${id}`, { method: 'DELETE', headers: { Authorization: `Bearer ${token}` } }); + if (res.ok) { + setDocs(d => d.filter(doc => doc.id !== id)); + setMsg('Document deleted.'); + setTimeout(() => setMsg(''), 3000); + } + }; + + const reIngestDoc = async (id: string, filename: string) => { + setMsg(`Re-ingesting "${filename}"...`); + try { + const res = await fetch(`${API_BASE}/admin/documents/${id}/reingest`, { + method: 'POST', + headers: { Authorization: `Bearer ${token}` } + }); + if (res.ok) { + const data = await res.json(); + setMsg(`Re-ingestion queued for "${filename}". Task: ${data.task_id?.slice(0,8)}…`); + setTimeout(() => { setMsg(''); fetchDocs(); }, 5000); + } else { + setMsg(`Failed to re-ingest "${filename}"`); + setTimeout(() => setMsg(''), 3000); + } + } catch { + setMsg('Network error during re-ingest.'); + setTimeout(() => setMsg(''), 3000); + } + }; + + return ( +
+
+

Document Vault

+ {docs.length} documents +
+ {msg &&
{msg}
} + {loading ? ( +
+ ) : ( +
+ + + + {docs.map(d => ( + + + + + + + ))} + {docs.length === 0 && ( + + )} + +
IDFilenameStatusActions
{d.id?.substring(0,12)}…{d.filename} + + {d.status || 'unknown'} + + + {(d.status === 'failed' || d.status === 'pending') && ( + + )} + +
No documents uploaded yet.
+
+ )} +
+ ); +}; + +const GraphCRUDTab = ({ token }: { token: string | null }) => { + const [nodes, setNodes] = useState([]); + const [query, setQuery] = useState(''); + const [loading, setLoading] = useState(false); + const [msg, setMsg] = useState(''); + + const search = async (e?: React.FormEvent) => { + e?.preventDefault(); + setLoading(true); + try { + const res = await fetch(`${API_BASE}/admin/graph/nodes?query=${encodeURIComponent(query)}&limit=100`, { + headers: { Authorization: `Bearer ${token}` } + }); + if (res.ok) setNodes((await res.json()).nodes || []); + } finally { setLoading(false); } + }; + + const deleteNode = async (id: string) => { + if (!window.confirm('Detach and delete this node?')) return; + const res = await fetch(`${API_BASE}/admin/graph/nodes/${id}`, { + method: 'DELETE', headers: { Authorization: `Bearer ${token}` } + }); + if (res.ok) { + setNodes(n => n.filter(nd => nd.id !== id)); + setMsg('Node deleted.'); + setTimeout(() => setMsg(''), 3000); + } + }; + + return ( +
+

Graph Node Browser

+
+ + Search and inspect nodes directly in Neo4j. Use label names or property values. DELETE detaches all relationships before removing the node. +
+ {msg &&
{msg}
} +
+ setQuery(e.target.value)} + placeholder="Search node labels or properties…" className="search-input flex-1"/> + +
+
+ + + + {nodes.map((n, i) => ( + + + + + + + ))} + {nodes.length === 0 && ( + + )} + +
IDLabelsPropertiesAction
{n.id}{n.labels?.join(', ')} + {JSON.stringify(n.properties)} + + +
+ {loading ? 'Searching…' : 'Enter a search term above to browse nodes.'} +
+
+
+ ); +}; + +const OntologyGovernanceTab = ({ token }: { token: string | null }) => { + const [proposals, setProposals] = useState([]); + const [driftReports, setDriftReports] = useState([]); + const [loading, setLoading] = useState(true); + const [detectLoading, setDetectLoading] = useState(false); + const [msg, setMsg] = useState(''); + + const fetchData = useCallback(async () => { + setLoading(true); + try { + const [propRes, driftRes] = await Promise.all([ + fetch(`${API_BASE}/admin/ontology/pending`, { headers: { Authorization: `Bearer ${token}` } }), + fetch(`${API_BASE}/ontology/drift`, { headers: { Authorization: `Bearer ${token}` } }), + ]); + if (propRes.ok) setProposals((await propRes.json()).proposals || []); + if (driftRes.ok) setDriftReports((await driftRes.json()).reports || []); + } finally { setLoading(false); } + }, [token]); + + useEffect(() => { fetchData(); }, [fetchData]); + + const handleProposal = async (id: string, action: 'approve' | 'reject') => { + const res = await fetch(`${API_BASE}/admin/ontology/${action}/${id}`, { + method: 'POST', headers: { Authorization: `Bearer ${token}` } + }); + if (res.ok) { + setProposals(p => p.filter(o => o.id !== id)); + setMsg(`Proposal ${action}d.`); + setTimeout(() => setMsg(''), 3000); + } + }; + + const handleDrift = async (id: string, action: 'approve' | 'reject') => { + const res = await fetch(`${API_BASE}/ontology/drift/${id}/${action}`, { + method: 'POST', headers: { Authorization: `Bearer ${token}` } + }); + if (res.ok) { + setDriftReports(d => d.filter(r => r.id !== id)); + setMsg(`Drift report ${action}d.`); + setTimeout(() => setMsg(''), 3000); + } + }; + + const detectDrift = async () => { + setDetectLoading(true); + try { + const res = await fetch(`${API_BASE}/ontology/drift/detect`, { + method: 'POST', headers: { Authorization: `Bearer ${token}` } + }); + if (res.ok) { + setMsg('Drift detection complete. Refreshing…'); + await fetchData(); + } + } finally { + setDetectLoading(false); + setTimeout(() => setMsg(''), 4000); + } + }; + + return ( +
+ {msg &&
{msg}
} + + {/* Drift detection */} +
+
+

Ontology Drift Reports

+ +
+

+ Drift detection samples recent data and suggests additions or changes to the graph schema. + Review and approve or reject proposals below. +

+ {loading ?
: ( +
+ {driftReports.map(r => ( +
+
+
+ {r.status || 'pending'} + {r.new_entity_types?.length || 0} new types +
+

+ {r.summary || 'Drift report — review suggested schema changes.'} +

+
+
+ + +
+
+ ))} + {driftReports.length === 0 && ( +
No pending drift reports. Run drift detection above.
+ )} +
+ )} +
+ + {/* Manual proposals */} +
+

Manual Schema Proposals

+
+ {proposals.map(o => ( +
+
+ {o.type} + {o.name} +
+
+ + +
+
+ ))} + {proposals.length === 0 && ( +
No pending manual proposals.
+ )} +
+
+
+ ); +}; + +const WorkersTab = ({ token }: { token: string | null }) => { + const [tasks, setTasks] = useState(null); + const [health, setHealth] = useState(null); + const [loading, setLoading] = useState(true); + + const fetchAll = useCallback(async () => { + setLoading(true); + try { + const [taskRes, healthRes] = await Promise.all([ + fetch(`${API_BASE}/admin/tasks`, { headers: { Authorization: `Bearer ${token}` } }), + fetch(`${API_BASE}/system/health`, { headers: { Authorization: `Bearer ${token}` } }), + ]); + if (taskRes.ok) setTasks(await taskRes.json()); + if (healthRes.ok) setHealth(await healthRes.json()); + } finally { setLoading(false); } + }, [token]); + + useEffect(() => { fetchAll(); }, [fetchAll]); + + return ( +
+
+
+

Celery Worker Status

+ +
+ {loading ?
: ( +
+ {[ + { label:'Active Tasks', value: tasks?.active_tasks ?? tasks?.active ?? 0 }, + { label:'Queued Tasks', value: tasks?.queued_tasks ?? tasks?.reserved ?? 0 }, + { label:'Completed', value: tasks?.completed_tasks ?? tasks?.total ?? 0 }, + { label:'Failed', value: tasks?.failed_tasks ?? 0 }, + ].map(m => ( +
+
{m.label}
+
{m.value}
+
+ ))} +
+ )} +
+ {health && ( +
+

Service Health

+
+ {Object.entries(health).map(([k, v]: any) => { + const ok = v === true || v === 'ok' || v === 'connected' || v === 'healthy'; + return ( +
+ +
+
{k}
+
{String(v)}
+
+
+ ); + })} +
+
+ )} +
+ ); +}; + +const EnrichmentTab = ({ token }: { token: string | null }) => { + const [loading, setLoading] = useState(false); + const [result, setResult] = useState(null); + const [batchSize, setBatchSize] = useState(20); + const [minConnections, setMinConnections] = useState(1); + const [driftLoading, setDriftLoading] = useState(false); + const [driftResult, setDriftResult] = useState(null); + + const runEnrichment = async () => { + setLoading(true); setResult(null); + try { + const res = await fetch(`${API_BASE}/entities/enrich`, { + method:'POST', + headers:{ Authorization:`Bearer ${token}`, 'Content-Type':'application/json' }, + body: JSON.stringify({ batch_size: batchSize, min_connections: minConnections }) + }); + if (res.ok) setResult(await res.json()); + } finally { setLoading(false); } + }; + + const runDrift = async () => { + setDriftLoading(true); setDriftResult(null); + try { + const res = await fetch(`${API_BASE}/ontology/drift/detect`, { + method:'POST', headers:{ Authorization:`Bearer ${token}` } + }); + if (res.ok) setDriftResult(await res.json()); + } finally { setDriftLoading(false); } + }; + + return ( +
+ {/* Entity Enrichment */} +
+

Entity Enrichment

+

+ Synthesize rich LLM-generated profiles for all eligible entities by scanning their neighborhood context in the graph. +

+
+
+ + setBatchSize(Number(e.target.value))} + className="search-input w-full"/> +
+
+ + setMinConnections(Number(e.target.value))} + className="search-input w-full"/> +
+
+ + {result && ( +
+ ✓ {result.message || `Enriched ${result.enriched_count ?? '?'} entities`} +
+ )} +
+ + {/* Drift Detection */} +
+

Ontology Drift Detection

+

+ Analyse recent data samples to detect schema evolution and generate a drift report for admin review. +

+ + {driftResult && ( +
+ ✓ Drift report created. ID: {driftResult.report_id || driftResult.id || '—'} → Review in Ontology Governance tab. +
+ )} +
+
+ ); +}; + +const SandboxTab = ({ token }: { token: string | null }) => { + const [loading, setLoading] = useState(false); + const [msg, setMsg] = useState(''); + + const trigger = async (endpoint: string, label: string) => { + setLoading(true); setMsg(''); + try { + const res = await fetch(`${API_BASE}${endpoint}`, { + method:'POST', headers:{ Authorization:`Bearer ${token}` } + }); + setMsg(res.ok ? `✓ ${label} dispatched to Celery worker.` : `✗ Failed to trigger ${label}.`); + } catch { + setMsg(`✗ Network error.`); + } finally { setLoading(false); } + }; + + return ( +
+

MiroFish God-Mode Sandbox

+

+ Control the simulation loops that connect Knowledge Graph entities into living agents. +

+ {msg && ( +
+ {msg} +
+ )} +
+ {[ + { endpoint:'/v1/simulation/generate_personas', label:'Generate Agent Personas', icon:, + desc:'Converts raw graph nodes into living psychological profiles for agent simulation.' }, + { endpoint:'/v1/simulation/tick', label:'Force Simulation Tick', icon:, + desc:'Forces agents to read their local graph memory and output a new interaction edge.' }, + ].map(item => ( +
+ +

{item.desc}

+
+ ))} +
+
+ ); +}; + +// ─── Main Dashboard ─────────────────────────────────────────────────────────── +export default function AdminDashboard() { + const { token, user } = useAuth(); + const [activeTab, setActiveTab] = useState('overview'); + const [stats, setStats] = useState(null); + const [health, setHealth] = useState(null); + const [error, setError] = useState(null); + + const fetchOverview = useCallback(async () => { + if (!token) return; + try { + const [statsRes, healthRes] = await Promise.all([ + fetch(`${API_BASE}/admin/stats`, { headers: { Authorization: `Bearer ${token}` } }), + fetch(`${API_BASE}/system/health`, { headers: { Authorization: `Bearer ${token}` } }), + ]); + if (statsRes.ok) setStats(await statsRes.json()); + if (healthRes.ok) setHealth(await healthRes.json()); + } catch (err: any) { + setError(err.message); + } + }, [token]); + + useEffect(() => { fetchOverview(); }, [fetchOverview]); + + if (user && user.username !== 'admin' && !user.scopes?.includes('admin')) { + return ( +
+ +

Access Denied

+

You need administrative privileges to view this page.

+
+ ); + } + + const TABS = [ + { id:'overview', label:'Overview', icon: }, + { id:'users', label:'Users', icon: }, + { id:'documents', label:'Documents', icon: }, + { id:'graph', label:'Graph CRUD', icon: }, + { id:'ontology', label:'Ontology', icon: }, + { id:'workers', label:'Workers', icon: }, + { id:'enrichment', label:'Enrichment / Drift', icon: }, + { id:'sandbox', label:'God-Mode Sandbox', icon: }, + ]; + + return ( +
+ {/* Header */} +
+
+

Admin Control Center

+

Manage graph data, workers, users, and platform configuration

+
+ {error && ( +
+ {error} +
+ )} +
+ +
+ {/* Sidebar nav */} +
+ +
+ + {/* Main content */} +
+ {activeTab === 'overview' && } + {activeTab === 'users' && } + {activeTab === 'documents' && } + {activeTab === 'graph' && } + {activeTab === 'ontology' && } + {activeTab === 'workers' && } + {activeTab === 'enrichment' && } + {activeTab === 'sandbox' && } +
+
+ + +
+ ); +} diff --git a/frontend-react/src/views/Home.tsx b/frontend-react/src/views/Home.tsx new file mode 100644 index 0000000000000000000000000000000000000000..e072bdae30227ec69ca323e991a12ac1b9b00d38 --- /dev/null +++ b/frontend-react/src/views/Home.tsx @@ -0,0 +1,692 @@ +import React, { useEffect, useState, useRef } from 'react'; +import { useAuth } from '../context/AuthContext'; +import { Network, Server, Cpu, Database, Activity, ArrowRight, Zap, GitBranch, MessageSquare, TrendingUp, RefreshCw } from 'lucide-react'; + +const API_BASE = import.meta.env.VITE_API_BASE_URL || 'http://localhost:8000/api'; + +// Animated counter hook +function useCountUp(target: number, duration = 1200) { + const [val, setVal] = useState(0); + const prev = useRef(0); + useEffect(() => { + if (target === 0) { setVal(0); return; } + const start = prev.current; + const diff = target - start; + const startTime = performance.now(); + const tick = (now: number) => { + const t = Math.min((now - startTime) / duration, 1); + const ease = 1 - Math.pow(1 - t, 3); + setVal(Math.round(start + diff * ease)); + if (t < 1) requestAnimationFrame(tick); + else prev.current = target; + }; + requestAnimationFrame(tick); + }, [target]); + return val; +} + +const StatCounter: React.FC<{ value: number | string; label: string; suffix?: string }> = ({ value, label, suffix = '' }) => { + const numVal = typeof value === 'number' ? value : parseInt(String(value)) || 0; + const animated = useCountUp(numVal); + return ( +
+
{typeof value === 'number' ? animated : value}{suffix}
+
{label}
+
+ ); +}; + +const Home: React.FC = () => { + const { token, logout, user } = useAuth(); + const [health, setHealth] = useState(null); + const [stats, setStats] = useState(null); + const [myStats, setMyStats] = useState(null); + const [loading, setLoading] = useState(true); + const [lastRefresh, setLastRefresh] = useState(new Date()); + + const fetchData = async () => { + setLoading(true); + try { + const [healthRes, statsRes, myStatsRes] = await Promise.all([ + fetch(`${API_BASE}/system/health`), + fetch(`${API_BASE}/system/stats`, { headers: { Authorization: `Bearer ${token}` } }), + fetch(`${API_BASE}/system/my-stats`, { headers: { Authorization: `Bearer ${token}` } }).catch(() => null), + ]); + if (statsRes.status === 401) { logout(); return; } + if (healthRes.ok) setHealth(await healthRes.json()); + if (statsRes.ok) setStats(await statsRes.json()); + if (myStatsRes?.ok) setMyStats(await myStatsRes.json()); + } catch (err) { + console.error('Failed to fetch system data', err); + } finally { + setLoading(false); + setLastRefresh(new Date()); + } + }; + + useEffect(() => { + fetchData(); + const interval = setInterval(fetchData, 30000); + return () => clearInterval(interval); + }, [token]); + + const isOnline = (v: boolean | undefined) => v === true; + + const systemOk = health ? (isOnline(health.neo4j_connected) && isOnline(health.redis_connected)) : false; + + return ( +
+ + {/* ── Hero ─────────────────────────────────────── */} +
+
+
CORTEX PLATFORM
+

+ Agentic Knowledge
+ Intelligence +

+

+ Production-grade knowledge graph · Real-time extraction · Multi-hop reasoning +

+ +
+ +
+
+ + + {loading ? 'CHECKING...' : systemOk ? 'SYSTEM OPERATIONAL' : 'SYSTEM DEGRADED'} + + +
+ +
+ {[ + { label: 'NEO4J', ok: isOnline(health?.neo4j_connected) }, + { label: 'REDIS', ok: isOnline(health?.redis_connected) }, + { label: `${health?.workers_active ?? 0} WORKERS`, ok: true, neutral: true }, + { label: 'API', ok: true }, + ].map(s => ( +
+ + {s.label} + + {s.neutral ? 'ACTIVE' : s.ok ? 'CONNECTED' : 'OFFLINE'} + +
+ ))} +
+
+
+ + {/* ── Platform Metrics ─────────────────────────── */} +
+
PLATFORM METRICS
+
+ +
+ +
+ +
+ +
+
+
+ {stats?.ontology_version ?? '—'} +
+
ONTOLOGY VER
+
+
+
+ + {/* ── Main Grid ────────────────────────────────── */} +
+ + {/* Quick Actions */} +
+
+ QUICK ACTIONS +
+
+ {[ + { href: '/process', icon: , label: 'INGEST DOCUMENTS', desc: 'Upload PDFs, text, or crawl URLs' }, + { href: '/interact', icon: , label: 'QUERY KNOWLEDGE', desc: 'Ask questions across the graph' }, + { href: '/simulate', icon: , label: 'EXPLORE NODES', desc: 'Interactive D3 force visualization' }, + { href: '/ontology', icon: , label: 'MANAGE ONTOLOGY', desc: 'Edit schema & run AI refinement' }, + { href: '/insights', icon: ,label: 'INSIGHTS', desc: 'Quality metrics & AI reports' }, + ].map(a => ( + + {a.icon} +
+
{a.label}
+
{a.desc}
+
+ +
+ ))} +
+
+ + {/* Right column: My Activity + Feature cards */} +
+ + {/* User Activity */} +
+
+ MY ACTIVITY + {user && @{user.username}} +
+
+
+
{myStats?.conversation_count ?? '—'}
+
CONVERSATIONS
+
+
+
{myStats?.message_count ?? '—'}
+
QUERIES SENT
+
+
+
{myStats?.last_active ? new Date(myStats.last_active).toLocaleDateString() : '—'}
+
LAST ACTIVE
+
+
+ {!myStats && ( +
+ Start querying the graph to build your activity history. +
+ )} +
+ + {/* Graph intelligence card */} +
+
+ KNOWLEDGE GRAPH +
+
+ Neo4j-powered semantic knowledge graph. Multi-hop reasoning, entity enrichment, and community detection built in. +
+
+ {['Entities', 'Relationships', 'Communities', 'Graph Export'].map(tag => ( + {tag} + ))} +
+
+
+
+ + {/* ── Feature Showcase ─────────────────────────── */} +
+
PLATFORM CAPABILITIES
+
+ {[ + { + icon: , + title: 'DOCUMENT INGESTION', + desc: 'Ingest PDFs, text files, Markdown, and web URLs. Celery workers extract entities and relationships into the knowledge graph automatically via LLM pipelines.', + color: '#2563eb', + }, + { + icon: , + title: 'GRAPH INTELLIGENCE', + desc: 'Neo4j-powered knowledge graph with rich entity relationships. Query across documents globally or per-source with full ontology control.', + color: '#7c3aed', + }, + { + icon: , + title: 'AGENTIC LOGIC', + desc: 'Multi-step ReACT reasoning agent that searches the graph, retrieves relevant chunks, and streams answers with confidence scoring in real time.', + color: '#059669', + }, + { + icon: , + title: 'LLM-AS-JUDGE', + desc: 'Inline faithfulness evaluation using heuristic scoring. Detects hallucination risk, context precision, and answer quality on every response.', + color: '#d97706', + }, + { + icon: , + title: 'LIVE SIMULATION', + desc: 'Interactive D3 force graph with color-coded entity types, physics controls, fullscreen mode, PNG export, and node detail modals.', + color: '#dc2626', + }, + { + icon: , + title: 'ONTOLOGY DRIFT', + desc: 'Automated schema drift detection that spots when new data no longer fits the current ontology. Propose and approve schema expansions.', + color: '#0891b2', + }, + ].map(f => ( +
+
{f.icon}
+
{f.title}
+
{f.desc}
+
+ ))} +
+
+ + {/* Footer bar */} +
+ CORTEX_PLATFORM + + Last refreshed: {lastRefresh.toLocaleTimeString()} + + + v{health ? '1.0' : '—'} · Neo4j + Redis + Celery + +
+ + +
+ ); +}; + +export default Home; diff --git a/frontend-react/src/views/InsightsView.tsx b/frontend-react/src/views/InsightsView.tsx new file mode 100644 index 0000000000000000000000000000000000000000..bdbdebf952a41640f1d61c0fa7eefca15d6e96cd --- /dev/null +++ b/frontend-react/src/views/InsightsView.tsx @@ -0,0 +1,890 @@ +import React, { useState, useEffect, useCallback } from 'react'; +import { useAuth } from '../context/AuthContext'; +import { BarChart2, TrendingUp, AlertTriangle, CheckCircle, RefreshCw, Zap, FileText, GitCommit, MessageSquare } from 'lucide-react'; + +const API_BASE = import.meta.env.VITE_API_BASE_URL || 'http://localhost:8000/api'; + +interface EvalDashboard { + total_evaluations: number; + avg_overall_score: number; + avg_faithfulness: number; + avg_relevancy: number; + hallucination_rate: number; + trend_data: TrendPoint[]; +} + +interface TrendPoint { + timestamp: string; + overall_score: number; + faithfulness: number; + answer_relevancy: number; + hallucination_detected: boolean; + document_id?: string; +} + +interface EvalForm { + question: string; + answer: string; + contexts: string; +} + +// Helper: build markdown from report result +function buildReportMarkdown(result: any, topic: string): string { + const lines: string[] = []; + lines.push(`# ${result.topic || topic}`); + lines.push(''); + if (result.confidence !== undefined) { + lines.push(`**Confidence:** ${(result.confidence * 100).toFixed(1)}%`); + } + if (result.tool_calls_made !== undefined) { + lines.push(`**Tool calls:** ${result.tool_calls_made}`); + } + lines.push(`**Generated:** ${new Date().toLocaleString()}`); + lines.push(''); + + if (result.executive_summary) { + lines.push('## Executive Summary'); + lines.push(''); + lines.push(result.executive_summary); + lines.push(''); + } + + if (result.sections && typeof result.sections === 'object' && !Array.isArray(result.sections)) { + Object.entries(result.sections).forEach(([title, content], i) => { + lines.push(`## ${i + 1}. ${title}`); + lines.push(''); + lines.push(String(content)); + lines.push(''); + }); + } else if (Array.isArray(result.sections)) { + result.sections.forEach((s: any, i: number) => { + lines.push(`## ${i + 1}. ${s.title || ''}`); + lines.push(''); + lines.push(s.content || ''); + lines.push(''); + }); + } else if (!result.sections) { + lines.push(result.report || result.content || result.markdown || JSON.stringify(result, null, 2)); + lines.push(''); + } + + if (result.key_entities && result.key_entities.length > 0) { + lines.push('## Key Entities'); + lines.push(''); + lines.push(result.key_entities.join(', ')); + } + + return lines.join('\n'); +} + +const InsightsView: React.FC = () => { + const { token } = useAuth(); + const [dashboard, setDashboard] = useState(null); + const [loading, setLoading] = useState(false); + const [evalForm, setEvalForm] = useState({ question: '', answer: '', contexts: '' }); + const [evalResult, setEvalResult] = useState(null); + const [evalLoading, setEvalLoading] = useState(false); + const [communities, setCommunities] = useState([]); + const [communityLoading, setCommunityLoading] = useState(false); + const [activeTab, setActiveTab] = useState<'metrics' | 'evaluate' | 'communities' | 'export' | 'report' | 'graph-update' | 'entity-chat'>('metrics'); + + // Report Agent state + const [reportTopic, setReportTopic] = useState(''); + const [reportDepth, setReportDepth] = useState(3); + const [reportResult, setReportResult] = useState(null); + const [reportLoading, setReportLoading] = useState(false); + const [reportTimestamp, setReportTimestamp] = useState(null); + const [copyDone, setCopyDone] = useState(false); + + // Graph Update state + const [updateText, setUpdateText] = useState(''); + const [updateResult, setUpdateResult] = useState(null); + const [updateLoading, setUpdateLoading] = useState(false); + + // Entity Chat state + const [entities, setEntities] = useState([]); + const [selectedEntity, setSelectedEntity] = useState(''); + const [entityContext, setEntityContext] = useState(''); + const [chatMsg, setChatMsg] = useState(''); + const [chatHistory, setChatHistory] = useState<{role: string; content: string}[]>([]); + const [chatLoading, setChatLoading] = useState(false); + + const fetchDashboard = useCallback(async () => { + setLoading(true); + try { + const res = await fetch(`${API_BASE}/eval/dashboard?limit=200`, { + headers: { Authorization: `Bearer ${token}` } + }); + if (res.ok) setDashboard(await res.json()); + } catch (e) { console.error(e); } + setLoading(false); + }, [token]); + + const fetchCommunities = useCallback(async () => { + setCommunityLoading(true); + try { + const res = await fetch(`${API_BASE}/graph/communities?limit=30`, { + headers: { Authorization: `Bearer ${token}` } + }); + if (res.ok) { + const data = await res.json(); + setCommunities(data.communities || []); + } + } catch (e) { console.error(e); } + setCommunityLoading(false); + }, [token]); + + const fetchEntities = useCallback(async () => { + try { + const res = await fetch(`${API_BASE}/admin/graph/nodes?query=&limit=200`, { + headers: { Authorization: `Bearer ${token}` } + }); + if (res.ok) { + const data = await res.json(); + setEntities((data.nodes || []).slice(0, 100)); + } + } catch {} + }, [token]); + + useEffect(() => { + fetchDashboard(); + fetchCommunities(); + fetchEntities(); + }, [fetchDashboard, fetchCommunities, fetchEntities]); + + const runEval = async () => { + if (!evalForm.question || !evalForm.answer || !evalForm.contexts) return; + setEvalLoading(true); + setEvalResult(null); + try { + const res = await fetch(`${API_BASE}/eval/score`, { + method: 'POST', + headers: { 'Content-Type': 'application/json', Authorization: `Bearer ${token}` }, + body: JSON.stringify({ + question: evalForm.question, + answer: evalForm.answer, + contexts: evalForm.contexts.split('\n---\n').map(c => c.trim()).filter(Boolean) + }) + }); + if (res.ok) { + setEvalResult(await res.json()); + fetchDashboard(); // Refresh metrics + } + } catch (e) { console.error(e); } + setEvalLoading(false); + }; + + const runReport = async () => { + if (!reportTopic.trim()) return; + setReportLoading(true); setReportResult(null); + try { + const res = await fetch(`${API_BASE}/report`, { + method: 'POST', + headers: { 'Content-Type': 'application/json', Authorization: `Bearer ${token}` }, + body: JSON.stringify({ topic: reportTopic, depth: reportDepth }) + }); + if (res.ok) { + setReportResult(await res.json()); + setReportTimestamp(new Date()); + } + } catch (e) { console.error(e); } + setReportLoading(false); + }; + + const runGraphUpdate = async () => { + if (!updateText.trim()) return; + setUpdateLoading(true); setUpdateResult(null); + try { + const res = await fetch(`${API_BASE}/graph/update`, { + method: 'POST', + headers: { 'Content-Type': 'application/json', Authorization: `Bearer ${token}` }, + body: JSON.stringify({ text: updateText }) + }); + if (res.ok) setUpdateResult(await res.json()); + } catch (e) { console.error(e); } + setUpdateLoading(false); + }; + + const sendEntityChat = async () => { + if (!selectedEntity || !chatMsg.trim()) return; + const userMsg = { role: 'user', content: chatMsg }; + setChatHistory(h => [...h, userMsg]); + setChatMsg(''); + setChatLoading(true); + try { + const res = await fetch(`${API_BASE}/entities/${encodeURIComponent(selectedEntity)}/chat`, { + method: 'POST', + headers: { 'Content-Type': 'application/json', Authorization: `Bearer ${token}` }, + body: JSON.stringify({ message: userMsg.content }) + }); + if (res.ok) { + const data = await res.json(); + setChatHistory(h => [...h, { role: 'assistant', content: data.response || data.answer || JSON.stringify(data) }]); + } + } catch (e) { console.error(e); } + setChatLoading(false); + }; + + const assignCommunities = async () => { + setCommunityLoading(true); + try { + const res = await fetch(`${API_BASE}/graph/communities/assign`, { + method: 'POST', + headers: { Authorization: `Bearer ${token}` } + }); + if (res.ok) { + const data = await res.json(); + alert(`✓ ${data.message}`); + fetchCommunities(); + } + } catch (e) { console.error(e); } + setCommunityLoading(false); + }; + + const exportGraph = async (fmt: string) => { + const res = await fetch(`${API_BASE}/graph/export?format=${fmt}`, { + headers: { Authorization: `Bearer ${token}` } + }); + if (!res.ok) return; + const blob = await res.blob(); + const ext = fmt === 'json' ? 'json' : fmt === 'cypher' ? 'cypher' : 'graphml'; + const url = URL.createObjectURL(blob); + const a = document.createElement('a'); + a.href = url; a.download = `graph_export.${ext}`; a.click(); + URL.revokeObjectURL(url); + }; + + const handleCopyReport = () => { + if (!reportResult) return; + const text = buildReportMarkdown(reportResult, reportTopic); + navigator.clipboard.writeText(text).then(() => { + setCopyDone(true); + setTimeout(() => setCopyDone(false), 2000); + }); + }; + + const handleDownloadReport = () => { + if (!reportResult) return; + const text = buildReportMarkdown(reportResult, reportTopic); + const blob = new Blob([text], { type: 'text/markdown' }); + const url = URL.createObjectURL(blob); + const a = document.createElement('a'); + a.href = url; + a.download = `report_${reportTopic.slice(0, 30).replace(/\s+/g, '_')}.md`; + a.click(); + URL.revokeObjectURL(url); + }; + + const score2color = (s: number) => { + if (s >= 0.8) return '#16a34a'; + if (s >= 0.6) return '#d97706'; + return '#dc2626'; + }; + const score2label = (s: number) => s >= 0.8 ? 'HIGH' : s >= 0.6 ? 'MEDIUM' : 'LOW'; + + const ScoreBar: React.FC<{ label: string; value: number }> = ({ label, value }) => ( +
+
+ {label} + {(value * 100).toFixed(1)}% +
+
+
+
+
+ ); + + const confidenceBadgeColor = (c: number) => + c >= 0.8 ? '#16a34a' : c >= 0.6 ? '#d97706' : '#dc2626'; + + return ( +
+
+
+

INSIGHTS HQ

+

QUALITY METRICS // EVAL DASHBOARD // GRAPH INTELLIGENCE

+
+
+ +
+
+ + {/* Tab Nav */} +
+ {([ + { id: 'metrics', label: 'METRICS' }, + { id: 'evaluate', label: 'EVALUATE' }, + { id: 'communities', label: 'COMMUNITIES' }, + { id: 'export', label: 'EXPORT' }, + { id: 'report', label: '⚡ REPORT' }, + { id: 'graph-update', label: '↑ LIVE UPDATE' }, + { id: 'entity-chat', label: '💬 ENTITY CHAT' }, + ] as const).map(t => ( + + ))} +
+ + {/* ── METRICS TAB ── */} + {activeTab === 'metrics' && ( +
+ {loading ? ( +
LOADING METRICS...
+ ) : !dashboard || dashboard.total_evaluations === 0 ? ( +
+ +

NO EVALUATION DATA YET

+

+ Use the EVALUATE tab to score Q&A pairs and build your quality history. +

+
+ ) : ( + <> + {/* KPI Cards */} +
+ {[ + { label: 'TOTAL EVALS', value: dashboard.total_evaluations, raw: true, icon: }, + { label: 'AVG QUALITY', value: dashboard.avg_overall_score, icon: }, + { label: 'FAITHFULNESS', value: dashboard.avg_faithfulness, icon: }, + { label: 'HALLUCINATION RATE', value: dashboard.hallucination_rate, invert: true, icon: }, + ].map(card => ( +
0.3 : false) ? '#fff5f5' : '#fff' }}> +
+ {card.label} + {card.icon} +
+
+ {card.raw ? card.value : `${((card.value as number) * 100).toFixed(1)}%`} +
+
+ ))} +
+ + {/* Score Breakdown */} +
+

METRIC BREAKDOWN

+ + + + +
+ + {/* Trend Table */} + {dashboard.trend_data.length > 0 && ( +
+

EVALUATION HISTORY (LATEST {Math.min(dashboard.trend_data.length, 20)})

+
+ + + + {['TIMESTAMP', 'QUALITY', 'FAITHFULNESS', 'RELEVANCY', 'HALLUCINATION'].map(h => ( + + ))} + + + + {dashboard.trend_data.slice(0, 20).map((p, i) => ( + + + + + + + + ))} + +
{h}
{p.timestamp}{(p.overall_score * 100).toFixed(1)}%{(p.faithfulness * 100).toFixed(1)}%{(p.answer_relevancy * 100).toFixed(1)}% + + {p.hallucination_detected ? 'YES' : 'NO'} + +
+
+
+ )} + + )} +
+ )} + + {/* ── EVALUATE TAB ── */} + {activeTab === 'evaluate' && ( +
+
+

+ + SCORE A Q&A PAIR +

+

+ Paste a question, its generated answer, and the retrieved context chunks (separate chunks with "---"). +

+ +
+
+ +