The Intelligence Layer for Human Choice.
Decide is a high-performance decision distillation engine. It leverages advanced OCR and LLM reasoning to translate complex data into actionable human briefs.
graph TD
User([User]) -->|Image/Text| Interface[Decide Interface]
Interface -->|Payload| Engine[Decide Engine]
subgraph Perception Layer
Engine --> Vision{Vision Engine}
Vision -->|Primary| Gemini[Gemini 1.5 Flash]
Vision -->|Fallback| Tesseract[Tesseract.js]
end
subgraph Intelligence Core
PerceptionLayer --> Context[Inferred Context]
Context --> LLM[Groq / Llama 3.3]
LLM --> Brief[Decision Brief]
end
Brief -->|Structured JSON| Interface
- backend/: The Node.js "Decide Engine" (Express, Groq, Tesseract).
- frontend/: The React "Decide Interface" (Vite, Tailwind v4).
cd backend
npm install
npm startEngine runs on port 5002 by default.
cd frontend
npm install
npm run devInterface will proxy requests to the engine.
- Reasoning: Groq (Llama 3/Mixtral)
- Vision: Tesseract.js (Optimized OCR)
- UI: React 19 + Tailwind v4
- Style: Premium Humanist Design
Created by Vikas Kumar.