Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
185 Bytes
import gql from 'graphql-tag';
import * as fragments from '../fragments';
export default gql`
subscription ChatAdded {
chatAdded {
...Chat
}
}
${fragments.chat}
`;