@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
21 lines (20 loc) • 815 B
JavaScript
/**
* Error definitions for the NeuroLink AutoResearch system.
*/
import { createErrorFactory } from "../core/infrastructure/baseError.js";
export const AutoresearchErrorCodes = {
CONFIG_INVALID: "AUTORESEARCH-001",
STATE_CORRUPT: "AUTORESEARCH-002",
STATE_NOT_FOUND: "AUTORESEARCH-003",
REPO_NOT_FOUND: "AUTORESEARCH-004",
BRANCH_ERROR: "AUTORESEARCH-005",
PATH_VIOLATION: "AUTORESEARCH-006",
COMMIT_REJECTED: "AUTORESEARCH-007",
EXPERIMENT_TIMEOUT: "AUTORESEARCH-008",
EXPERIMENT_FAILED: "AUTORESEARCH-009",
PARSE_FAILED: "AUTORESEARCH-010",
RESULTS_WRITE_FAILED: "AUTORESEARCH-011",
REVERT_FAILED: "AUTORESEARCH-012",
WORKER_NOT_INITIALIZED: "AUTORESEARCH-013",
};
export const AutoresearchError = createErrorFactory("Autoresearch", AutoresearchErrorCodes);