https://github.com/mowtwo/gpt-embedding-tuning-client
一个基于openai的embedding调试工具
https://github.com/mowtwo/gpt-embedding-tuning-client
Last synced: about 2 months ago
JSON representation
一个基于openai的embedding调试工具
- Host: GitHub
- URL: https://github.com/mowtwo/gpt-embedding-tuning-client
- Owner: mowtwo
- License: mit
- Created: 2023-05-31T08:50:08.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-31T08:51:13.000Z (almost 2 years ago)
- Last Synced: 2025-02-07T16:34:43.934Z (3 months ago)
- Language: TypeScript
- Size: 3.19 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# electron-vite-vue
🥳 Really simple `Electron` + `Vue` + `Vite` boilerplate.
[](https://github.com/electron-vite/electron-vite-vue/actions/workflows/build.yml)
[](https://discord.gg/sRqjYpEAUK)## Features
📦 Out of the box
🎯 Based on the official [template-vue-ts](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-vue-ts), less invasive
🌱 Extensible, really simple directory structure
💪 Support using Node.js API in Electron-Renderer
🔩 Support C/C++ native addons
🖥 It's easy to implement multiple windows## Quick Start
```sh
npm create electron-vite
```
## Debug

## Directory
```diff
+ ├─┬ electron
+ │ ├─┬ main
+ │ │ └── index.ts entry of Electron-Main
+ │ └─┬ preload
+ │ └── index.ts entry of Preload-Scripts
├─┬ src
│ └── main.ts entry of Electron-Renderer
├── index.html
├── package.json
└── vite.config.ts
```## FAQ
- [C/C++ addons, Node.js modules - Pre-Bundling](https://github.com/electron-vite/vite-plugin-electron-renderer#dependency-pre-bundling)
- [dependencies vs devDependencies](https://github.com/electron-vite/vite-plugin-electron-renderer#dependencies-vs-devdependencies)