Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
katopz committed Jul 24, 2024
2 parents b2712bd + 3cfb429 commit 129f1ae
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
- [ML](ml/mod.md)
- [Large Language Model](ml/large-language-model.md)
- [Inferences](ml/infer/mod.md)
- [ollama](ml/infer/ollama.md)
- [TabbyML](ml/infer/tabbyml.md)
- [WasmEdge](ml/infer/wasmedge.md)
- [Hugging Face - Text Generation Inference](ml/infer/huggingface-text-generation-inference.md)
Expand Down
1 change: 0 additions & 1 deletion src/ml/infer/llama.cpp.md

This file was deleted.

2 changes: 1 addition & 1 deletion src/ml/infer/mod.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
- [x] [WasmEdge](./wasmedge.md) // MacOS/Windows/WSL2
- [x] [TabbyML](./tabbyml.md) // MacOS/Windows/WSL2
- [x] [llama.cpp](https://github.com/ggerganov/llama.cpp) // MacOS/Windows // 13GB // 34.01 tokens/sec
- [x] [ollama](https://ollama.ai/) // MacOS
- [x] [ollama](./ollama.md) // MacOS/Windows/WSL2
20 changes: 20 additions & 0 deletions src/ml/infer/ollama.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# ollama

## Setup

### Windows

Follow the step at [ollama](https://ollama.ai/)

```
ollama run llama3.1
```

## Serve (optional via 13434 PORT)

### Windows

```
SET OLLAMA_HOST=0.0.0.0:13434
ollama serve
```

0 comments on commit 129f1ae

Please sign in to comment.