|
| 1 | +# Agentic Forge Demo is Live |
| 2 | + |
| 3 | +*January 2026* |
| 4 | + |
| 5 | +Try Agentic Forge at [agentic-forge.compulife.com.pk](https://agentic-forge.compulife.com.pk) — a working AI agent with tool access, running the full stack we've been building. |
| 6 | + |
| 7 | +## Quick Start |
| 8 | + |
| 9 | +1. **Get an API key** — [OpenRouter](https://openrouter.ai/keys) is the easiest option (one key, 300+ models) |
| 10 | +2. **Open the demo** — [agentic-forge.compulife.com.pk](https://agentic-forge.compulife.com.pk) |
| 11 | +3. **Add your key** — Click the gear icon next to the model selector, enter your OpenRouter key |
| 12 | +4. **Select a model** — We recommend starting with `google/gemini-2.0-flash` or `anthropic/claude-sonnet-4` |
| 13 | +5. **Start chatting** — Try asking about the weather or searching the web |
| 14 | + |
| 15 | +That's it. Your API key is stored in your browser only—we never see or store it. |
| 16 | + |
| 17 | +## Built-in Tools |
| 18 | + |
| 19 | +The demo comes with three MCP servers pre-configured: |
| 20 | + |
| 21 | +| Server | Tools | Example Queries | |
| 22 | +|--------|-------|-----------------| |
| 23 | +| **Weather** | Current conditions, forecasts, historical data | "What's the weather in Tokyo?" | |
| 24 | +| **Web Search** | Brave Search API | "Search for recent news about AI agents" | |
| 25 | +| **HuggingFace** | Model info, datasets, spaces | "Find popular text-to-image models" | |
| 26 | + |
| 27 | +The agent discovers relevant tools automatically using [Tool RAG](/blog/tool-rag-dynamic-discovery)—you don't need to specify which tool to use. |
| 28 | + |
| 29 | +## Add Your Own Tools |
| 30 | + |
| 31 | +Have an MCP server? Connect it directly: |
| 32 | + |
| 33 | +1. Open the tools panel (wrench icon) |
| 34 | +2. Click "Add Custom Server" |
| 35 | +3. Enter the URL (and API key if required) |
| 36 | +4. Your tools appear alongside the built-in ones |
| 37 | + |
| 38 | +Custom servers work for the current session only. See [What's New](/blog/whats-new-jan-2026) for details. |
| 39 | + |
| 40 | +## What You're Running |
| 41 | + |
| 42 | +The demo runs the full Agentic Forge stack: |
| 43 | + |
| 44 | +``` |
| 45 | +┌─────────────────────────────────────────────────────────────┐ |
| 46 | +│ Your Browser │ |
| 47 | +│ └── forge-ui (Vue.js chat interface) │ |
| 48 | +└────────────────────────┬────────────────────────────────────┘ |
| 49 | + │ SSE streaming |
| 50 | + ▼ |
| 51 | +┌─────────────────────────────────────────────────────────────┐ |
| 52 | +│ Agentic Forge Server │ |
| 53 | +│ ├── forge-orchestrator (LLM agent loop, BYOK, TOON) │ |
| 54 | +│ ├── forge-armory (MCP gateway, Tool RAG) │ |
| 55 | +│ └── MCP servers (weather, search, huggingface) │ |
| 56 | +└─────────────────────────────────────────────────────────────┘ |
| 57 | +``` |
| 58 | + |
| 59 | +All the optimizations we've written about are active: |
| 60 | + |
| 61 | +- **[Tool RAG](/blog/tool-rag-dynamic-discovery)** — Agent discovers tools on-demand instead of loading all 18 |
| 62 | +- **[TOON format](/blog/toon-format-support)** — Tool results use 30-60% fewer tokens |
| 63 | +- **[Combined: 60% context reduction](/blog/token-optimization-toon-rag)** — More room for conversation |
| 64 | + |
| 65 | +## Cost Estimate |
| 66 | + |
| 67 | +With BYOK, you pay your provider directly. Rough estimates for a typical session (10 exchanges with tool use): |
| 68 | + |
| 69 | +| Model | Approx. Cost | |
| 70 | +|-------|--------------| |
| 71 | +| Gemini 2.0 Flash | ~$0.01 | |
| 72 | +| Claude 3.5 Sonnet | ~$0.05 | |
| 73 | +| GPT-4o | ~$0.08 | |
| 74 | +| Claude Opus 4 | ~$0.30 | |
| 75 | + |
| 76 | +Flash-tier models are surprisingly capable for most tasks. Start there and upgrade if needed. |
| 77 | + |
| 78 | +## Known Limitations |
| 79 | + |
| 80 | +This is a demo deployment: |
| 81 | + |
| 82 | +- **No persistence** — Conversations aren't saved between sessions |
| 83 | +- **Single region** — Server is in Europe; latency may vary |
| 84 | +- **Shared infrastructure** — Not designed for production workloads |
| 85 | + |
| 86 | +For production use, deploy your own instance using [forge-devtools](https://github.com/agentic-forge/forge-devtools). |
| 87 | + |
| 88 | +## Feedback |
| 89 | + |
| 90 | +Found a bug? Have a suggestion? Open an issue: |
| 91 | + |
| 92 | +- [forge-ui issues](https://github.com/agentic-forge/forge-ui/issues) — UI/UX feedback |
| 93 | +- [forge-orchestrator issues](https://github.com/agentic-forge/forge-orchestrator/issues) — Agent behavior, model issues |
| 94 | +- [forge-armory issues](https://github.com/agentic-forge/forge-armory/issues) — Tool and MCP issues |
| 95 | + |
| 96 | +## Self-Hosting |
| 97 | + |
| 98 | +Want to run your own instance? The entire stack is open source: |
| 99 | + |
| 100 | +```bash |
| 101 | +git clone https://github.com/agentic-forge/forge-devtools |
| 102 | +cd forge-devtools |
| 103 | +cp .env.example .env # Add your API keys |
| 104 | +docker compose up |
| 105 | +``` |
| 106 | + |
| 107 | +See the [Getting Started Tutorial](/blog/getting-started-tutorial) for detailed instructions. |
| 108 | + |
| 109 | +## What's Next |
| 110 | + |
| 111 | +We're working on: |
| 112 | + |
| 113 | +- **Conversation persistence** — Save and resume conversations |
| 114 | +- **More MCP servers** — GitHub, calendar, file system tools |
| 115 | +- **Protocol adapters** — OpenAI function calling, REST APIs |
| 116 | + |
| 117 | +Follow the [GitHub org](https://github.com/agentic-forge) for updates. |
| 118 | + |
| 119 | +--- |
| 120 | + |
| 121 | +*Try the demo: [agentic-forge.compulife.com.pk](https://agentic-forge.compulife.com.pk)* |
| 122 | + |
| 123 | +*This is part of a series on building [Agentic Forge](https://agentic-forge.github.io).* |
0 commit comments