|
| 1 | +# Gallery |
| 2 | + |
| 3 | +A visual tour of Agentic Forge's components and features. |
| 4 | + |
| 5 | +## Forge UI - Chat Interface |
| 6 | + |
| 7 | +The main user interface for interacting with AI agents. Built with Vue.js and PrimeVue. |
| 8 | + |
| 9 | +### Welcome Screen |
| 10 | + |
| 11 | +Clean landing page with options to start a new conversation or import an existing one. |
| 12 | + |
| 13 | + |
| 14 | + |
| 15 | +### Chat with Tool Calls |
| 16 | + |
| 17 | +Watch the AI use tools in real-time. Expandable tool call panels show arguments and results. |
| 18 | + |
| 19 | + |
| 20 | + |
| 21 | +### Extended Thinking |
| 22 | + |
| 23 | +Models with reasoning capabilities (like DeepSeek R1) show their thinking process. |
| 24 | + |
| 25 | + |
| 26 | + |
| 27 | +### Multi-Model Support |
| 28 | + |
| 29 | +Switch between 100+ models from OpenRouter. See pricing and capabilities at a glance. |
| 30 | + |
| 31 | + |
| 32 | + |
| 33 | +### Parallel Tool Calls |
| 34 | + |
| 35 | +Advanced queries trigger multiple tool calls simultaneously. The UI tracks each one. |
| 36 | + |
| 37 | + |
| 38 | + |
| 39 | +--- |
| 40 | + |
| 41 | +## Forge Armory - MCP Gateway |
| 42 | + |
| 43 | +The protocol gateway that aggregates MCP servers and exposes them through a unified interface. |
| 44 | + |
| 45 | +### Dashboard Overview |
| 46 | + |
| 47 | +At-a-glance metrics: connected backends, available tools, call statistics, and latency. |
| 48 | + |
| 49 | + |
| 50 | + |
| 51 | +### Backend Management |
| 52 | + |
| 53 | +Add, configure, enable/disable MCP server backends. Each backend contributes tools to the unified registry. |
| 54 | + |
| 55 | + |
| 56 | + |
| 57 | +### Tool Registry |
| 58 | + |
| 59 | +Browse all available tools across backends. Search by name, filter by backend, view schemas. |
| 60 | + |
| 61 | + |
| 62 | + |
| 63 | +### Metrics & Observability |
| 64 | + |
| 65 | +Track tool call history, latency, success rates. Filter by time range, tool, or backend. |
| 66 | + |
| 67 | + |
| 68 | + |
| 69 | +--- |
| 70 | + |
| 71 | +## Development Environment |
| 72 | + |
| 73 | +### tmux-based Development |
| 74 | + |
| 75 | +Native development with hot reload. All services running in organized tmux panes. |
| 76 | + |
| 77 | + |
| 78 | + |
| 79 | +The `dev-start.sh` script launches: |
| 80 | +- **forge-ui** - Frontend with Vite hot reload |
| 81 | +- **forge-orchestrator** - Python backend with auto-restart |
| 82 | +- **forge-armory** - Gateway with live config |
| 83 | +- **MCP servers** - Weather and web search |
| 84 | + |
| 85 | +--- |
| 86 | + |
| 87 | +## Architecture |
| 88 | + |
| 89 | +``` |
| 90 | +┌─────────────────────────────────────────────────────────────┐ |
| 91 | +│ FORGE UI │ |
| 92 | +│ (localhost:4040) │ |
| 93 | +│ Vue.js chat interface with model selection │ |
| 94 | +└─────────────────────────────┬───────────────────────────────┘ |
| 95 | + │ WebSocket/SSE |
| 96 | + ▼ |
| 97 | +┌─────────────────────────────────────────────────────────────┐ |
| 98 | +│ ORCHESTRATOR │ |
| 99 | +│ (localhost:4041) │ |
| 100 | +│ LLM conversation loop with tool routing │ |
| 101 | +└─────────────────────────────┬───────────────────────────────┘ |
| 102 | + │ MCP Protocol |
| 103 | + ▼ |
| 104 | +┌─────────────────────────────────────────────────────────────┐ |
| 105 | +│ ARMORY │ |
| 106 | +│ (localhost:4042) │ |
| 107 | +│ Protocol gateway aggregating MCP backends │ |
| 108 | +└───────────┬─────────────────┴─────────────────┬─────────────┘ |
| 109 | + │ │ |
| 110 | + ▼ ▼ |
| 111 | +┌───────────────────────┐ ┌───────────────────────────┐ |
| 112 | +│ MCP Weather │ │ MCP Web Search │ |
| 113 | +│ (localhost:4050) │ │ (localhost:4051) │ |
| 114 | +│ Open-Meteo API │ │ Brave Search API │ |
| 115 | +└───────────────────────┘ └───────────────────────────┘ |
| 116 | +``` |
| 117 | + |
| 118 | +## Design System |
| 119 | + |
| 120 | +All Forge UI components use **PrimeVue 4** with the **Aura theme** and violet primary color. |
| 121 | + |
| 122 | +| Element | Usage | |
| 123 | +|---------|-------| |
| 124 | +| **Primary (Violet)** | Interactive elements, buttons, links | |
| 125 | +| **Green** | Connected, enabled, success states | |
| 126 | +| **Red** | Errors, delete actions | |
| 127 | +| **Orange** | Tool calls in progress | |
| 128 | +| **Dark background** | Default theme (`#0f0f14`) | |
| 129 | + |
| 130 | +--- |
| 131 | + |
| 132 | +Ready to try it yourself? Head to the [Getting Started](/docs/getting-started) guide! |
0 commit comments