├── .gitignore ├── App.tsx ├── README.md ├── components ├── AppModeView.tsx ├── Edge.tsx ├── FileUploader.tsx ├── GroupComponent.tsx ├── HistorySidebar.tsx ├── Node.tsx ├── OutputDisplay.tsx ├── SettingsPanel.tsx ├── Sidebar.tsx └── icons.tsx ├── index.html ├── index.tsx ├── metadata.json ├── package.json ├── presets.ts ├── services └── geminiService.ts ├── tsconfig.json ├── types.ts └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/README.md -------------------------------------------------------------------------------- /components/AppModeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/components/AppModeView.tsx -------------------------------------------------------------------------------- /components/Edge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/components/Edge.tsx -------------------------------------------------------------------------------- /components/FileUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/components/FileUploader.tsx -------------------------------------------------------------------------------- /components/GroupComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/components/GroupComponent.tsx -------------------------------------------------------------------------------- /components/HistorySidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/components/HistorySidebar.tsx -------------------------------------------------------------------------------- /components/Node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/components/Node.tsx -------------------------------------------------------------------------------- /components/OutputDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/components/OutputDisplay.tsx -------------------------------------------------------------------------------- /components/SettingsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/components/SettingsPanel.tsx -------------------------------------------------------------------------------- /components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/components/Sidebar.tsx -------------------------------------------------------------------------------- /components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/components/icons.tsx -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/index.html -------------------------------------------------------------------------------- /index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/index.tsx -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/metadata.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/package.json -------------------------------------------------------------------------------- /presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/presets.ts -------------------------------------------------------------------------------- /services/geminiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/services/geminiService.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/types.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/BananaFlow-ZHO/HEAD/vite.config.ts --------------------------------------------------------------------------------