You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log('Sending image to LLM. Image data length:',capturedImageData ? capturedImageData.length : 'null');
657
+
649
658
// Send image data directly to LLM for analysis
650
659
constpayload={
651
660
message: `Please analyze the colors in this image and provide exactly 5 dominant colors in hex format. Response format: {"colors": ["#hex1", "#hex2", "#hex3", "#hex4", "#hex5"]}.`,
@@ -654,8 +663,9 @@ function sendImageToLLM() {
654
663
imageData: capturedImageData// Send image data directly
655
664
};
656
665
657
-
console.log('Sending image to LLM');
666
+
console.log('Sending image to LLM with payload:',JSON.stringify(payload,null,2));
0 commit comments