File size: 216 Bytes
c7256ee
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from typing import Any

state: dict[str, Any] = {}
# this file defines the state dict
# think of this as the runtime object created after startup

REQUIRED_STATE_KEYS = ("index", "retriever", "rag_engine", "models")