Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 397f86a

Browse files
committed
fix typo
1 parent 321baea commit 397f86a

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

docs/docs/new/architecture.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ title: Architecture
44

55
![Nitro Architecture](img/architecture.drawio.png)
66

7-
### Details element example
8-
97
## Key Concepts
108

119
## Inference Server

docs/openapi/NitroAPI.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ paths:
167167
operationId: createChatCompletion
168168
tags:
169169
- Chat Completion
170-
summary: Create an chat with the model.
170+
summary: Create a chat with the model.
171171
requestBody:
172172
content:
173173
application/json:
@@ -544,23 +544,23 @@ components:
544544
stream:
545545
type: boolean
546546
default: true
547-
description: Enables continuous output generation, allowing for streaming of model responses.
547+
description: Enables continuous output generation, allowing for streaming of model responses
548548
model:
549549
type: string
550550
example: "gpt-3.5-turbo"
551-
description: Specifies the model being used for inference or processing tasks.
551+
description: Specifies the model being used for inference or processing tasks
552552
max_tokens:
553553
type: number
554554
default: 2048
555555
description: The maximum number of tokens the model will generate in a single response
556556
stop:
557557
type: arrays
558558
example: ["hello"]
559-
description: Defines specific tokens or phrases at which the model will stop generating further output.
559+
description: Defines specific tokens or phrases at which the model will stop generating further output
560560
frequency_penalty:
561561
type: number
562562
default: 0
563-
description: Adjusts the likelihood of the model repeating words or phrases in its output.
563+
description: Adjusts the likelihood of the model repeating words or phrases in its output
564564
presence_penalty:
565565
type: number
566566
default: 0
@@ -570,7 +570,7 @@ components:
570570
default: 0.7
571571
min: 0
572572
max: 1
573-
description: Controls the randomness of the model's output.
573+
description: Controls the randomness of the model's output
574574
top_p:
575575
type: number
576576
default: 0.95

0 commit comments

Comments
 (0)