/
ncit
/
coderagsystem
Обзор
Документация
Войти
/
ncit
/
coderagsystem
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/rag/core/errors.py
29 строк
548 B
ncit
Split daemon/TUI, add storage layer, auth tests, eval harness
21 май 2026, 18:48
21 май 2026, 18:48
bd736d2
Код
Авторство
О чём код?
"""Custom error hierarchy for the RAG system.""" class RAGError(Exception): """Base error for all RAG operations.""" class EmbeddingError(RAGError): """Error during embedding generation.""" class VectorStoreError(RAGError): """Error during vector store operations.""" class IndexError(RAGError): """Error during indexing.""" class LSPError(RAGError): """Error during LSP operations.""" class ConfigError(RAGError): """Error in configuration.""" class RerankerError(RAGError): """Error during reranking."""