"git@developer.sourcefind.cn:change/sglang.git" did not exist on "2d120f8b1873fe84a6861dfe5656539fa1950a8e"
Commit 9f528c12 authored by Jeffrey Morgan's avatar Jeffrey Morgan
Browse files

update api documentation

parent fdb93ef2
...@@ -92,12 +92,18 @@ Finally, run a model! ...@@ -92,12 +92,18 @@ Finally, run a model!
## API Reference ## API Reference
### `POST /completion` ### `POST /api/pull`
Download a model
```
curl -X POST http://localhost:11343/api/pull -d '{"model": "orca"}'
```
### `POST /api/generate`
Complete a prompt Complete a prompt
``` ```
curl --unix-socket ~/.ollama/ollama.sock http://localhost/api/generate \ curl -X POST http://localhost:11434/api/generate -d '{"model": "orca", "prompt": "hello!", "stream": true}'
-X POST \
-d '{"model": "/path/to/model", "prompt": "Once upon a time", "stream": true}'
``` ```
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment