(question: string)
| 24 | } |
| 25 | |
| 26 | export const chatQueryOptions = (question: string) => |
| 27 | queryOptions({ |
| 28 | queryKey: ['chat', question], |
| 29 | queryFn: streamedQuery({ |
| 30 | streamFn: () => chatAnswer(question), |
| 31 | }), |
| 32 | staleTime: Infinity, |
| 33 | }) |
no test coverage detected
searching dependent graphs…