mirror of
https://github.com/mudler/LocalAI.git
synced 2025-02-21 17:46:41 +00:00
Update README
This commit is contained in:
parent
593ff6308c
commit
3ed2888646
26
README.md
26
README.md
@ -63,18 +63,6 @@ The API takes takes the following arguments:
|
|||||||
| address | ADDRESS | :8080 | The address and port to listen on. |
|
| address | ADDRESS | :8080 | The address and port to listen on. |
|
||||||
|
|
||||||
|
|
||||||
And you'll see:
|
|
||||||
```
|
|
||||||
┌───────────────────────────────────────────────────┐
|
|
||||||
│ Fiber v2.42.0 │
|
|
||||||
│ http://127.0.0.1:8080 │
|
|
||||||
│ (bound on host 0.0.0.0 and port 8080) │
|
|
||||||
│ │
|
|
||||||
│ Handlers ............. 1 Processes ........... 1 │
|
|
||||||
│ Prefork ....... Disabled PID ................. 1 │
|
|
||||||
└───────────────────────────────────────────────────┘
|
|
||||||
```
|
|
||||||
|
|
||||||
Once the server is running, you can make requests to it using HTTP. For example, to generate text based on an instruction, you can send a POST request to the `/predict` endpoint with the instruction as the request body:
|
Once the server is running, you can make requests to it using HTTP. For example, to generate text based on an instruction, you can send a POST request to the `/predict` endpoint with the instruction as the request body:
|
||||||
|
|
||||||
```
|
```
|
||||||
@ -90,7 +78,19 @@ curl --location --request POST 'http://localhost:8080/predict' --header 'Content
|
|||||||
Example of starting the API with `docker`:
|
Example of starting the API with `docker`:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run -ti --rm quay.io/go-skynet/llama-cli:latest api
|
docker run -p 8080:8080 -ti --rm quay.io/go-skynet/llama-cli:latest api
|
||||||
|
```
|
||||||
|
|
||||||
|
And you'll see:
|
||||||
|
```
|
||||||
|
┌───────────────────────────────────────────────────┐
|
||||||
|
│ Fiber v2.42.0 │
|
||||||
|
│ http://127.0.0.1:8080 │
|
||||||
|
│ (bound on host 0.0.0.0 and port 8080) │
|
||||||
|
│ │
|
||||||
|
│ Handlers ............. 1 Processes ........... 1 │
|
||||||
|
│ Prefork ....... Disabled PID ................. 1 │
|
||||||
|
└───────────────────────────────────────────────────┘
|
||||||
```
|
```
|
||||||
|
|
||||||
### Golang client API
|
### Golang client API
|
||||||
|
Loading…
x
Reference in New Issue
Block a user