# OpenAI Models Viewer A web-based interface for browsing and interacting with OpenAI-compatible API endpoints. This application allows you to manage multiple server connections, view available models, and chat with AI models directly from your browser. ## Features - **Multi-Server Management**: Add and manage multiple OpenAI-compatible endpoints - **Model Discovery**: Browse and view all available models from configured servers - **Interactive Chat**: Chat directly with AI models through a clean web interface - **Local Storage**: Securely stores server configurations in browser localStorage - **Responsive Design**: Works on desktop and mobile devices ### Docker Support Build and run with Docker: ```bash docker build -t openai-models-viewer . docker run -p 8000:8000 openai-models-viewer ``` ## API Endpoints The application connects to standard OpenAI-compatible endpoints: - `/models` - List available models - `/v1/chat/completions` - Chat completion endpoint ## Security - API keys are stored locally in browser localStorage - All communication happens directly between your browser and the API endpoints - No server-side storage of sensitive information