feat: store working directory for sessions (#1559)

This commit is contained in:
Salman Mohammed
2025-03-07 11:12:57 -05:00
committed by GitHub
parent 2d0cd8e245
commit 32f20cd690
20 changed files with 334 additions and 144 deletions
+5 -2
View File
@@ -268,8 +268,11 @@ export function useMessageStream({
const abortController = new AbortController();
abortControllerRef.current = abortController;
// Log the request messages for debugging
console.log('Sending messages to server:', JSON.stringify(requestMessages, null, 2));
// Log request details for debugging
console.log('Request details:', {
messages: requestMessages,
body: extraMetadataRef.current.body,
});
// Send request to the server
const response = await fetch(api, {