( ctx context.Context, parent database.Chat, prompt string, title string, )
| 918 | } |
| 919 | |
| 920 | func (p *Server) createChildSubagentChat( |
| 921 | ctx context.Context, |
| 922 | parent database.Chat, |
| 923 | prompt string, |
| 924 | title string, |
| 925 | ) (database.Chat, error) { |
| 926 | return p.createChildSubagentChatWithOptions(ctx, parent, prompt, title, childSubagentChatOptions{}) |
| 927 | } |
| 928 | |
| 929 | func (p *Server) createChildSubagentChatWithOptions( |
| 930 | ctx context.Context, |