| 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") | |
| 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") | |