-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
323 changed files
with
55,234 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"next/babel", | ||
{ | ||
"preset-env": { | ||
"targets": { | ||
"browsers": ["> 0.25%, not dead"] | ||
} | ||
} | ||
} | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
*.lcov | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Node.js dependencies | ||
/node_modules | ||
/jspm_packages | ||
|
||
# TypeScript v1 declaration files | ||
typings | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variable files | ||
.env | ||
.env.test | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# Next.js build output | ||
.next | ||
out | ||
|
||
# Nuxt.js build output | ||
.nuxt | ||
dist | ||
|
||
# Gatsby files | ||
.cache/ | ||
|
||
|
||
# Vuepress build output | ||
.vuepress/dist | ||
|
||
# Serverless directories | ||
.serverless/ | ||
|
||
# FuseBox cache | ||
.fusebox/ | ||
|
||
# DynamoDB Local files | ||
.dynamodb/ | ||
|
||
# Temporary folders | ||
tmp | ||
temp | ||
|
||
# IDE and editor directories | ||
.idea | ||
.vscode | ||
*.swp | ||
*.swo | ||
*~ | ||
|
||
# OS generated files | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# secret key | ||
*.key | ||
*.key.pub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# Your openai api key. (required) | ||
OPENAI_API_KEY=sk-xxxx | ||
|
||
# Access password, separated by comma. (optional) | ||
CODE=your-password | ||
|
||
# You can start service behind a proxy. (optional) | ||
PROXY_URL=http://localhost:7890 | ||
|
||
# (optional) | ||
# Default: Empty | ||
# Google Gemini Pro API key, set if you want to use Google Gemini Pro API. | ||
GOOGLE_API_KEY= | ||
|
||
# (optional) | ||
# Default: https://generativelanguage.googleapis.com/ | ||
# Google Gemini Pro API url without pathname, set if you want to customize Google Gemini Pro API url. | ||
GOOGLE_URL= | ||
|
||
# Override openai api request base url. (optional) | ||
# Default: https://api.openai.com | ||
# Examples: http://your-openai-proxy.com | ||
BASE_URL= | ||
|
||
# Specify OpenAI organization ID.(optional) | ||
# Default: Empty | ||
OPENAI_ORG_ID= | ||
|
||
# (optional) | ||
# Default: Empty | ||
# If you do not want users to use GPT-4, set this value to 1. | ||
DISABLE_GPT4= | ||
|
||
# (optional) | ||
# Default: Empty | ||
# If you do not want users to input their own API key, set this value to 1. | ||
HIDE_USER_API_KEY= | ||
|
||
# (optional) | ||
# Default: Empty | ||
# If you do want users to query balance, set this value to 1. | ||
ENABLE_BALANCE_QUERY= | ||
|
||
# (optional) | ||
# Default: Empty | ||
# If you want to disable parse settings from url, set this value to 1. | ||
DISABLE_FAST_LINK= | ||
|
||
# (optional) | ||
# Default: Empty | ||
# To control custom models, use + to add a custom model, use - to hide a model, use name=displayName to customize model name, separated by comma. | ||
CUSTOM_MODELS= | ||
|
||
# (optional) | ||
# Default: Empty | ||
# Change default model | ||
DEFAULT_MODEL= | ||
|
||
# anthropic claude Api Key.(optional) | ||
ANTHROPIC_API_KEY= | ||
|
||
### anthropic claude Api version. (optional) | ||
ANTHROPIC_API_VERSION= | ||
|
||
### anthropic claude Api url (optional) | ||
ANTHROPIC_URL= | ||
|
||
### (optional) | ||
WHITE_WEBDAV_ENDPOINTS= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
public/serviceWorker.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"extends": "next/core-web-vitals", | ||
"plugins": ["prettier", "unused-imports"], | ||
"rules": { | ||
"unused-imports/no-unused-imports": "warn" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: '🐛 Bug Report' | ||
description: 'Report an bug' | ||
title: '[Bug] ' | ||
labels: ['bug'] | ||
body: | ||
- type: dropdown | ||
attributes: | ||
label: '📦 Deployment Method' | ||
multiple: true | ||
options: | ||
- 'Official installation package' | ||
- 'Vercel' | ||
- 'Zeabur' | ||
- 'Sealos' | ||
- 'Netlify' | ||
- 'Docker' | ||
- 'Other' | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: '📌 Version' | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
attributes: | ||
label: '💻 Operating System' | ||
multiple: true | ||
options: | ||
- 'Windows' | ||
- 'macOS' | ||
- 'Ubuntu' | ||
- 'Other Linux' | ||
- 'iOS' | ||
- 'iPad OS' | ||
- 'Android' | ||
- 'Other' | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: '📌 System Version' | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: '🌐 Browser' | ||
multiple: true | ||
options: | ||
- 'Chrome' | ||
- 'Edge' | ||
- 'Safari' | ||
- 'Firefox' | ||
- 'Other' | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: '📌 Browser Version' | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: '🐛 Bug Description' | ||
description: A clear and concise description of the bug, if the above option is `Other`, please also explain in detail. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: '📷 Recurrence Steps' | ||
description: A clear and concise description of how to recurrence. | ||
- type: textarea | ||
attributes: | ||
label: '🚦 Expected Behavior' | ||
description: A clear and concise description of what you expected to happen. | ||
- type: textarea | ||
attributes: | ||
label: '📝 Additional Information' | ||
description: If your problem needs further explanation, or if the issue you're seeing cannot be reproduced in a gist, please add more information here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: '🐛 反馈缺陷' | ||
description: '反馈一个问题/缺陷' | ||
title: '[Bug] ' | ||
labels: ['bug'] | ||
body: | ||
- type: dropdown | ||
attributes: | ||
label: '📦 部署方式' | ||
multiple: true | ||
options: | ||
- '官方安装包' | ||
- 'Vercel' | ||
- 'Zeabur' | ||
- 'Sealos' | ||
- 'Netlify' | ||
- 'Docker' | ||
- 'Other' | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: '📌 软件版本' | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
attributes: | ||
label: '💻 系统环境' | ||
multiple: true | ||
options: | ||
- 'Windows' | ||
- 'macOS' | ||
- 'Ubuntu' | ||
- 'Other Linux' | ||
- 'iOS' | ||
- 'iPad OS' | ||
- 'Android' | ||
- 'Other' | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: '📌 系统版本' | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: '🌐 浏览器' | ||
multiple: true | ||
options: | ||
- 'Chrome' | ||
- 'Edge' | ||
- 'Safari' | ||
- 'Firefox' | ||
- 'Other' | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: '📌 浏览器版本' | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: '🐛 问题描述' | ||
description: 请提供一个清晰且简洁的问题描述,若上述选项为`Other`,也请详细说明。 | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: '📷 复现步骤' | ||
description: 请提供一个清晰且简洁的描述,说明如何复现问题。 | ||
- type: textarea | ||
attributes: | ||
label: '🚦 期望结果' | ||
description: 请提供一个清晰且简洁的描述,说明您期望发生什么。 | ||
- type: textarea | ||
attributes: | ||
label: '📝 补充信息' | ||
description: 如果您的问题需要进一步说明,或者您遇到的问题无法在一个简单的示例中复现,请在这里添加更多信息。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: '🌠 Feature Request' | ||
description: 'Suggest an idea' | ||
title: '[Feature Request] ' | ||
labels: ['enhancement'] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: '🥰 Feature Description' | ||
description: Please add a clear and concise description of the problem you are seeking to solve with this feature request. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: '🧐 Proposed Solution' | ||
description: Describe the solution you'd like in a clear and concise manner. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: '📝 Additional Information' | ||
description: Add any other context about the problem here. |
Oops, something went wrong.