Replies: 1 comment
-
|
확인했습니다! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
GovOn 핵심 아키텍처 다이어그램
FigJam으로 생성된 아키텍처 다이어그램입니다. 편집하려면 FigJam 링크를 클릭하세요.
1. Multi-LoRA Agentic Runtime
EXAONE 4.0-32B-AWQ 단일 모델 + Multi-LoRA + LangGraph approval-gated runtime + CLI
FigJam에서 편집
2. Data Pipeline — LoRA Training Flow
AI Hub 데이터 수집 → 전처리 → QLoRA 학습 → HF Hub 배포
FigJam에서 편집
3. LangGraph Approval-Gated Agent Flow
6-node StateGraph: session_load → planner → approval_wait → tool_execute → synthesis → persist
FigJam에서 편집
Mermaid 소스 (README 삽입용)
아래 Mermaid 코드를 GitHub README에 직접 삽입할 수 있습니다.
Architecture
```mermaid
flowchart LR
subgraph CLI["CLI Layer"]
A["govon CLI"] -->|"query"| B["GovOnClient"]
B -->|"SSE stream"| C["Streaming Status"]
B -->|"approve/reject"| D["Approval UI"]
end
subgraph API["FastAPI Runtime"]
E["/v2/agent/stream"] --> F["LangGraph StateGraph"]
end
subgraph Graph["LangGraph Approval-Gated Runtime"]
G["session_load"] --> H["planner"]
H --> I["approval_wait"]
I -->|"approved"| J["tool_execute"]
I -->|"rejected"| L["persist"]
J --> K["synthesis"]
K --> L
end
subgraph Model["EXAONE 4.0-32B-AWQ Multi-LoRA"]
M["Base Model"] -->|"tool calling"| H
N["LoRA 1 civil"| J
O["LoRA 2 legal"] --> J
end
B --> E
F --> G
```
Beta Was this translation helpful? Give feedback.
All reactions