Spaces:
Running
Running
File size: 503 Bytes
55f1010 ebb8326 55f1010 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
"""RAG node - Disabled in production (no vector database)."""
from src.state import GraphState
from src.utils.logging import print_log
def knowledge_rag_node(state: GraphState) -> dict:
"""
RAG node disabled in production (no vector database).
This is a placeholder that should never be called due to router changes.
"""
print_log(" [RAG] Disabled in production")
return {
"context": "",
"raw_response": "RAG not available",
"answer": "A"
}
|