{"id":17444875,"url":"https://github.com/exios66/ios-chatbot","last_synced_at":"2026-02-12T01:37:24.315Z","repository":{"id":257893861,"uuid":"870413970","full_name":"Exios66/ios-chatbot","owner":"Exios66","description":"A simple chatbot interface inspired by the iOS iMessage UI with real-time communication using Node.js, Express, and Socket.IO.","archived":false,"fork":false,"pushed_at":"2024-10-15T22:04:52.000Z","size":7426,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T16:42:23.681Z","etag":null,"topics":["ios","llama","openai-api","ui-design"],"latest_commit_sha":null,"homepage":"https://exios66.github.io/ios-chatbot/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Exios66.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-10T02:02:48.000Z","updated_at":"2024-10-15T17:15:57.000Z","dependencies_parsed_at":"2024-10-17T10:26:31.471Z","dependency_job_id":null,"html_url":"https://github.com/Exios66/ios-chatbot","commit_stats":null,"previous_names":["exios66/ios-chatbot"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Exios66/ios-chatbot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Exios66%2Fios-chatbot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Exios66%2Fios-chatbot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Exios66%2Fios-chatbot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Exios66%2Fios-chatbot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Exios66","download_url":"https://codeload.github.com/Exios66/ios-chatbot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Exios66%2Fios-chatbot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271242253,"owners_count":24725005,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-19T02:00:09.176Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ios","llama","openai-api","ui-design"],"created_at":"2024-10-17T18:00:26.589Z","updated_at":"2026-02-12T01:37:24.254Z","avatar_url":"https://github.com/Exios66.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AI Chatbot Interface\n\nAn interactive web-based chatbot interface that supports multiple AI models from OpenAI, Anthropic, OpenRouter, and Llama.\n\n## Features\n\n- Support for multiple AI providers: OpenAI, Anthropic, OpenRouter, and Llama\n- Dynamic model selection\n- Real-time chat interface\n- iOS-style light and dark themes\n- Settings management\n- Admin panel for user management and system statistics\n\n## Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/your-username/ai-chatbot-interface.git\n   cd ai-chatbot-interface\n   ```\n\n2. Install dependencies:\n\n   ```bash\n   npm install\n   ```\n\n3. Set up environment variables:\n\n   - Copy the `.env.example` file to `.env`\n   - Fill in the required API keys and other configuration options\n\n4. Start the development server:\n\n   ```bash\n   npm run dev\n   ```\n\n5. Open your browser and navigate to `http://localhost:3000`\n\n## Usage\n\n1. Select an AI model from the Models tab\n2. Navigate to the Chat tab\n3. Start chatting with the selected AI model\n\n## Configuration\n\nUpdate the `.env` file with your API keys and other settings:\n\n- `OPENAI_API_KEY`: Your OpenAI API key\n- `ANTHROPIC_API_KEY`: Your Anthropic API key\n- `OPENROUTER_API_KEY`: Your OpenRouter API key\n- `LLAMA_API_KEY`: Your Llama API key\n- `PORT`: The port number for the server (default: 3000)\n- `HOST`: The host for the server (default: localhost)\n- `JWT_SECRET`: Secret key for JWT token generation\n- `DATABASE_URL`: Your database connection string\n- `API_KEY`: API key for external services\n- `ALLOWED_ORIGINS`: Comma-separated list of allowed origins for CORS\n- `NODE_ENV`: The environment (development, production, etc.)\n\n## Building and Deploying\n\nTo build the project for production:\n\n```bash\nnpm run build\n```\n\nThis will create a `dist` directory with the compiled files.\n\n### Deploying to GitHub Pages\n\nTo deploy the project using GitHub Pages:\n\n1. Go to your GitHub repository's settings.\n2. Navigate to the \"Pages\" section.\n3. Under \"Source\", select the branch you want to deploy (usually `main` or `master`).\n4. Select the root folder (`/`) as the source.\n5. Click \"Save\".\n\nGitHub will now automatically build and deploy your site whenever you push changes to the selected branch. The deployment process may take a few minutes. Once complete, you can access your site at `https://your-username.github.io/your-repo-name/`.\n\nNote: Make sure your project's structure is compatible with GitHub Pages. The `index.html` file should be in the root of your project or in a `docs` folder if you choose that option in the GitHub Pages settings.\n\n## Contributing\n\nPlease read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct and the process for submitting pull requests.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexios66%2Fios-chatbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexios66%2Fios-chatbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexios66%2Fios-chatbot/lists"}