first commit

This commit is contained in:
Miki 2024-06-05 11:38:46 +02:00
commit 3244917eff
17 changed files with 1987 additions and 0 deletions

10
.gitignore vendored Normal file
View file

@ -0,0 +1,10 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*

1
.npmrc Normal file
View file

@ -0,0 +1 @@
engine-strict=true

4
.prettierignore Normal file
View file

@ -0,0 +1,4 @@
# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock

8
.prettierrc Normal file
View file

@ -0,0 +1,8 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte"],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}

38
README.md Normal file
View file

@ -0,0 +1,38 @@
# create-svelte
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte).
## Creating a project
If you're seeing this, you've probably already done this step. Congrats!
```bash
# create a new project in the current directory
npm create svelte@latest
# create a new project in my-app
npm create svelte@latest my-app
```
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
To create a production version of your app:
```bash
npm run build
```
You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.

23
eslint.config.js Normal file
View file

@ -0,0 +1,23 @@
import js from '@eslint/js';
import svelte from 'eslint-plugin-svelte';
import prettier from 'eslint-config-prettier';
import globals from 'globals';
/** @type {import('eslint').Linter.FlatConfig[]} */
export default [
js.configs.recommended,
...svelte.configs['flat/recommended'],
prettier,
...svelte.configs['flat/prettier'],
{
languageOptions: {
globals: {
...globals.browser,
...globals.node
}
}
},
{
ignores: ['build/', '.svelte-kit/', 'dist/']
}
];

30
package.json Normal file
View file

@ -0,0 +1,30 @@
{
"name": "gpt-backend",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.2.1",
"@sveltejs/kit": "^2.5.10",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@types/eslint": "^8.56.10",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.39.0",
"globals": "^15.3.0",
"prettier": "^3.3.1",
"prettier-plugin-svelte": "^3.2.3",
"svelte": "^4.2.17",
"vite": "^5.2.12"
},
"type": "module",
"dependencies": {
"@sveltejs/adapter-static": "^3.0.1"
}
}

1761
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load diff

12
src/app.html Normal file
View file

@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>

1
src/lib/index.js Normal file
View file

@ -0,0 +1 @@
// place files you want to import through the `$lib` alias in this folder.

3
src/routes/+layout.js Normal file
View file

@ -0,0 +1,3 @@
// export const prerender = true;
export const ssr = false;
export const trailingSlash = 'always';

11
src/routes/+layout.svelte Normal file
View file

@ -0,0 +1,11 @@
<svelte:head>
<title>GPT Backend</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
</svelte:head>
<slot />

12
src/routes/+page.js Normal file
View file

@ -0,0 +1,12 @@
export async function load() {
return {
containers: await fetch("/api/tags",
{
mode: 'cors',
headers: {
'Access-Control-Allow-Origin': '*'
}
}
).then((r) => r.json()),
};
}

45
src/routes/+page.svelte Normal file
View file

@ -0,0 +1,45 @@
<script>
export let data;
</script>
<h1 style="text-align: center;">GPT Backend</h1>
<table class="table table-bordered table-hover">
<tr>
<th>Name</th>
<th>IP:Port</th>
<th>Size</th>
<th>Quantization</th>
<th>Status</th>
</tr>
{#each data.containers.models as c}
<tr>
<td>{c.name}</td>
{#if c.state == 'running'}
<td>{c.ip}:{c.port}</td>
{:else}
<td>{c.ip}</td>
{/if}
<td>{c.details.parameter_size}</td>
<td>{c.details.quantization_level}</td>
<td>{c.state}</td>
</tr>
{/each}
</table>
<style>
/* table,
th,
td {
border: 1px solid black;
border-collapse: collapse;
}
th,
td {
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
text-align: center;
} */
</style>

BIN
static/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

22
svelte.config.js Normal file
View file

@ -0,0 +1,22 @@
// import adapter from '@sveltejs/adapter-auto';
import adapter from '@sveltejs/adapter-static';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: adapter(
{
pages: '/home/node/src/go/src/GPT-backend/static',
assets: '/home/node/src/go/src/GPT-backend/static',
fallback: 'index.html',
precompress: true,
strict: true
}
)
}
};
export default config;

6
vite.config.js Normal file
View file

@ -0,0 +1,6 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()]
});