Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import * as types from '../action-types';
export const fetchSuggestions = ( siteId ) => ( {
type: types.SUGGESTIONS_FETCH,
siteId,
} );
export const storeSuggestions = ( siteId, suggestions ) => ( {
type: types.SUGGESTIONS_STORE,
siteId,
suggestions,
} );
export default {
fetchSuggestions,
storeSuggestions,
};