Skip to content

Commit

Permalink
docs: remove empty codeblock
Browse files Browse the repository at this point in the history
  • Loading branch information
KindOfAScam committed Jun 22, 2024
1 parent e7a6bb3 commit e431e9f
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions apps/docs/docs/modules/data_loader.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ See [LlamaParseReader.ts](https://github.com/run-llama/LlamaIndexTS/blob/main/pa

<CodeBlock language="ts">{CodeSource3}</CodeBlock>

Additional options can be set with the `LlamaParseReader` constructor.
All options can be set with the `LlamaParseReader` constructor.

They can be divided in two groups:
They can be divided into two groups.

General params:
##### General params:

- `apiKey` is required. Can be set as an environment variable `LLAMA_CLOUD_API_KEY`
- `checkInterval` is the interval in seconds to check if the parsing is done. Default is `1`.
- `maxTimeout` is the maximum timout to wait for parsing to finish. Default is `2000`
- `verbose` shows progress of the parsing. Default is `true`
- `ignoreErrors` set to false to get errors while parsing. Default is `true` and returns an empty array on error.

Advanced params:
##### Advanced params:

- `resultType` can be set to `markdown`, `text` or `json`. Defaults to `text`. More information about `json` mode see below.
- `language` primarly helps with OCR recognition. Defaults to `en`. Click [here](../api/type-aliases/Language.md) for a list of supported languages.
Expand Down Expand Up @@ -121,7 +121,3 @@ Below a full example of `LlamaParse` integrated in `SimpleDirectoryReader` with

- [SimpleDirectoryReader](../api/classes/SimpleDirectoryReader.md)
- [LlamaParseReader](../api/classes/LlamaParseReader.md)

```
```

0 comments on commit e431e9f

Please sign in to comment.