Skip to content

Commit ef268dc

Browse files
committed
Upate LLM Advisor doc
1 parent febdbf4 commit ef268dc

7 files changed

+21
-21
lines changed

docs/llm-provider/llm_provider_anthropic.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Anthropic's Claude models excel at code analysis with a strong focus on safety a
1212

1313
2. **Set Environment Variable**:
1414

15-
```bash
16-
export ANTHROPIC_API_KEY=sk-ant-your-api-key
17-
```
15+
Set **ANTHROPIC_API_KEY=sk-ant-your-api-key** in your CI/CD secret variables.
16+
17+
> Make sure the secret variable is sent to MegaLinter from your CI/CD workflow. Example in GitHub Action: `ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}`
1818
1919
3. **Configure MegaLinter**:
2020

docs/llm-provider/llm_provider_deepseek.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ DeepSeek offers specialized code-focused models at competitive prices, optimized
1212

1313
2. **Set Environment Variable**:
1414

15-
```bash
16-
export DEEPSEEK_API_KEY=your-deepseek-api-key
17-
```
15+
Set **DEEPSEEK_API_KEY=your-deepseek-api-key** in your CI/CD secret variables.
16+
17+
> Make sure the secret variable is sent to MegaLinter from your CI/CD workflow. Example in GitHub Action: `DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY }}`
1818
1919
3. **Configure MegaLinter**:
2020

docs/llm-provider/llm_provider_google_genai.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Google's Gemini models offer excellent performance at competitive prices with st
1515

1616
2. **Set Environment Variable**:
1717

18-
```bash
19-
export GOOGLE_API_KEY=AIza-your-api-key
20-
```
18+
Set **GOOGLE_API_KEY=AIza-your-api-key** in your CI/CD secret variables.
19+
20+
> Make sure the secret variable is sent to MegaLinter from your CI/CD workflow. Example in GitHub Action: `GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}`
2121
2222
3. **Configure MegaLinter**:
2323

docs/llm-provider/llm_provider_grok.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Grok is xAI's conversational AI model, designed for real-time information and en
1212

1313
2. **Set Environment Variable**:
1414

15-
```bash
16-
export GROK_API_KEY=your-grok-api-key
17-
```
15+
Set **GROK_API_KEY=your-grok-api-key** in your CI/CD secret variables.
16+
17+
> Make sure the secret variable is sent to MegaLinter from your CI/CD workflow. Example in GitHub Action: `GROK_API_KEY: ${{ secrets.GROK_API_KEY }}`
1818
1919
3. **Configure MegaLinter**:
2020

docs/llm-provider/llm_provider_huggingface.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ pip install langchain-huggingface transformers torch
2626

2727
2. **Set Environment Variable** (optional):
2828

29-
```bash
30-
export HUGGINGFACE_API_TOKEN=hf_your-token
31-
```
29+
Set **HUGGINGFACE_API_TOKEN=hf_your-token** in your CI/CD secret variables.
30+
31+
> Make sure the secret variable is sent to MegaLinter from your CI/CD workflow. Example in GitHub Action: `HUGGINGFACE_API_TOKEN: ${{ secrets.HUGGINGFACE_API_TOKEN }}`
3232
3333
3. **Configure MegaLinter**:
3434

docs/llm-provider/llm_provider_mistralai.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Mistral AI provides high-quality language models with European data residency an
1212

1313
2. **Set Environment Variable**:
1414

15-
```bash
16-
export MISTRAL_API_KEY=your-mistral-api-key
17-
```
15+
Set **MISTRAL_API_KEY=your-mistral-api-key** in your CI/CD secret variables.
16+
17+
> Make sure the secret variable is sent to MegaLinter from your CI/CD workflow. Example in GitHub Action: `MISTRAL_API_KEY: ${{ secrets.MISTRAL_API_KEY }}`
1818
1919
3. **Configure MegaLinter**:
2020

docs/llm-provider/llm_provider_openai.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ OpenAI provides state-of-the-art language models offering excellent code analysi
1212

1313
2. **Set Environment Variable**:
1414

15-
```bash
16-
export OPENAI_API_KEY=sk-your-api-key-here
17-
```
15+
Set **OPENAI_API_KEY=sk-your-api-key-here** in your CI/CD secret variables.
16+
17+
> Make sure the secret variable is sent to MegaLinter from your CI/CD workflow. Example in GitHub Action: `OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}`
1818
1919
3. **Configure MegaLinter**:
2020

0 commit comments

Comments
 (0)