diff --git a/commands/message/limited/chat.js b/commands/message/limited/chat.js index a519dbd..2fc30f2 100644 --- a/commands/message/limited/chat.js +++ b/commands/message/limited/chat.js @@ -17,6 +17,10 @@ const MODELS = { "GPT4": { icon: STATICS.openai, name: "GPT-4" + }, + "CLAUDE": { + icon: STATICS.anthropic, + name: "Claude" } } diff --git a/commands/message/limited/dalle.js b/commands/message/limited/dalle.js index 8bad9e8..23fd916 100644 --- a/commands/message/limited/dalle.js +++ b/commands/message/limited/dalle.js @@ -13,8 +13,8 @@ module.exports = { name: 'dalle', label: 'text', metadata: { - description: `${iconPill("generative_ai", "LIMITED TESTING")}\n\nGenerate images with DALL-E`, - description_short: 'Generate images with DALL-E.', + description: `${iconPill("generative_ai", "LIMITED TESTING")}\n\nGenerate images with DALL-E 2.`, + description_short: 'Generate images with DALL-E 2.', examples: ['dalle Otter, in the style of the great wave'], category: 'limited', usage: 'dalle ' diff --git a/labscore/utils/statics.js b/labscore/utils/statics.js index 8ad2bc0..e0ed789 100644 --- a/labscore/utils/statics.js +++ b/labscore/utils/statics.js @@ -14,6 +14,10 @@ const Statics = Object.freeze({ }, }, brands: { + anthropic: { + file: "brands/anthropic.png", + revision: 0 + }, applemaps: { file: "brands/applemaps.png", revision: 1 @@ -156,6 +160,7 @@ function staticAsset(static) { } module.exports.STATICS = Object.freeze({ + anthropic: staticAsset(Statics.brands.anthropic), applemaps: staticAsset(Statics.brands.applemaps), bard: staticAsset(Statics.brands.bard), bing: staticAsset(Statics.brands.bing),