startLoop starts the agent loop for the current PRD.
()
| 719 | |
| 720 | // startLoop starts the agent loop for the current PRD. |
| 721 | func (a App) startLoop() (tea.Model, tea.Cmd) { |
| 722 | return a.startLoopForPRD(a.prdName) |
| 723 | } |
| 724 | |
| 725 | // startLoopForPRD starts the agent loop for a specific PRD. |
| 726 | func (a App) startLoopForPRD(prdName string) (tea.Model, tea.Cmd) { |