Skip to content

Commit

Permalink
add excel cookbook to sidebar, explain XLSX -> Markdown conversion in…
Browse files Browse the repository at this point in the history
… 'How It Works', and give example of parsed markdown
  • Loading branch information
mcembalest authored and manyoso committed Oct 3, 2024
1 parent 067f4b8 commit fdac8ea
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,21 @@ Microsoft Excel allows you to create, manage, and analyze data in spreadsheet fo

## How It Works

GPT4All parses and attaches your excel spreadsheet to the conversation in a format understandable to the model. The model can summarize, generate reports, and glean insights from your spreadsheets all within your conversation.
GPT4All parses your attached excel spreadsheet into Markdown, a format understandable to LLMs, and adds the markdown text to the context for your LLM chat.

For example, the above spreadsheet titled `Income-Statement.xlsx` would be formatted the following way:

```markdown
## Income Statement

|Walt Disney Co.|||||||
|---|---|---|---|---|---|---|
|Consolidated Income Statement|||||||
|||||||||
|US$ in millions|||||||
|12 months ended:|2023-09-30 00:00:00|2022-10-01 00:00:00|2021-10-02 00:00:00|2020-10-03 00:00:00|2019-09-28 00:00:00|2018-09-29 00:00:00|
|Services|79562|74200|61768|59265|60542|50869|
...
...
...
```
1 change: 1 addition & 0 deletions gpt4all-bindings/python/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ nav:
- 'LocalDocs' : 'gpt4all_desktop/localdocs.md'
- 'Settings' : 'gpt4all_desktop/settings.md'
- 'Cookbook':
- 'Local AI Chat with Microsoft Excel': 'gpt4all_desktop/cookbook/use-local-ai-models-to-privately-chat-with-microsoft-excel.md'
- 'Local AI Chat with your Google Drive': 'gpt4all_desktop/cookbook/use-local-ai-models-to-privately-chat-with-google-drive.md'
- 'Local AI Chat with your Obsidian Vault': 'gpt4all_desktop/cookbook/use-local-ai-models-to-privately-chat-with-Obsidian.md'
- 'Local AI Chat with your OneDrive': 'gpt4all_desktop/cookbook/use-local-ai-models-to-privately-chat-with-One-Drive.md'
Expand Down

0 comments on commit fdac8ea

Please sign in to comment.