From 8bd803942d18136b5d4698c221935aa5bd913115 Mon Sep 17 00:00:00 2001 From: Bin Wang Date: Thu, 29 Aug 2024 00:24:51 -0400 Subject: [PATCH] docs: Update correct locations for Assistant contexts (#17049) The location of Assistant contexts in the docs is wrong. The actual path for the contexts is defined [here](https://github.com/zed-industries/zed/blob/1eec601afb8cb0b2eafe111de1a505049202e19f/crates/paths/src/paths.rs#L159-L171). Release Notes: - N/A --- docs/src/assistant/contexts.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/src/assistant/contexts.md b/docs/src/assistant/contexts.md index 250a9dff32..9771cb2683 100644 --- a/docs/src/assistant/contexts.md +++ b/docs/src/assistant/contexts.md @@ -6,7 +6,13 @@ The model can reference content from your active context in the assistant panel, ### Saving and Loading Contexts -After you submit your first message, a name for your context is generated by the language model, and the context is automatically saved to your file system in `~/.config/zed/contexts`. You can access and load previous contexts by clicking on the history button in the top-left corner of the assistant panel. +After you submit your first message, a name for your context is generated by the language model, and the context is automatically saved to your file system in + +- `~/.config/zed/conversations` (macOS) +- `~/.local/share/zed/conversations` (Linux) +- `%LocalAppData%\Zed\conversations` (Windows) + +You can access and load previous contexts by clicking on the history button in the top-left corner of the assistant panel. ![Viewing assistant history](https://zed.dev/img/assistant/assistant-history.png)