Skip to content

Commit

Permalink
Merge pull request #18 from telekom/modifications-florian
Browse files Browse the repository at this point in the history
Modifications Florian
  • Loading branch information
FPullem authored Nov 27, 2024
2 parents baff79c + 5609bf4 commit 8393762
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 15 deletions.
4 changes: 3 additions & 1 deletion docs/01_Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import Link from '@docusaurus/Link';

## Available LLM-APIs on AI Foundation Services

**Request a Trial API key:** [Fill out our form](https://docs.google.com/forms/d/e/1FAIpQLSdBDhCijYUIUeyJVTLzCy0rm55XgD2nG5supwtGRHXVfaX-fw/viewform)

Our LLM model serving enables effortless querying of open-source LLM models like Llama3, Mistral, and other open-source models through a simple, OpenAI-compatible API.

<AvailableModels />
Expand Down Expand Up @@ -64,7 +66,7 @@ Our LLM model serving enables effortless querying of open-source LLM models like
:::tip
Begin with our APIs by exploring the [**Quickstart Guide**](./Quickstart.md) 🚀 for setup and integration instructions.
Our API suite provides everything you need to interact seamlessly with advanced language models, allowing for customization, secure data handling, and efficient deployment across various applications.
:::
:::

---

Expand Down
10 changes: 5 additions & 5 deletions docs/02_Introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ Welcome to AI Foundation Services - your gateway to private, secure, and scalabl

### Get Started

1. **Generate an API key:** [Fill out our form](https://docs.google.com/forms/d/e/1FAIpQLSdBDhCijYUIUeyJVTLzCy0rm55XgD2nG5supwtGRHXVfaX-fw/viewform) to receive your API key.
2. **Run your first query:** Once you have your API key, dive into querying LLMs and unlocking their potential.
1. **Request a Trial API key:** [Fill out our form](https://docs.google.com/forms/d/e/1FAIpQLSdBDhCijYUIUeyJVTLzCy0rm55XgD2nG5supwtGRHXVfaX-fw/viewform) to receive your API key.
2. **Run your first query:** Once you have your API key, [dive into querying LLMs](./Quickstart.md) to unlock their potential.

## Our Product
### Magenta SmartChat {#magenta-smartchat}

SmartChat - an intelligent chat application powered by our LLM endpoints and RAG API. SmartChat allows you to build dynamic conversational interfaces for customer service, internal knowledge bases, and more.
SmartChat: An intelligent chat application powered by our LLM endpoints and RAG API. SmartChat allows you to build dynamic conversational interfaces for customer service, internal knowledge bases, and more.

[Magenta SmartChat](https://smartchat.llmhub.t-systems.net/)

Expand All @@ -36,7 +36,7 @@ Playground: Experiment with different LLMs, Prompt Templates and Documents by pr

### Create-TSI {#create-tsi}

create-tsi is a generative AI RAG toolkit that generates AI Applications using LlamaIndex with low code.
Create-TSI: A generative AI RAG toolkit that generates AI Applications using LlamaIndex with low code.

[Create TSI on GitHub](https://github.com/telekom/create-tsi)

Expand All @@ -47,7 +47,7 @@ LLM model serving, allowing you to effortlessly query open-source LLM models lik

### API Key Portal {#api-key-portal}

PI Portal - Allows you to manage your LLM API Keys and monitor your token usage
API Portal: Allows you to manage your LLM API Keys and monitor your token usage

[LLM API Key Portal](https://auth.llmhub.t-systems.net/)

Expand Down
19 changes: 10 additions & 9 deletions src/components/AvailableModels.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,21 @@ function AvailableModels() {
};

const models = [
{ name: "Teuken 7B Instruct", provider: "OpenGPT-X", availability: "Available" },
{ name: "GPT-4-Omni", provider: "OpenAI (Azure)", availability: "Available" },
{ name: "Llama-3.1-70B-Instruct", provider: "Meta", availability: "Available" },
{ name: "Claude 3.5 Sonnet", provider: "Anthropic", availability: "Available" },
{ name: "Llama-3.1-70B-Instruct", provider: "Meta", availability: "Available" },
{ name: "Mixtral-8x7b-Instruct-v.01", provider: "Mistral AI", availability: "Available" },
{ name: "LLaVa-v1.6-13B", provider: "Community", availability: "Available" },
{ name: "Llama-3.1-405B-Instruct", provider: "Google", availability: "Available" },
{ name: "Gemini 1.5 Pro", provider: "Google", availability: "Available" },
{ name: "GPT-4-Turbo-2024-05-09", provider: "OpenAI (Azure)", availability: "Available" },
{ name: "Mixtral-8x7b Instruct v.01", provider: "Mistral AI", availability: "Available" },
{ name: "CodeLlama-2", provider: "Meta", availability: "Available" },
{ name: "LLaVA-NeXT", provider: "Community", availability: "Available" },
{ name: "GPT-3.5-Turbo-0314", provider: "OpenAI (Azure)", availability: "On request" },
{ name: "Claude 3 Opus", provider: "Anthropic", availability: "On request" },
{ name: "Gemini 1.5 Flash", provider: "Google", availability: "On request" },
{ name: "GPT-4-Turbo-128k-France", provider: "OpenAI (Azure)", availability: "Available" },
{ name: "GPT-3.5-Turbo-0314", provider: "OpenAI (Azure)", availability: "Available" },
{ name: "Mistral-Nemo-Instruct-2407", provider: "Mistral AI", availability: "On request" },
{ name: "Mistral-Large-2407", provider: "Mistral AI", availability: "On request" },
{ name: "Mistral-Nemo-2407", provider: "Mistral AI", availability: "On request" },
{ name: "Gemini 1.5 Flash", provider: "Google", availability: "On request" },
{ name: "DeepSeek-Coder-V2-Lite-Instruct", provider: "DeepSeek", availability: "On request" },
{ name: "Qwen2-VL", provider: "Alibaba", availability: "On request" },
];

return (
Expand Down

0 comments on commit 8393762

Please sign in to comment.