Skip to content

Commit

Permalink
fixing some spacing and object fields
Browse files Browse the repository at this point in the history
  • Loading branch information
jmansdorfer committed Oct 1, 2024
1 parent 42971e8 commit 9e782ea
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
6 changes: 3 additions & 3 deletions fern/docs/pages/reference/chat_vision.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -242,11 +242,11 @@ The output will look something like:
],
"id": "cmpl-27dc83fb-1ef4-48f0-8931-59c812d5a12c",
"object": "text.completion",
"created": 1727795491
"created": 1727795491,
"model": "llava-1.5-7b-hf"
}
```
This approach presents a straightforward way for readers to choose and apply the
code example that best suits their needs for generating text completions using
either Python, Go, Rust, JS, or cURL.
either Python, Go, Rust, JS, or cURL.
20 changes: 10 additions & 10 deletions fern/docs/pages/reference/injection.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -155,16 +155,16 @@ The output will look something like:

```json
{
"checks": [
{
"probability": 1.0,
"index": 0,
"status": "success"
}
],
"created": "1726861951",
"id": "injection-XSCwrT2rbuPll5bdHLoQdcWUvpdhyupa",
"object": "injection_check"
"checks": [
{
"probability":1.0,
"index":0,
"status":"success"
}
],
"created":"1726861951",
"id":"injection-XSCwrT2rbuPll5bdHLoQdcWUvpdhyupa",
"object":"injection_check"
}
```

Expand Down
3 changes: 2 additions & 1 deletion fern/docs/pages/usingllms/accessing_llms.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ output which includes the completion.
],
"created": 1720018377,
"id": "cmpl-7yX6KVwvUTPPqUM7H2Z4KNadDgEhI",
"object": "text_completion"
"object": "text_completion",
"model": "Hermes-2-Pro-Llama-3-8B"
}
````

Expand Down
1 change: 1 addition & 0 deletions fern/docs/pages/usingllms/chat_vision.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ The output of these will be similar to this:
],
"created": 1723228682,
"id": "chat-zstjj2MKpRdKfBmCMILK9wgx7I09N",
"model": "llava-1.5-7b-hf",
"object": "chat_completion"
}
```

0 comments on commit 9e782ea

Please sign in to comment.