{"id":15164430,"url":"https://github.com/zunder-ai/chatgpt-ai-template","last_synced_at":"2026-01-21T11:04:22.277Z","repository":{"id":254548642,"uuid":"846873830","full_name":"zunder-ai/chatgpt-ai-template","owner":"zunder-ai","description":" Zunder GPT Clone AI Starter - Simple starting point for building AI Chat Apps with zunder.ai, Nuxt, Vue3 and TailwindCSS🔥","archived":false,"fork":false,"pushed_at":"2024-08-24T14:28:26.000Z","size":867,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-08T13:18:44.146Z","etag":null,"topics":["chat-gpt","chatbot-starter","chatgpt-starter-kit","chatgpt3","nuxt","nuxt3","openai","openai-starter","starter-template","tailwindcss","vue","vue3"],"latest_commit_sha":null,"homepage":"https://chatgpt-ai-template.example.zunder.ai/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zunder-ai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-08-24T07:33:00.000Z","updated_at":"2024-08-28T00:45:29.000Z","dependencies_parsed_at":"2024-08-24T08:48:35.374Z","dependency_job_id":"ab58c25b-02e2-4255-b3da-ec75cb9909b9","html_url":"https://github.com/zunder-ai/chatgpt-ai-template","commit_stats":{"total_commits":8,"total_committers":1,"mean_commits":8.0,"dds":0.0,"last_synced_commit":"e91ef13fbd61d797266d184fac8a3423c14c649e"},"previous_names":["zunder-ai/chatgpt-ai-template"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zunder-ai/chatgpt-ai-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zunder-ai%2Fchatgpt-ai-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zunder-ai%2Fchatgpt-ai-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zunder-ai%2Fchatgpt-ai-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zunder-ai%2Fchatgpt-ai-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zunder-ai","download_url":"https://codeload.github.com/zunder-ai/chatgpt-ai-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zunder-ai%2Fchatgpt-ai-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28632275,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["chat-gpt","chatbot-starter","chatgpt-starter-kit","chatgpt3","nuxt","nuxt3","openai","openai-starter","starter-template","tailwindcss","vue","vue3"],"created_at":"2024-09-27T03:23:22.072Z","updated_at":"2026-01-21T11:04:22.261Z","avatar_url":"https://github.com/zunder-ai.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ZUNDER Chat AI Starter\n\n[![Zunder AI Logo](/public/zunder_ai_logo_banner.png)](https://github.com/regenrek/zunder-ui)\n\nZunder Chat AI Starter is a simple starter for building AI Chat Applications, powered by [Zunder UI](https://github.com/regenrek/zunder-ui)\n\n\u003e **⚠️ IMPORTANT NOTICE**\n\u003e \n\u003e Zunder UI is currently in an early stage of development. The API is subject to change, and breaking changes may occur in future releases.  I'm happy for you to explore and give feedback, but please use it with care.\n\n## Features\n\n\n- Full Nuxt 3 (Nuxt 4 Compatibility Mode is activated)\n- Including Nuxt UI \u0026 Zunder UI\n- Chat UI with ChatGPT-like UI\n- Chat with Simulated Chat or bring your own OpenAI Implementation\n- Dark Mode\n- Responsive Design\n\n## Setup\n\nMake sure to install the dependencies:\n\nClone the repository:\n```bash\ngit clone https://github.com/regenrek/zunder-chat-ai-starter.git my-ai-chat\n```\n\n```bash\ncd my-ai-chat\npnpm install\n```\n\n## Add Environment Variables\n\nCopy the `.env.example` file to `.env`:\n\n```bash\ncp .env.example .env\n```\n\n```bash\nOPENAI_API_KEY=\u003cYOUR_OPENAI_API_KEY\u003e\nUSE_SIMULATED_CHAT=true # Set to false to use the real OpenAI API\n```\n\n## Development Server\n\nStart the development server on `http://localhost:3000`:\n\n```bash\n# pnpm\npnpm run dev\n```\n\n## Production\n\nBuild the application for production:\n\n```bash\n# pnpm\npnpm run build\n```\n\nLocally preview production build:\n\n```bash\n# pnpm\npnpm run preview\n```\n\n\n## Why Zunder?\n\nWhile Nuxt UI provides an excellent foundation for building Vue applications, there's a growing need for components specifically tailored to AI-driven interfaces. Zunder fills this gap by offering:\n\n- AI-specific components for chat interfaces\n- Elements designed for text and image generation tasks\n- Tools for displaying and interacting with AI model outputs\n- Seamless integration with existing Nuxt UI components\n- Demos (Chat, Image Analysis, RAG, etc.)\n\nWhether you're building a chatbot, a content generation tool, or a complex AI-powered application, Zunder provides the building blocks you need to create intuitive and powerful user interfaces.\n\n\n## Documentation\n\nFor full documentation, visit [official documentation site](https://zunder.ai).\n\n## Contributing (Coming soon)\n\nContributions to Zunder are welcome and appreciated! As a solo developer, I'm always excited to see community involvement. Here's how you can contribute:\n\n1. Check out the [GitHub Issues](https://github.com/regenrek/zunder-ui/issues) for open tasks or report a new issue.\n2. Fork the repository and create a new branch for your contribution.\n3. Make your changes and submit a pull request.\n\n## License\n\nZunder UI is open-source software licensed under the [MIT license](LICENSE.md).\n\n## Support\n\nFor support, please open an issue on our [GitHub repository](https://github.com/regenrek/zunder-ui)\n\n## Stay Connected\n\n- Website [zunder.ai](https://zunder.ai)\n- My X [Twitter](https://twitter.com/regenrek)\n- Star on Github [GitHub repo](https://github.com/regenrek/zunder-ui)\n\nThank you!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzunder-ai%2Fchatgpt-ai-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzunder-ai%2Fchatgpt-ai-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzunder-ai%2Fchatgpt-ai-template/lists"}