0
stars
7
commits
JavaScript
primary language
Oct 14, 2025
updated
GPT-OSS-Multimodel-MVP1-
├─ .env
├─ favicon.ico
├─ index.html
├─ jsconfig.json
├─ package.json
├─ postcss.config.js
├─ public
│ ├─ assets
│ │ └─ image
│ │ └─ no_image.png
│ ├─ favicon.ico
│ ├─ manifest.json
│ ├─ robots.txt
│ └─ _redirects
├─ README.md
├─ src
│ ├─ App.jsx
│ ├─ components
│ │ ├─ AppIcon.jsx
│ │ ├─ AppImage.jsx
│ │ ├─ ErrorBoundary.jsx
│ │ ├─ ScrollToTop.jsx
│ │ └─ ui
│ │ ├─ Button.jsx
│ │ ├─ Checkbox.jsx
│ │ ├─ Header.jsx
│ │ ├─ Input.jsx
│ │ └─ Select.jsx
│ ├─ index.jsx
│ ├─ pages
│ │ ├─ dashboard
│ │ │ ├─ components
│ │ │ │ ├─ ActivityFeed.jsx
│ │ │ │ ├─ FilterBar.jsx
│ │ │ │ ├─ MetricsCard.jsx
│ │ │ │ ├─ ProjectCard.jsx
│ │ │ │ ├─ QuickActions.jsx
│ │ │ │ └─ TrainingChart.jsx
│ │ │ └─ index.jsx
│ │ ├─ dataset-managment
│ │ │ ├─ components
│ │ │ │ ├─ DatasetCard.jsx
│ │ │ │ ├─ DatasetPreview.jsx
│ │ │ │ ├─ DatasetStats.jsx
│ │ │ │ ├─ FilterControls.jsx
│ │ │ │ └─ UploadInterface.jsx
│ │ │ └─ index.jsx
│ │ ├─ login
│ │ │ ├─ components
│ │ │ │ ├─ LoginForm.jsx
│ │ │ │ ├─ PlatformHighlights.jsx
│ │ │ │ └─ TrustSignals.jsx
│ │ │ └─ index.jsx
│ │ ├─ model-playground
│ │ │ ├─ components
│ │ │ │ ├─ ImageCaptioning.jsx
│ │ │ │ ├─ ImageUploadArea.jsx
│ │ │ │ ├─ InferenceParameters.jsx
│ │ │ │ ├─ InstructionFollowing.jsx
│ │ │ │ ├─ ModelSelector.jsx
│ │ │ │ ├─ PlaygroundTabs.jsx
│ │ │ │ └─ VisualQA.jsx
│ │ │ └─ index.jsx
│ │ ├─ model-training
│ │ │ ├─ components
│ │ │ │ ├─ ConfigurationWizard.jsx
│ │ │ │ ├─ PresetTemplates.jsx
│ │ │ │ ├─ ResourceMonitor.jsx
│ │ │ │ ├─ ScriptGenerator.jsx
│ │ │ │ └─ TrainingProgress.jsx
│ │ │ └─ index.jsx
│ │ └─ NotFound.jsx
│ ├─ Routes.jsx
│ ├─ styles
│ │ ├─ index.css
│ │ └─ tailwind.css
│ └─ utils
│ └─ cn.js
├─ tailwind.config.js
└─ vite.config.mjs
7 commits
JavaScript
98.6%
CSS
1.1%
0
stars
7
commits
JavaScript
primary language
Oct 14, 2025
updated
GPT-OSS-Multimodel-MVP1-
├─ .env
├─ favicon.ico
├─ index.html
├─ jsconfig.json
├─ package.json
├─ postcss.config.js
├─ public
│ ├─ assets
│ │ └─ image
│ │ └─ no_image.png
│ ├─ favicon.ico
│ ├─ manifest.json
│ ├─ robots.txt
│ └─ _redirects
├─ README.md
├─ src
│ ├─ App.jsx
│ ├─ components
│ │ ├─ AppIcon.jsx
│ │ ├─ AppImage.jsx
│ │ ├─ ErrorBoundary.jsx
│ │ ├─ ScrollToTop.jsx
│ │ └─ ui
│ │ ├─ Button.jsx
│ │ ├─ Checkbox.jsx
│ │ ├─ Header.jsx
│ │ ├─ Input.jsx
│ │ └─ Select.jsx
│ ├─ index.jsx
│ ├─ pages
│ │ ├─ dashboard
│ │ │ ├─ components
│ │ │ │ ├─ ActivityFeed.jsx
│ │ │ │ ├─ FilterBar.jsx
│ │ │ │ ├─ MetricsCard.jsx
│ │ │ │ ├─ ProjectCard.jsx
│ │ │ │ ├─ QuickActions.jsx
│ │ │ │ └─ TrainingChart.jsx
│ │ │ └─ index.jsx
│ │ ├─ dataset-managment
│ │ │ ├─ components
│ │ │ │ ├─ DatasetCard.jsx
│ │ │ │ ├─ DatasetPreview.jsx
│ │ │ │ ├─ DatasetStats.jsx
│ │ │ │ ├─ FilterControls.jsx
│ │ │ │ └─ UploadInterface.jsx
│ │ │ └─ index.jsx
│ │ ├─ login
│ │ │ ├─ components
│ │ │ │ ├─ LoginForm.jsx
│ │ │ │ ├─ PlatformHighlights.jsx
│ │ │ │ └─ TrustSignals.jsx
│ │ │ └─ index.jsx
│ │ ├─ model-playground
│ │ │ ├─ components
│ │ │ │ ├─ ImageCaptioning.jsx
│ │ │ │ ├─ ImageUploadArea.jsx
│ │ │ │ ├─ InferenceParameters.jsx
│ │ │ │ ├─ InstructionFollowing.jsx
│ │ │ │ ├─ ModelSelector.jsx
│ │ │ │ ├─ PlaygroundTabs.jsx
│ │ │ │ └─ VisualQA.jsx
│ │ │ └─ index.jsx
│ │ ├─ model-training
│ │ │ ├─ components
│ │ │ │ ├─ ConfigurationWizard.jsx
│ │ │ │ ├─ PresetTemplates.jsx
│ │ │ │ ├─ ResourceMonitor.jsx
│ │ │ │ ├─ ScriptGenerator.jsx
│ │ │ │ └─ TrainingProgress.jsx
│ │ │ └─ index.jsx
│ │ └─ NotFound.jsx
│ ├─ Routes.jsx
│ ├─ styles
│ │ ├─ index.css
│ │ └─ tailwind.css
│ └─ utils
│ └─ cn.js
├─ tailwind.config.js
└─ vite.config.mjs
7 commits
JavaScript
98.6%
CSS
1.1%