Skip to content

Commit 78b470a

Browse files
authored
Merge pull request #306 from NYU-RTS/dependabot/github_actions/crate-ci/typos-1.44.0
Bump crate-ci/typos from 1.43.5 to 1.44.0
2 parents a5de20c + 24e8203 commit 78b470a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/spellcheck.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
uses: actions/checkout@v6
1818

1919
- name: Spell Check Repo
20-
uses: crate-ci/typos@v1.43.5
20+
uses: crate-ci/typos@v1.44.0
2121
with:
2222
files: docs/**/**/*.md docs/**/**/*.mdx

docs/genai/04_how_to_guides/02_embeddings.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ While Decoder-only LLMs gained massive popularity via their usage in chatbots, E
44

55
```mermaid
66
flowchart LR;
7-
A["natual language text: <br> *GenAI can be used for research*"]
7+
A["natural language text: <br> *GenAI can be used for research*"]
88
B["encoder-only LLM"]
99
C["vector embedding <br> [0.052, 0.094, 0.244, ...]"]
1010
A-- "Input" -->B;
1111
B-- "Output" -->C;
1212
```
1313

1414
:::tip
15-
Embeddings have the ability to encode the semantic meaning of the natual language text/images!
15+
Embeddings have the ability to encode the semantic meaning of the natural language text/images!
1616
:::
1717

1818
The snippet below uses the `text-embedding-3-small` model to create 32-dimensional floating point vector embeddings for the input string:

docs/genai/04_how_to_guides/03_retrieval_augmented_generation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ flowchart TB;
1717
C["encoder-only LLM"]
1818
D@{shape: procs, label: "text chunk embedding"}
1919
E[("vector database")]
20-
F["natual language prompt"]
20+
F["natural language prompt"]
2121
G["query embedding"]
2222
I["relevant chunks"]
2323
J["original prompt with added context"]

0 commit comments

Comments
 (0)