k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
function WebGLShader(gl, type, string) {
const shader = gl.createShader(type);
gl.shaderSource(shader, string);
gl.compileShader(shader);
return shader;
}
export { WebGLShader };