(error: any)
| 33 | }; |
| 34 | |
| 35 | export const fetchAssistantFailure = (error: any) => { |
| 36 | return { |
| 37 | type: 'FETCH_ASSISTANT_FAILURE', |
| 38 | payload: error, |
| 39 | }; |
| 40 | }; |
| 41 | export const fetchModelRequest = () => { |
| 42 | return { |
| 43 | type: 'FETCH_MODEL_REQUEST', |
no outgoing calls
no test coverage detected