From 22273965bbcb08cbdf0031cfdf711c43484da8af Mon Sep 17 00:00:00 2001 From: Michele Riva Date: Thu, 29 Feb 2024 21:24:14 -0800 Subject: [PATCH] docs: adds link to image in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 88b056f..2b53c6b 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ import { FixedChunker, NLPChunker } from 'jsr:@orama/chunker' Orama Chunker is really easy to use. First of all, you have to decide which chunking strategy you want to adopt. -![Chunking Strategies](/misc/chunking-strategies.png) +![[Chunking Strategies](/misc/chunking-strategies.png)](https://raw.githubusercontent.com/askorama/chunker/main/misc/chunking-strategies.png) The **Fixed Chunker** will divide your input text into several pieces of a specified size. It does not consider the semantics of your input text, as its sole purpose is to divide the text and ensure that each piece contains a maximum number of tokens. It is slightly faster and lighter as it requires fewer computations to determine the chunking strategy.