Making `prompt` Optional in `AiChat.streamText` for Continuation Use Cases
Thoughts on making
prompt optional on AiChat.streamText (or enabling the following use case in some other way)? Sometimes you just want the LLM to continue where it left off, along the lines of the example below. The first LLM call finishes with a stop reason of tool-calls, and the loop just needs to call the llm again w the history so that it can complete the task requested in the prompt. I'm passing prompt: '' atm, but this results in empty text parts, which providers like Anthropic reject.