Llama-3.1-8B-DALv0.1
/
venv
/lib
/python3.12
/site-packages
/jupyterlab
/tests
/mock_packages
/mimeextension
/index.js
// Copyright (c) Jupyter Development Team. | |
// Distributed under the terms of the Modified BSD License. | |
var Widget = require('@lumino/widgets').Widget; | |
var factory = { | |
safe: true, | |
mimeTypes: ['text/plain'], | |
defaultRank: 1000, | |
createRenderer: function () { | |
return new Widget(); | |
} | |
}; | |
module.exports = { | |
id: '@jupyterlab/mock-mime-extension:plugin', | |
mimeType: 'text/plain', | |
rendererFactory: factory, | |
widgetFactoryOptions: { | |
name: 'Test', | |
fileExtensions: ['.txt'], | |
readOnly: true | |
} | |
}; | |