agent-zero-ai / webui /components /projects /project-file-structure-test.html
Tsitsi19's picture
Upload folder using huggingface_hub
8d1819a verified
<html>
<head>
<title>File structure test</title>
<script type="module">
import { store } from "/components/projects/projects-store.js";
</script>
</head>
<body>
<div x-data>
<template x-if="$store.projects && $store.projects.selectedProject">
<div>
<h3>File structure test - <span x-text="$store.projects.selectedProject.name"></span></h3>
<pre x-text="$store.projects.fileStructureTestOutput"></pre>
</div>
</template>
</div>
</body>
<style>
</style>
</html>