Honeywell HC900을 Modbus TCP로 직접 폴링 → gRPC → C# 크롤러 → PostgreSQL. 기존 Experion OPC UA 데이터 경로를 HC900 직접 통신으로 대체. - industrial-comm/cpp: C++ Modbus 게이트웨이 (gRPC 서버) - src: C# .NET 8 ASP.NET Core 크롤러 + 웹 UI (3-Layer) - mcp-server: Python FastMCP (RAG/NL2SQL/P&ID) - 다중 컨트롤러(N-Controller) 지원 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
9 lines
380 B
Python
9 lines
380 B
Python
"""KB 문서 파서 모음.
|
|
|
|
각 모듈은 `parse(path: str) -> list[dict]` 인터페이스를 제공한다.
|
|
반환 청크는 다음 키를 가진다:
|
|
text: str 임베딩 대상 본문 (보통 200~1500자)
|
|
chunk_kind: str row | sheet | section | table | page | paragraph | heading
|
|
locator: str 사람 가독 위치 문자열 (예: "sheet=Pump-A; row=12")
|
|
"""
|