prompt($request->input('prompt')); $postText = $socialMediaResponse->text; $imagePromptResponse = $creativeDirectorAgent->prompt($postText); $imagePrompt = $imagePromptResponse->text; return response()->json([ 'post' => $postText, 'image_prompt' => $imagePrompt, ]); } }