-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 0.1.0 * feat: add LICENSE * fix: settings
- Loading branch information
Showing
322 changed files
with
14,405 additions
and
17,142 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 |
---|---|---|
@@ -1,24 +1,24 @@ | ||
**/.classpath | ||
**/.dockerignore | ||
**/.env | ||
**/.git | ||
**/.gitignore | ||
**/.project | ||
**/.settings | ||
**/.toolstarget | ||
**/.vs | ||
**/.vscode | ||
**/*.*proj.user | ||
**/*.dbmdl | ||
**/*.jfm | ||
**/charts | ||
**/docker-compose* | ||
**/compose* | ||
**/Dockerfile* | ||
**/node_modules | ||
**/npm-debug.log | ||
**/obj | ||
**/secrets.dev.yaml | ||
**/values.dev.yaml | ||
LICENSE | ||
README.md | ||
**/.classpath | ||
**/.dockerignore | ||
**/.env | ||
**/.git | ||
**/.gitignore | ||
**/.project | ||
**/.settings | ||
**/.toolstarget | ||
**/.vs | ||
**/.vscode | ||
**/*.*proj.user | ||
**/*.dbmdl | ||
**/*.jfm | ||
**/charts | ||
**/docker-compose* | ||
**/compose* | ||
**/Dockerfile* | ||
**/node_modules | ||
**/npm-debug.log | ||
**/obj | ||
**/secrets.dev.yaml | ||
**/values.dev.yaml | ||
LICENSE | ||
README.md |
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 |
---|---|---|
@@ -1,24 +1,66 @@ | ||
# DATABASE | ||
DATABASE_URL= | ||
# --------------- Providers ----------------- | ||
|
||
# NEXTAUTH | ||
NEXTAUTH_URL= | ||
NEXTAUTH_SECRET= | ||
## Amazon (not supported so far) | ||
NEXT_PUBLIC_ACCESS_AWS= | ||
AWS_ACCESS_KEY= | ||
AWS_SECRET_KEY= | ||
AWS_REGION= | ||
|
||
EMAIL_HOST= | ||
EMAIL_PORT= | ||
EMAIL_USERNAME= | ||
EMAIL_PASSWORD= | ||
EMAIL_FROM= | ||
## Anthropic | ||
NEXT_PUBLIC_ACCESS_ANTHROPIC= | ||
ANTHROPIC_API_KEY= | ||
|
||
GITHUB_CLIENT_ID= | ||
GITHUB_CLIENT_SECRET= | ||
## Azure (not supported so far) | ||
NEXT_PUBLIC_ACCESS_AZURE= | ||
AZURE_OPENAI_API_KEY= | ||
AZURE_OPENAI_ENDPOINT= | ||
AZURE_OPENAI_DEPLOY_INSTANCE_NAME= | ||
|
||
GOOGLE_CLIENT_ID= | ||
GOOGLE_CLIENT_SECRET= | ||
## Cohere | ||
NEXT_PUBLIC_ACCESS_COHERE= | ||
COHERE_API_KEY= | ||
|
||
# PROVIDERS | ||
## Fireworks | ||
NEXT_PUBLIC_ACCESS_FIREWORKS= | ||
FIREWORKS_API_KEY= | ||
|
||
NEXT_PUBLIC_ACCESS_GOOGLE= | ||
GOOGLE_API_KEY= | ||
|
||
## Groq | ||
NEXT_PUBLIC_ACCESS_GROQ= | ||
GROQ_API_KEY= | ||
|
||
## Hugging Face | ||
NEXT_PUBLIC_ACCESS_HUGGINGFACE= | ||
HUGGINGFACE_API_KEY= | ||
|
||
## Mistral | ||
NEXT_PUBLIC_ACCESS_MISTRAL= | ||
MISTRAL_API_KEY= | ||
|
||
## OpenAI | ||
NEXT_PUBLIC_ACCESS_OPENAI= | ||
OPENAI_API_KEY= | ||
OPENAI_API_ENDPOINT= | ||
|
||
## Perplexity | ||
NEXT_PUBLIC_ACCESS_PERPLEXITY= | ||
PERPLEXITY_API_KEY= | ||
PERPLEXITY_ENDPOINT= | ||
|
||
# -------------- Search Engines -------------- | ||
|
||
NEXT_PUBLIC_ACCESS_GOOGLE_SEARCH= | ||
GOOGLE_SEARCH_API_KEY= | ||
GOOGLE_SEARCH_ENGINE_ID= | ||
|
||
## Tavily | ||
NEXT_PUBLIC_ACCESS_TAVILY_SEARCH= | ||
TAVILY_SEARCH_API_KEY= | ||
|
||
## You | ||
NEXT_PUBLIC_ACCESS_YOU_SEARCH= | ||
YOU_SEARCH_API_KEY= |
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 @@ | ||
components/ui/**.tsx |
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 |
---|---|---|
@@ -1,17 +1,82 @@ | ||
{ | ||
"root": true, | ||
"extends": [ | ||
"next/core-web-vitals", | ||
"plugin:tailwindcss/recommended" | ||
"root": true, | ||
"extends": [ | ||
"next", | ||
"next/core-web-vitals", | ||
"plugin:tailwindcss/recommended" | ||
], | ||
"plugins": [ | ||
"react", | ||
"simple-import-sort", | ||
"unused-imports" | ||
], | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": "latest" | ||
}, | ||
"rules": { | ||
"simple-import-sort/imports": "error", | ||
"simple-import-sort/exports": "error", | ||
"unused-imports/no-unused-imports": "error", | ||
"unused-imports/no-unused-vars": [ | ||
"warn", | ||
{ | ||
"vars": "all", | ||
"varsIgnorePattern": "^_", | ||
"args": "after-used", | ||
"argsIgnorePattern": "^_" | ||
} | ||
], | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"*.ts", | ||
"*.tsx", | ||
"*.js" | ||
], | ||
"parser": "@typescript-eslint/parser" | ||
} | ||
] | ||
"no-console": "warn", | ||
"react/no-unescaped-entities": "off" | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"*.ts", | ||
"*.tsx", | ||
"*.js" | ||
], | ||
"parser": "@typescript-eslint/parser" | ||
}, | ||
{ | ||
"files": [ | ||
"*.js", | ||
"*.jsx", | ||
"*.ts", | ||
"*.tsx" | ||
], | ||
"rules": { | ||
"simple-import-sort/imports": [ | ||
"error", | ||
{ | ||
"groups": [ | ||
[ | ||
"^react", | ||
"^@?\\w" | ||
], | ||
[ | ||
"^(@|components)(/.*|$)" | ||
], | ||
[ | ||
"^\\u0000" | ||
], | ||
[ | ||
"^\\.\\.(?!/?$)", | ||
"^\\.\\./?$" | ||
], | ||
[ | ||
"^\\./(?=.*/)(?!/?$)", | ||
"^\\.(?!/?$)", | ||
"^\\./?$" | ||
], | ||
[ | ||
"^.+\\.?(css)$" | ||
] | ||
] | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} |
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
This file was deleted.
Oops, something went wrong.
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
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,27 @@ | ||
{ | ||
"cSpell.words": [ | ||
"buildx", | ||
"DOCKERHUB", | ||
"fastapi", | ||
"Groq", | ||
"huggingface", | ||
"langchain", | ||
"langsmith", | ||
"Lightbox", | ||
"lucide", | ||
"markdownit", | ||
"mistralai", | ||
"mixtral", | ||
"onest", | ||
"rehype", | ||
"sonner", | ||
"Tavily", | ||
"tippyjs" | ||
], | ||
"python.analysis.typeCheckingMode": "basic", | ||
"python.analysis.autoImportCompletions": true, | ||
"i18n-ally.localesPaths": [ | ||
"locales", | ||
], | ||
"i18n-ally.keystyle": "flat" | ||
} |
Oops, something went wrong.