Skip to content

Commit 3c638d8

Browse files
committed
Document Sync by Tina
1 parent 4759996 commit 3c638d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/stable/getting_started/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Now, you can query the model by any OpenAI API client. For example, you can use
4949
curl http://localhost:8343/v1/chat/completions \
5050
-H "Content-Type: application/json" \
5151
-d '{
52-
"model": "opt-1.3b",
52+
"model": "facebook/opt-1.3b",
5353
"messages": [
5454
{"role": "system", "content": "You are a helpful assistant."},
5555
{"role": "user", "content": "What is your name?"}
@@ -58,5 +58,5 @@ curl http://localhost:8343/v1/chat/completions \
5858
```
5959
Expected output:
6060
```json
61-
{"id":"chatcmpl-9f812a40-6b96-4ef9-8584-0b8149892cb9","object":"chat.completion","created":1720021153,"model":"opt-1.3b","choices":[{"index":0,"message":{"role":"assistant","content":"system: You are a helpful assistant.\nuser: What is your name?\nsystem: I am a helpful assistant.\n"},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":16,"completion_tokens":26,"total_tokens":42}}
61+
{"id":"chatcmpl-9f812a40-6b96-4ef9-8584-0b8149892cb9","object":"chat.completion","created":1720021153,"model":"facebook/opt-1.3b","choices":[{"index":0,"message":{"role":"assistant","content":"system: You are a helpful assistant.\nuser: What is your name?\nsystem: I am a helpful assistant.\n"},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":16,"completion_tokens":26,"total_tokens":42}}
6262
```

0 commit comments

Comments
 (0)