The following are some notes taken while testing and intercepting requests from the Zed Assistant Panel (Zed version 0.150.4) to their server hosting Claude 3.5 Sonnet model.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- add 2 commands: | |
-- CodeCompanionSave [space delimited args] | |
-- CodeCompanionLoad | |
-- Save will save current chat in a md file named 'space-delimited-args.md' | |
-- Load will use a telescope filepicker to open a previously saved chat | |
-- create a folder to store our chats | |
local Path = require("plenary.path") | |
local data_path = vim.fn.stdpath("data") | |
local save_folder = Path:new(data_path, "cc_saves") |
OlderNewer