Removing formatting in an LLM response

Got tired of waiting and added the changes to the piper myself
Edit handler.py

    async def _handle_event(self, event: Event) -> bool:
        synthesize = Synthesize.from_event(event)
        _LOGGER.debug(synthesize)

        raw_text = synthesize.text
        
        # add this code to clean up the text
        raw_text = raw_text.replace("*", "")