Skip to content

Commit

Permalink
fix: typo caught by gptlint (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
transitive-bullshit authored Apr 23, 2024
1 parent 1e99451 commit 599d79b
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/pages/docs/classes/ChatModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Add the params. Overrides existing keys.

> **clone**(`args`?): [`ChatModel`](ChatModel.md)
Clone the model and merge/orverride the given properties.
Clone the model and merge/override the given properties.

#### Parameters

Expand Down
2 changes: 1 addition & 1 deletion docs/pages/docs/classes/CompletionModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Add the params. Overrides existing keys.

> **clone**(`args`?): [`CompletionModel`](CompletionModel.md)
Clone the model and merge/orverride the given properties.
Clone the model and merge/override the given properties.

#### Parameters

Expand Down
2 changes: 1 addition & 1 deletion docs/pages/docs/classes/EmbeddingModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Add the params. Overrides existing keys.

> **clone**(`args`?): [`EmbeddingModel`](EmbeddingModel.md)
Clone the model and merge/orverride the given properties.
Clone the model and merge/override the given properties.

#### Parameters

Expand Down
2 changes: 1 addition & 1 deletion docs/pages/docs/classes/SparseVectorModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Add the params. Overrides existing keys.

> **clone**(`args`?): [`SparseVectorModel`](SparseVectorModel.md)
Clone the model and merge/orverride the given properties.
Clone the model and merge/override the given properties.

#### Parameters

Expand Down
2 changes: 1 addition & 1 deletion src/model/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export class ChatModel extends AbstractModel<
}
}

/** Clone the model and merge/orverride the given properties. */
/** Clone the model and merge/override the given properties. */
extend(args?: PartialChatModelArgs): this {
return new ChatModel({
cacheKey: this.cacheKey,
Expand Down
2 changes: 1 addition & 1 deletion src/model/completion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class CompletionModel extends AbstractModel<
return modelResponse;
}

/** Clone the model and merge/orverride the given properties. */
/** Clone the model and merge/override the given properties. */
extend(args?: PartialCompletionModelArgs): this {
return new CompletionModel({
cacheKey: this.cacheKey,
Expand Down
2 changes: 1 addition & 1 deletion src/model/embedding.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export class EmbeddingModel extends AbstractModel<
return modelResponse;
}

/** Clone the model and merge/orverride the given properties. */
/** Clone the model and merge/override the given properties. */
extend(args?: PartialSparseVectorModelArgs): this {
return new EmbeddingModel({
cacheKey: this.cacheKey,
Expand Down
2 changes: 1 addition & 1 deletion src/model/sparse-vector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export class SparseVectorModel extends AbstractModel<
return { vector, tokens };
}

/** Clone the model and merge/orverride the given properties. */
/** Clone the model and merge/override the given properties. */
extend(args?: PartialSparseVectorModelArgs): this {
return new SparseVectorModel({
cacheKey: this.cacheKey,
Expand Down

0 comments on commit 599d79b

Please sign in to comment.