{"id":13645664,"url":"https://github.com/lianginx/chatgpt-nuxt","last_synced_at":"2026-01-25T05:03:15.645Z","repository":{"id":152316439,"uuid":"615329544","full_name":"lianginx/chatgpt-nuxt","owner":"lianginx","description":"基于 Nuxt.js 框架的 ChatGPT 类项目，支持 OpenAI 和 Azure 两种 API 切换，支持黑暗模式、中英日多语言切换。","archived":false,"fork":false,"pushed_at":"2024-05-31T16:19:14.000Z","size":17383,"stargazers_count":234,"open_issues_count":9,"forks_count":69,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-05-10T13:50:30.401Z","etag":null,"topics":["ai","chatgpt","nuxt","vue3"],"latest_commit_sha":null,"homepage":"https://ai.in-x.cc/","language":"Vue","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/lianginx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"custom":["https://github.com/lianginx/sponsor"]}},"created_at":"2023-03-17T13:01:10.000Z","updated_at":"2025-04-23T09:16:57.000Z","dependencies_parsed_at":"2024-08-02T01:38:29.150Z","dependency_job_id":null,"html_url":"https://github.com/lianginx/chatgpt-nuxt","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lianginx/chatgpt-nuxt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lianginx%2Fchatgpt-nuxt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lianginx%2Fchatgpt-nuxt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lianginx%2Fchatgpt-nuxt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lianginx%2Fchatgpt-nuxt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lianginx","download_url":"https://codeload.github.com/lianginx/chatgpt-nuxt/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lianginx%2Fchatgpt-nuxt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28744419,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T02:46:29.005Z","status":"ssl_error","status_checked_at":"2026-01-25T02:44:29.968Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["ai","chatgpt","nuxt","vue3"],"created_at":"2024-08-02T01:02:39.315Z","updated_at":"2026-01-25T05:03:15.617Z","avatar_url":"https://github.com/lianginx.png","language":"Vue","funding_links":["https://github.com/lianginx/sponsor"],"categories":["Openai"],"sub_categories":[],"readme":"# chatgpt-nuxt\n\n![preview](/assets/preview-en.png)\n\nENGLISH | [简体中文](/docs/README-CN.md) | [日本語](/docs/README-JA.md)\n\nThis is a frontend application implemented in [Nuxt 3](https://nuxt.com/) for OpenAI's [ChatGPT](https://openai.com/blog/chatgpt) and [DALL·E](https://openai.com/dall-e-2) API.\n\n## Supported APIs\n\n- [OpenAI API](https://openai.com/blog/openai-api)\n- [Azure Open AI Service API](https://learn.microsoft.com/en-us/azure/cognitive-services/openai/reference)\n\n## Supported Models\n\n- Chat completion\n  - gpt-4\n  - gpt-3.5-turbo\n- Image generation\n  - DALL·E\n\n## Setup\n\nTo begin, please ensure you have installed all dependencies:\n\n```bash\nnpm i\n# or\nyarn\n# or\npnpm i\n```\n\n## Development Server\n\nLaunch the development server and view it at \u003chttp://localhost:3000\u003e:\n\n```bash\nnpm run dev\n# or\nyarn dev\n# or\npnpm dev\n```\n\n## Production\n\nTo build your application for production, execute:\n\n```bash\nnpm run build\n# or\nyarn build\n# or\npnpm build\n```\n\nPreview the production build locally with the following command:\n\n```bash\nnpm run preview\n# or\nyarn preview\n# or\npnpm preview\n```\n\n## Deploy\n\nOne-line command for quick deployment:\n\n```bash\ndocker run -d \\\n  -p 80:3000 \\\n  --restart unless-stopped \\\n  --name chatgpt-nuxt \\\n  lianginx/chatgpt-nuxt:latest\n```\n\nTo deploy using Docker Compose:\n\n```bash\nversion: \"3\"\nservices:\n  chatgpt-nuxt:\n    image: lianginx/chatgpt-nuxt:latest\n    ports:\n      - 80:3000\n    restart: unless-stopped\n```\n\n```bash\ndocker-compose up -d # Start and run in the background.\ndocker-compose stop  # Stop\ndocker-compose down  # Stop and delete\n```\n\nWhen completed, your project will be deployed onto port `80`.\n\nIf you have any feedback or suggestions for improving this README document, please don’t hesitate to let me know. I appreciate your input.\n\n## Configuration\n\nThere are two ways to configure the application:\n\n- setting it up using the configuration screen on the application.\n- setting it up by using environment variables in advance.\n\nIf you want to set environment variables, please refer to [`.env.example`](/.env.example) and place a `.env` file in the root directory.\n\n## License\n\nThis project uses the [MIT](/LICENSE) license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flianginx%2Fchatgpt-nuxt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flianginx%2Fchatgpt-nuxt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flianginx%2Fchatgpt-nuxt/lists"}