diff --git a/docs/inference-providers/_toctree.yml b/docs/inference-providers/_toctree.yml index 5129288c2..c520fdd3d 100644 --- a/docs/inference-providers/_toctree.yml +++ b/docs/inference-providers/_toctree.yml @@ -101,6 +101,8 @@ title: Replicate - local: providers/sambanova title: SambaNova + - local: providers/scaleway + title: Scaleway - local: providers/together title: Together diff --git a/docs/inference-providers/index.md b/docs/inference-providers/index.md index 7fda1a2ba..8edcdb003 100644 --- a/docs/inference-providers/index.md +++ b/docs/inference-providers/index.md @@ -26,6 +26,7 @@ Our platform integrates with leading AI infrastructure providers, giving you acc | [Nscale](./providers/nscale) | ✅ | ✅ | | ✅ | | | | [Replicate](./providers/replicate) | | | | ✅ | ✅ | ✅ | | [SambaNova](./providers/sambanova) | ✅ | | ✅ | | | | +| [Scaleway](./providers/scaleway) | ✅ | | ✅ | | | | | [Together](./providers/together) | ✅ | ✅ | | ✅ | | | ## Why Choose Inference Providers? diff --git a/docs/inference-providers/providers/scaleway.md b/docs/inference-providers/providers/scaleway.md new file mode 100644 index 000000000..70f2d91b5 --- /dev/null +++ b/docs/inference-providers/providers/scaleway.md @@ -0,0 +1,55 @@ + + +# Scaleway + + + +All supported Scaleway models can be found [here](https://huggingface.co/models?inference_provider=scaleway&sort=trending) + + + +
+ + + + +
+ +
+ + + + +
+ +Scaleway is a European cloud provider, serving latest LLM models through its [Generative APIs](https://www.scaleway.com/en/generative-apis/) alongside a complete cloud ecosystem. + +## Supported tasks + + +### Chat Completion (LLM) + +Find out more about Chat Completion (LLM) [here](../tasks/chat-completion). + + + diff --git a/scripts/inference-providers/scripts/generate.ts b/scripts/inference-providers/scripts/generate.ts index 5da8d5933..701b26922 100644 --- a/scripts/inference-providers/scripts/generate.ts +++ b/scripts/inference-providers/scripts/generate.ts @@ -46,6 +46,7 @@ const PROVIDERS_HUB_ORGS: Record = { nscale: "nscale", replicate: "replicate", sambanova: "sambanovasystems", + scaleway: "scaleway", together: "togethercomputer", }; @@ -63,6 +64,7 @@ const PROVIDERS_URLS: Record = { nscale: "https://www.nscale.com/", replicate: "https://replicate.com/", sambanova: "https://sambanova.ai/", + scaleway: "https://www.scaleway.com", together: "https://together.xyz/", }; const INFERENCE_PROVIDERS = Object.keys(PROVIDERS_HUB_ORGS); @@ -543,6 +545,9 @@ async function fetchWarmModels( const providerData = providerMapping.filter( (mapping) => mapping.provider === provider, )[0]; + if (!providerData) { + return; + } return { modelId: topModelData.id, provider: provider, diff --git a/scripts/inference-providers/templates/providers/scaleway.handlebars b/scripts/inference-providers/templates/providers/scaleway.handlebars new file mode 100644 index 000000000..ca6198f5a --- /dev/null +++ b/scripts/inference-providers/templates/providers/scaleway.handlebars @@ -0,0 +1,15 @@ +# Scaleway + + + +All supported Scaleway models can be found [here](https://huggingface.co/models?inference_provider=scaleway&sort=trending) + + + +{{{logoSection}}} + +{{{followUsSection}}} + +Scaleway is a European cloud provider, serving latest LLM models through its [Generative APIs](https://www.scaleway.com/en/generative-apis/) alongside a complete cloud ecosystem. + +{{{tasksSection}}} \ No newline at end of file