Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-13270-added-1768239543661.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Added
---

Add Mistral 7B instruct and ChromaDB to the Marketplace ([#13270](https://github.com/linode/manager/pull/13270))
22 changes: 22 additions & 0 deletions packages/manager/public/assets/chroma.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions packages/manager/public/assets/mistral.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions packages/manager/public/assets/openwebui.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions packages/manager/public/assets/vllm.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions packages/manager/public/assets/white/chroma.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions packages/manager/public/assets/white/mistral.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions packages/manager/public/assets/white/openwebui.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions packages/manager/public/assets/white/vllm.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 46 additions & 1 deletion packages/manager/src/features/OneClickApps/oneClickApps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2179,7 +2179,7 @@ export const oneClickApps: Record<number, OCA> = {
alt_description:
'Weaviate is an open-source vector database designed to store and index both data objects and their vector embeddings.',
alt_name: 'Open-source vector database.',
categories: ['Databases'],
categories: ['Vector Databases'],
colors: {
end: 'c4d132',
start: '53b83d',
Expand All @@ -2198,4 +2198,49 @@ export const oneClickApps: Record<number, OCA> = {
'AI-native vector database designed for building advanced AI applications.',
website: 'https://docs.weaviate.io/weaviate',
},
1976719: {
alt_description:
'ChromaDB is an open-source vector database designed for building AI applications. It lets you easily store, index, and query embeddings.',
alt_name: 'Open-source vector database.',
categories: ['Vector Databases'],
colors: {
end: 'ffde2c',
start: '327eff',
},
description:
'ChromaDB is an open-source AI embedding database that makes it easy to build LLM apps by making knowledge, facts, and skills pluggable for LLMs.',
isNew: true,
logo_url: 'chroma.svg',
related_guides: [
{
href: 'https://www.linode.com/docs/products/tools/marketplace/guides/chromadb/',
title: 'Deploy ChromaDB through the Linode Marketplace',
},
],
summary: 'Vector database designed for building advanced AI applications.',
website: 'https://docs.trychroma.com/docs/overview/introduction',
},
1980062: {
alt_description:
'Self-hosted web interface for interacting with and managing LLMs.',
alt_name: 'Open-source AI web and chat interface',
categories: ['Chat', 'LLM', 'AI'],
colors: {
end: 'ffd800',
start: 'e10500',
},
description:
'Open WebUI is an open-source, self-hosted web interface for interacting with and managing large language models. It supports multiple AI backends, multi-user access, and extensible integrations, enabling secure and customizable deployment for local or remote model inference.',
isNew: true,
logo_url: 'mistral.svg',
related_guides: [
{
href: 'https://www.linode.com/docs/products/tools/marketplace/guides/mistral7b-instruct-with-openwebui/',
title:
'Deploy Mistral-7B Instruct with Open WebUI through the Linode Marketplace',
},
],
summary: 'Open-source AI web and chat interface.',
website: 'https://docs.openwebui.com/getting-started/',
},
};
5 changes: 5 additions & 0 deletions packages/manager/src/features/OneClickApps/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,19 @@ export interface Colors {
}

export type AppCategory =
| 'AI'
| 'App Creators'
| 'Chat'
| 'Control Panels'
| 'Databases'
| 'Development'
| 'Games'
| 'LLM'
| 'Media and Entertainment'
| 'ML'
| 'Monitoring'
| 'Productivity'
| 'Security'
| 'Stacks'
| 'Vector Databases'
| 'Website';