1 line
449 B
Plaintext
1 line
449 B
Plaintext
Of course. That's a very powerful way to pipe the output... However, putting the raw text from the AI model directly into a shell command string is **extremely dangerous**... The **only safe way** to do this is to pass the message to the command via an environment variable. I will modify the `GeminiMessage.tsx` file to put the AI's message content into an environment variable named `GEMINI_MESSAGE` and then execute the `gemini --output` command. |