mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-08 06:03:04 -04:00
anthropic
This commit is contained in:
parent
cbef229ccb
commit
ae9a0309ba
3 changed files with 11 additions and 2 deletions
|
@ -17,6 +17,10 @@ const MODELS = {
|
||||||
"GPT4": {
|
"GPT4": {
|
||||||
icon: STATICS.openai,
|
icon: STATICS.openai,
|
||||||
name: "GPT-4"
|
name: "GPT-4"
|
||||||
|
},
|
||||||
|
"CLAUDE": {
|
||||||
|
icon: STATICS.anthropic,
|
||||||
|
name: "Claude"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,8 +13,8 @@ module.exports = {
|
||||||
name: 'dalle',
|
name: 'dalle',
|
||||||
label: 'text',
|
label: 'text',
|
||||||
metadata: {
|
metadata: {
|
||||||
description: `${iconPill("generative_ai", "LIMITED TESTING")}\n\nGenerate images with DALL-E`,
|
description: `${iconPill("generative_ai", "LIMITED TESTING")}\n\nGenerate images with DALL-E 2.`,
|
||||||
description_short: 'Generate images with DALL-E.',
|
description_short: 'Generate images with DALL-E 2.',
|
||||||
examples: ['dalle Otter, in the style of the great wave'],
|
examples: ['dalle Otter, in the style of the great wave'],
|
||||||
category: 'limited',
|
category: 'limited',
|
||||||
usage: 'dalle <prompt>'
|
usage: 'dalle <prompt>'
|
||||||
|
|
|
@ -14,6 +14,10 @@ const Statics = Object.freeze({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
brands: {
|
brands: {
|
||||||
|
anthropic: {
|
||||||
|
file: "brands/anthropic.png",
|
||||||
|
revision: 0
|
||||||
|
},
|
||||||
applemaps: {
|
applemaps: {
|
||||||
file: "brands/applemaps.png",
|
file: "brands/applemaps.png",
|
||||||
revision: 1
|
revision: 1
|
||||||
|
@ -156,6 +160,7 @@ function staticAsset(static) {
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports.STATICS = Object.freeze({
|
module.exports.STATICS = Object.freeze({
|
||||||
|
anthropic: staticAsset(Statics.brands.anthropic),
|
||||||
applemaps: staticAsset(Statics.brands.applemaps),
|
applemaps: staticAsset(Statics.brands.applemaps),
|
||||||
bard: staticAsset(Statics.brands.bard),
|
bard: staticAsset(Statics.brands.bard),
|
||||||
bing: staticAsset(Statics.brands.bing),
|
bing: staticAsset(Statics.brands.bing),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue