Skip to content

Commit

Permalink
Merge pull request #119 from ppatierno/patch-1
Browse files Browse the repository at this point in the history
Fixed Ollama base URL
  • Loading branch information
AlexsJones authored Dec 16, 2024
2 parents 0c38c83 + f2929a2 commit 4f62464
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/reference/providers/backend.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ Ollama is a local model, which has an OpenAI compatible API. It supports the mod
- To start the API server, follow the instruction in the [Ollama docs](https://github.com/ollama/ollama?tab=readme-ov-file#quickstart).
- Authenticate K8sGPT with LocalAI:
```bash
k8sgpt auth add --backend localai --model <model_name> --baseurl http://localhost:11434/v1
k8sgpt auth add --backend localai --model <model_name> --baseurl http://localhost:11434
```
- Analyze with a LocalAI backend:
```bash
Expand All @@ -224,7 +224,7 @@ Ollama can get up and running locally with large language models. It runs Llama
- Authenticate K8sGPT with Ollama:
```bash
k8sgpt auth add --backend ollama --model llama2 --baseurl http://localhost:11434/v1
k8sgpt auth add --backend ollama --model llama2 --baseurl http://localhost:11434
```
- Analyze with a Ollama backend:
```bash
Expand Down

0 comments on commit 4f62464

Please sign in to comment.