ERP-DocIQ / backend /app /erp /__init__.py
kenmandal's picture
Deploy latest: ERP DocIQ NLQ chatbot + reasoning models (MiniCPM3-4B/Command R7B) + ERP fine-tuning + extreme OCR docs
082d661 verified
Raw
History Blame Contribute Delete
620 Bytes
"""Simulated ERP knowledgebase + the ERP DocIQ chatbot (NLQ, summary, reasons, analytics).
A deterministic, offline-first stand-in for a real retail ERP (SAP/Oracle/NetSuite).
`data.py` seeds a realistic SQLite warehouse; `chat.py` answers natural-language
questions over it (text-to-SQL NLQ + analytics + summarization), routed to a small
reasoning model (OpenBMB MiniCPM3-4B) with a deterministic offline fallback.
"""
from .data import ErpWarehouse, ERP_SCHEMA_DOC, get_warehouse
from .chat import ErpChat, answer_question
__all__ = ["ErpWarehouse", "ERP_SCHEMA_DOC", "get_warehouse", "ErpChat", "answer_question"]