-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguide.html
More file actions
153 lines (135 loc) · 6.49 KB
/
Copy pathguide.html
File metadata and controls
153 lines (135 loc) · 6.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Corelyn — Cloud Guide</title>
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet"/>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #08080e;
--surface: #0f0f18;
--border: #1a1a2e;
--border-hi:#2a2a44;
--accent: #7c6aff;
--accent2: #a78bfa;
--text: #e8e8f0;
--muted: #5a5a78;
--success: #6bffb8;
}
html, body { height: 100%; background: var(--bg); color: var(--text); font-family: 'Sora', sans-serif; }
.bg-mesh {
position: fixed; inset: 0; z-index: 0; pointer-events: none;
background:
radial-gradient(ellipse 55% 45% at 15% 10%, rgba(124,106,255,.14) 0%, transparent 65%),
radial-gradient(ellipse 45% 55% at 85% 90%, rgba(167,139,250,.09) 0%, transparent 65%);
}
.bg-grid {
position: fixed; inset: 0; z-index: 0; pointer-events: none;
background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
background-size: 44px 44px;
}
.page {
position: relative; z-index: 1;
min-height: 100vh;
display: flex; flex-direction: column; align-items: center; justify-content: center;
padding: 2rem;
}
.card {
width: 100%; max-width: 830px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 20px;
padding: 2.4rem;
box-shadow: 0 0 0 1px rgba(124,106,255,.07), 0 40px 100px rgba(0,0,0,.7), 0 0 80px rgba(124,106,255,.05);
animation: cardIn .45s cubic-bezier(.22,1,.36,1) both;
}
@keyframes cardIn {
from { opacity:0; transform: translateY(20px) scale(.98); }
to { opacity:1; transform: translateY(0) scale(1); }
}
.logo-row { display: flex; align-items: center; gap: .7rem; margin-bottom: 2rem; }
.logo-mark { width: 34px; height: 34px; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 9px; display: grid; place-items: center; font-size: .95rem; box-shadow: 0 0 18px rgba(124,106,255,.35); }
.logo-name { font-size: 1.1rem; font-weight: 600; letter-spacing: -.02em; }
/* Step views */
.view { display: none; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
.view.visible { display: flex; }
.get-btn, .continue-btn, .retry-btn { width: 100%; padding: .9rem; border: none; border-radius: 11px; font-family: 'Sora', sans-serif; font-weight: 600; cursor: pointer; }
.get-btn { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; }
.continue-btn { background: linear-gradient(135deg, var(--accent), #8b6fff); color: #fff; }
.retry-btn { background: transparent; border: 1px solid var(--border-hi); color: var(--text); }
.spinner { width: 40px; height: 40px; border: 2px solid rgba(124,106,255,.15); border-top-color: var(--accent); border-radius: 50%; animation: spin .75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.key-box { background: rgba(255,255,255,.04); border: 1px solid var(--border-hi); border-radius: 10px; padding: .85rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.key-value { font-family: 'JetBrains Mono', monospace; color: var(--success); word-break: break-all; flex: 1; user-select: all; }
.copy-btn { flex-shrink: 0; background: rgba(124,106,255,.15); border: 1px solid rgba(124,106,255,.25); border-radius: 7px; color: var(--accent2); font-size: .75rem; font-weight: 500; padding: .35rem .7rem; cursor: pointer; }
input { width: 100%; padding: .7rem 1rem; border-radius: 9px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: .9rem; }
.warn-box { display: flex; gap: .65rem; align-items: flex-start; background: rgba(255,200,80,.06); border: 1px solid rgba(255,200,80,.18); border-radius: 9px; padding: .75rem .9rem; font-size: .78rem; color: #c8a84e; line-height: 1.5; }
a {
color: #1a73e8;
}
a:hover {
text-decoration: underline;
cursor: pointer;
}
</style>
</head>
<body>
<div class="bg-mesh"></div>
<div class="bg-grid"></div>
<div class="page">
<div class="card">
<div class="logo-row">
<div class="logo-mark">
<img src="./resc/logo.png" width="30px" height="30px">
</div>
<span class="logo-name">Corelyn Cloud Guide</span>
</div>
<div>
<h1>Wellcome!</h1>
<br>
<h2>Step 1 :</h2>
<h4> Go to : <a onclick="window.location.href='./'" >Corelyn Cloud</a></h4>
<br>
<h2>Step 2: </h2>
<h4>Create a account with a Google account</h4>
<br>
<h2>Step 3 : </h2>
<h4>Generate a API key and save it (DO NOT SHARE IT AND DO NOT HARDCODE IT)</h4>
<br>
<h2>Step 4: </h2>
<h4>Add to Corelyn by doing your API key, the provider is "Corelyn" and the model is one from below ⬇️</h4>
<br>
<h3>OR</h3>
<br>
<h4>Visit the developer guide : <a onclick="window.location.href='./devs.html'" >Corelyn Devs</a></h4>
</div>
<br>
<h2>Step 5: </h2>
<h4>Customize models :</h4>
<br>
<h4>- NVIDIA</h4>
<ul>
<li>KimiK2 : nvidia/moonshotai/kimi-k2.5</li>
<li>Qwen3.5 : nvidia/qwen/qwen3.5-397b-a17b</li>
<li>phi3.5-mini-instruct : nvidia/microsoft/phi-3.5-mini-instruct</li>
<li>llama-3.2-1b-instruct : nvidia/meta/llama-3.2-1b-instruct</li>
<li>deepseek 3.1 : nvidia/deepseek-ai/deepseek-v3.1</li>
<li>z.ai glm5 : nvidia/z-ai/glm5</li>
<li>mistral : nvidia/mistralai/mistral-7b-instruct-v0.2</li>
<li>google gemma 7b : nvidia/google/gemma-7b</li>
<li>falcon3-7b : nvidia/tiiuae/falcon3-7b-instruct</li>
</ul>
<br>
<h4>- Cerebras</h4>
<ul>
<li>llama3.1-8b : cerebras/llama3.1-8b</li>
</ul>
</div>
</div>
<script>
console.log("I don't know what will happen if i delete the script tag, soooo")
</script>
</body>
</html>