A simple web-based tool for testing and comparing AI models, built as a training aid for internship onboarding. It is no longer actively maintained.
This was an internal tool used during internship training to give interns hands-on experience interacting with AI model APIs. It provides a basic chat interface and side-by-side model comparison view, wired up to OpenAI-compatible REST endpoints.
- Chat interface for interacting with AI models via REST API
- Side-by-side model comparison mode
- Configurable parameters (temperature, max tokens)
- Agent configuration stored in browser localStorage
- Frontend: Angular 18
- Styling: Tailwind CSS
- Node.js 16+
- npm
npm install
npm startOpen http://localhost:4200 in your browser.
Click "Add Agent" in the sidebar and provide:
- ID: Unique identifier
- Name: Display name
- Endpoint: Full API URL
- API Key: Authentication key
The app uses the OpenAI-compatible chat completions format:
POST /api/v1/chat/completions
Authorization: Bearer <api-key>
Content-Type: application/json
This project is archived and no longer actively developed.