mirror of
https://github.com/stackblitz/bolt.new
synced 2025-02-06 04:48:04 +00:00
pre commit lint
This commit is contained in:
parent
17b565d552
commit
4250fa9834
@ -10,10 +10,7 @@ const EXAMPLE_PROMPTS = [
|
|||||||
|
|
||||||
export function ExamplePrompts(sendMessage?: { (event: React.UIEvent, messageInput?: string): void | undefined }) {
|
export function ExamplePrompts(sendMessage?: { (event: React.UIEvent, messageInput?: string): void | undefined }) {
|
||||||
return (
|
return (
|
||||||
<div
|
<div id="examples" className="relative flex flex-col gap-9 w-full max-w-3xl mx-auto flex justify-center mt-6">
|
||||||
id="examples"
|
|
||||||
className="relative flex flex-col gap-9 w-full max-w-3xl mx-auto flex justify-center mt-6"
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
className="flex flex-wrap justify-center gap-2"
|
className="flex flex-wrap justify-center gap-2"
|
||||||
style={{
|
style={{
|
||||||
|
@ -263,8 +263,12 @@ const PROVIDER_LIST: ProviderInfo[] = [
|
|||||||
{
|
{
|
||||||
name: 'Together',
|
name: 'Together',
|
||||||
staticModels: [
|
staticModels: [
|
||||||
|
{
|
||||||
{ name: 'Qwen/Qwen2.5-Coder-32B-Instruct', label: 'Qwen/Qwen2.5-Coder-32B-Instruct', provider: 'Together', maxTokenAllowed: 8000, },
|
name: 'Qwen/Qwen2.5-Coder-32B-Instruct',
|
||||||
|
label: 'Qwen/Qwen2.5-Coder-32B-Instruct',
|
||||||
|
provider: 'Together',
|
||||||
|
maxTokenAllowed: 8000,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'meta-llama/Llama-3.2-90B-Vision-Instruct-Turbo',
|
name: 'meta-llama/Llama-3.2-90B-Vision-Instruct-Turbo',
|
||||||
label: 'meta-llama/Llama-3.2-90B-Vision-Instruct-Turbo',
|
label: 'meta-llama/Llama-3.2-90B-Vision-Instruct-Turbo',
|
||||||
@ -272,8 +276,12 @@ const PROVIDER_LIST: ProviderInfo[] = [
|
|||||||
maxTokenAllowed: 8000,
|
maxTokenAllowed: 8000,
|
||||||
},
|
},
|
||||||
|
|
||||||
{ name: 'mistralai/Mixtral-8x7B-Instruct-v0.1', label: 'Mixtral 8x7B Instruct', provider: 'Together', maxTokenAllowed: 8192 },
|
{
|
||||||
|
name: 'mistralai/Mixtral-8x7B-Instruct-v0.1',
|
||||||
|
label: 'Mixtral 8x7B Instruct',
|
||||||
|
provider: 'Together',
|
||||||
|
maxTokenAllowed: 8192,
|
||||||
|
},
|
||||||
],
|
],
|
||||||
getApiKeyLink: 'https://api.together.xyz/settings/api-keys',
|
getApiKeyLink: 'https://api.together.xyz/settings/api-keys',
|
||||||
},
|
},
|
||||||
|
15
package-lock.json
generated
15
package-lock.json
generated
@ -8728,9 +8728,9 @@
|
|||||||
"license": "BSD-2-Clause"
|
"license": "BSD-2-Clause"
|
||||||
},
|
},
|
||||||
"node_modules/globals": {
|
"node_modules/globals": {
|
||||||
"version": "15.12.0",
|
"version": "15.13.0",
|
||||||
"resolved": "https://registry.npmjs.org/globals/-/globals-15.12.0.tgz",
|
"resolved": "https://registry.npmjs.org/globals/-/globals-15.13.0.tgz",
|
||||||
"integrity": "sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==",
|
"integrity": "sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
@ -8835,11 +8835,14 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/has-proto": {
|
"node_modules/has-proto": {
|
||||||
"version": "1.0.3",
|
"version": "1.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.1.0.tgz",
|
||||||
"integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==",
|
"integrity": "sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==",
|
||||||
"devOptional": true,
|
"devOptional": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"call-bind": "^1.0.7"
|
||||||
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 0.4"
|
"node": ">= 0.4"
|
||||||
},
|
},
|
||||||
|
@ -3331,8 +3331,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
|
|
||||||
globals@15.12.0:
|
globals@15.13.0:
|
||||||
resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==}
|
resolution: {integrity: sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
|
|
||||||
globrex@0.1.2:
|
globrex@0.1.2:
|
||||||
@ -3363,8 +3363,8 @@ packages:
|
|||||||
has-property-descriptors@1.0.2:
|
has-property-descriptors@1.0.2:
|
||||||
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
|
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
|
||||||
|
|
||||||
has-proto@1.0.3:
|
has-proto@1.1.0:
|
||||||
resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
|
resolution: {integrity: sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
has-symbols@1.0.3:
|
has-symbols@1.0.3:
|
||||||
@ -6117,7 +6117,7 @@ snapshots:
|
|||||||
eslint-config-prettier: 9.1.0(eslint@9.16.0(jiti@1.21.6))
|
eslint-config-prettier: 9.1.0(eslint@9.16.0(jiti@1.21.6))
|
||||||
eslint-plugin-jsonc: 2.18.2(eslint@9.16.0(jiti@1.21.6))
|
eslint-plugin-jsonc: 2.18.2(eslint@9.16.0(jiti@1.21.6))
|
||||||
eslint-plugin-prettier: 5.2.1(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@9.16.0(jiti@1.21.6)))(eslint@9.16.0(jiti@1.21.6))(prettier@3.4.1)
|
eslint-plugin-prettier: 5.2.1(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@9.16.0(jiti@1.21.6)))(eslint@9.16.0(jiti@1.21.6))(prettier@3.4.1)
|
||||||
globals: 15.12.0
|
globals: 15.13.0
|
||||||
typescript-eslint: 8.16.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
|
typescript-eslint: 8.16.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@eslint/json'
|
- '@eslint/json'
|
||||||
@ -9016,7 +9016,7 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
es-errors: 1.3.0
|
es-errors: 1.3.0
|
||||||
function-bind: 1.1.2
|
function-bind: 1.1.2
|
||||||
has-proto: 1.0.3
|
has-proto: 1.1.0
|
||||||
has-symbols: 1.0.3
|
has-symbols: 1.0.3
|
||||||
hasown: 2.0.2
|
hasown: 2.0.2
|
||||||
|
|
||||||
@ -9058,7 +9058,7 @@ snapshots:
|
|||||||
|
|
||||||
globals@14.0.0: {}
|
globals@14.0.0: {}
|
||||||
|
|
||||||
globals@15.12.0: {}
|
globals@15.13.0: {}
|
||||||
|
|
||||||
globrex@0.1.2: {}
|
globrex@0.1.2: {}
|
||||||
|
|
||||||
@ -9089,7 +9089,9 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
es-define-property: 1.0.0
|
es-define-property: 1.0.0
|
||||||
|
|
||||||
has-proto@1.0.3: {}
|
has-proto@1.1.0:
|
||||||
|
dependencies:
|
||||||
|
call-bind: 1.0.7
|
||||||
|
|
||||||
has-symbols@1.0.3: {}
|
has-symbols@1.0.3: {}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user