├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── screenshot-to-code-main.iml └── vcs.xml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── README_EN.md ├── Troubleshooting.md ├── backend ├── .gitignore ├── Dockerfile ├── README.md ├── access_token.py ├── build.sh ├── config.py ├── def_error.py ├── eval.py ├── eval_config.py ├── eval_utils.py ├── generate_chat_img.py ├── image_generation.py ├── imported_code_prompts.py ├── llm.py ├── main.py ├── mock_llm.py ├── poetry.lock ├── prompts.py ├── pyproject.toml ├── routes │ ├── evals.py │ ├── generate_code.py │ ├── home.py │ └── screenshot.py ├── screenshot_system_prompts.py ├── test_data │ ├── 1.png │ ├── 2.png │ ├── send_data.json │ └── 生成代码结果图.png ├── test_prompts.py └── utils.py ├── design-docs.md ├── docker-compose.yml ├── frontend ├── .eslintrc.cjs ├── .gitignore ├── Dockerfile ├── components.json ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── brand │ │ └── twitter-summary-card.png ├── src │ ├── App.tsx │ ├── components │ │ ├── CodeMirror.tsx │ │ ├── CodePreview.tsx │ │ ├── CodeTab.tsx │ │ ├── ImageUpload.tsx │ │ ├── ImportCodeSection.tsx │ │ ├── OnboardingNote.tsx │ │ ├── OutputSettingsSection.tsx │ │ ├── PicoBadge.tsx │ │ ├── Preview.tsx │ │ ├── SettingsDialog.tsx │ │ ├── Spinner.tsx │ │ ├── TermsOfServiceDialog.tsx │ │ ├── UrlInputSection.tsx │ │ ├── evals │ │ │ ├── EvalsPage.tsx │ │ │ └── RatingPicker.tsx │ │ ├── history │ │ │ ├── HistoryDisplay.tsx │ │ │ ├── history_types.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── settings │ │ │ └── AccessCodeSection.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── dialog.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── switch.tsx │ │ │ ├── tabs.tsx │ │ │ └── textarea.tsx │ ├── config.ts │ ├── constants.ts │ ├── generateCode.ts │ ├── hooks │ │ ├── usePersistedState.ts │ │ └── useThrottle.ts │ ├── index.css │ ├── lib │ │ └── utils.ts │ ├── main.tsx │ ├── types.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock ├── sweep.yaml └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # 默认忽略的文件 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/screenshot-to-code-main.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/.idea/screenshot-to-code-main.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.analysis.typeCheckingMode": "strict" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/README_EN.md -------------------------------------------------------------------------------- /Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/Troubleshooting.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/access_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/access_token.py -------------------------------------------------------------------------------- /backend/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/build.sh -------------------------------------------------------------------------------- /backend/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/config.py -------------------------------------------------------------------------------- /backend/def_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/def_error.py -------------------------------------------------------------------------------- /backend/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/eval.py -------------------------------------------------------------------------------- /backend/eval_config.py: -------------------------------------------------------------------------------- 1 | EVALS_DIR = "./evals" 2 | -------------------------------------------------------------------------------- /backend/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/eval_utils.py -------------------------------------------------------------------------------- /backend/generate_chat_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/generate_chat_img.py -------------------------------------------------------------------------------- /backend/image_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/image_generation.py -------------------------------------------------------------------------------- /backend/imported_code_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/imported_code_prompts.py -------------------------------------------------------------------------------- /backend/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/llm.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/mock_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/mock_llm.py -------------------------------------------------------------------------------- /backend/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/poetry.lock -------------------------------------------------------------------------------- /backend/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/prompts.py -------------------------------------------------------------------------------- /backend/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/pyproject.toml -------------------------------------------------------------------------------- /backend/routes/evals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/routes/evals.py -------------------------------------------------------------------------------- /backend/routes/generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/routes/generate_code.py -------------------------------------------------------------------------------- /backend/routes/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/routes/home.py -------------------------------------------------------------------------------- /backend/routes/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/routes/screenshot.py -------------------------------------------------------------------------------- /backend/screenshot_system_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/screenshot_system_prompts.py -------------------------------------------------------------------------------- /backend/test_data/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/test_data/1.png -------------------------------------------------------------------------------- /backend/test_data/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/test_data/2.png -------------------------------------------------------------------------------- /backend/test_data/send_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/test_data/send_data.json -------------------------------------------------------------------------------- /backend/test_data/生成代码结果图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/test_data/生成代码结果图.png -------------------------------------------------------------------------------- /backend/test_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/test_prompts.py -------------------------------------------------------------------------------- /backend/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/backend/utils.py -------------------------------------------------------------------------------- /design-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/design-docs.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/components.json -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/brand/twitter-summary-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/public/brand/twitter-summary-card.png -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/components/CodeMirror.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/CodeMirror.tsx -------------------------------------------------------------------------------- /frontend/src/components/CodePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/CodePreview.tsx -------------------------------------------------------------------------------- /frontend/src/components/CodeTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/CodeTab.tsx -------------------------------------------------------------------------------- /frontend/src/components/ImageUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ImageUpload.tsx -------------------------------------------------------------------------------- /frontend/src/components/ImportCodeSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ImportCodeSection.tsx -------------------------------------------------------------------------------- /frontend/src/components/OnboardingNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/OnboardingNote.tsx -------------------------------------------------------------------------------- /frontend/src/components/OutputSettingsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/OutputSettingsSection.tsx -------------------------------------------------------------------------------- /frontend/src/components/PicoBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/PicoBadge.tsx -------------------------------------------------------------------------------- /frontend/src/components/Preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/Preview.tsx -------------------------------------------------------------------------------- /frontend/src/components/SettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/SettingsDialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/Spinner.tsx -------------------------------------------------------------------------------- /frontend/src/components/TermsOfServiceDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/TermsOfServiceDialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/UrlInputSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/UrlInputSection.tsx -------------------------------------------------------------------------------- /frontend/src/components/evals/EvalsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/evals/EvalsPage.tsx -------------------------------------------------------------------------------- /frontend/src/components/evals/RatingPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/evals/RatingPicker.tsx -------------------------------------------------------------------------------- /frontend/src/components/history/HistoryDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/history/HistoryDisplay.tsx -------------------------------------------------------------------------------- /frontend/src/components/history/history_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/history/history_types.ts -------------------------------------------------------------------------------- /frontend/src/components/history/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/history/utils.test.ts -------------------------------------------------------------------------------- /frontend/src/components/history/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/history/utils.ts -------------------------------------------------------------------------------- /frontend/src/components/settings/AccessCodeSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/settings/AccessCodeSection.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/button.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/input.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/label.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/select.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /frontend/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/config.ts -------------------------------------------------------------------------------- /frontend/src/constants.ts: -------------------------------------------------------------------------------- 1 | export const USER_CLOSE_WEB_SOCKET_CODE = 4333; 2 | -------------------------------------------------------------------------------- /frontend/src/generateCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/generateCode.ts -------------------------------------------------------------------------------- /frontend/src/hooks/usePersistedState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/hooks/usePersistedState.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useThrottle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/hooks/useThrottle.ts -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/main.tsx -------------------------------------------------------------------------------- /frontend/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/src/types.ts -------------------------------------------------------------------------------- /frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /sweep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/sweep.yaml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuu555552/Free-GPT-Grok-Gemini-Claude-API/HEAD/yarn.lock --------------------------------------------------------------------------------