Image-Text-to-Text
Transformers
Safetensors
English
dendro_omni
text-generation
phillnet
phillnet-mini
dendro
visual-question-answering
multimodal
adaptive-reasoning
code-generation
long-context
custom-code
text-vision-only
conversational
custom_code
Instructions to use ayjays132/Phillnet-Mini-Max with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ayjays132/Phillnet-Mini-Max with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="ayjays132/Phillnet-Mini-Max", trust_remote_code=True) messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("ayjays132/Phillnet-Mini-Max", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use ayjays132/Phillnet-Mini-Max with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ayjays132/Phillnet-Mini-Max" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ayjays132/Phillnet-Mini-Max", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/ayjays132/Phillnet-Mini-Max
- SGLang
How to use ayjays132/Phillnet-Mini-Max with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ayjays132/Phillnet-Mini-Max" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ayjays132/Phillnet-Mini-Max", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "ayjays132/Phillnet-Mini-Max" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ayjays132/Phillnet-Mini-Max", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use ayjays132/Phillnet-Mini-Max with Docker Model Runner:
docker model run hf.co/ayjays132/Phillnet-Mini-Max
File size: 10,484 Bytes
1e114b1 | 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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Orbit Notes - Product Landing Page</title>
<style>
/*
* ORBIT NOTES - CORE STYLES
* Dark Navy Theme
*/
:root {
--bg-color: #0a0a0a;
--card-bg: #141414;
--text-main: #e0e0e0;
--text-muted: #888888;
--accent-navy: #0f172a;
--accent-blue: #3b82f6;
--accent-gold: #fbbf24;
--accent-red: #ef4444;
--font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: var(--bg-color);
color: var(--text-main);
font-family: var(--font-main);
line-height: 1.6;
overflow-x: hidden;
}
/*
* NAVIGATION
*/
nav {
position: fixed;
top: 0;
width: 100%;
background: rgba(10, 10, 10, 0.85);
backdrop-filter: blur(10px);
z-index: 1000;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
padding: 1rem 5%;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
letter-spacing: -0.05em;
color: var(--accent-blue);
text-decoration: none;
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
color: var(--text-main);
text-decoration: none;
font-size: 0.95rem;
transition: var(--transition);
}
.nav-links a:hover {
color: var(--accent-blue);
}
.mobile-toggle {
display: none;
background: none;
border: none;
color: var(--text-main);
font-size: 1.5rem;
cursor: pointer;
}
/*
* HERO SECTION
*/
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 0 5%;
position: relative;
overflow: hidden;
}
/* Abstract Background Elements */
.orb {
position: absolute;
border-radius: 50%;
filter: blur(80px);
z-index: -1;
opacity: 0.6;
}
.orb-1 { width: 400px; height: 400px; background: #334155; top: -100px; left: -100px; }
.orb-2 { width: 300px; height: 300px; background: #475569; bottom: -50px; right: -50px; }
.hero-content {
max-width: 800px;
z-index: 1;
}
h1 {
font-size: 4rem;
font-weight: 800;
line-height: 1.1;
margin-bottom: 1.5rem;
background: linear-gradient(to right, #fff, #94a3b8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero p {
font-size: 1.25rem;
color: var(--text-muted);
margin-bottom: 2.5rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.cta-group {
display: flex;
gap: 1rem;
justify-content: center;
}
.btn {
padding: 1rem 2rem;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
transition: var(--transition);
display: inline-block;
}
.btn-primary {
background-color: var(--accent-blue);
color: white;
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}
.btn-secondary {
background-color: transparent;
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--text-main);
}
.btn-secondary:hover {
border-color: var(--text-main);
color: var(--text-main);
}
/*
* FEATURES SECTION
*/
.features {
padding: 5rem 5%;
background-color: var(--bg-color);
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-header h2 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
.section-header p {
color: var(--text-muted);
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.card {
background-color: var(--card-bg);
border: 1px solid rgba(255, 255, 255, 0.05);
padding: 2.5rem;
border-radius: 16px;
transition: var(--transition);
position: relative;
overflow: hidden;
}
.card:hover {
transform: translateY(-5px);
border-color: rgba(255, 255, 255, 0.1);
}
.card-icon {
width: 50px;
height: 50px;
background: rgba(59, 130, 246, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
color: var(--accent-blue);
font-size: 1.5rem;
}
.card h3 {
font-size: 1.5rem;
margin-bottom: 0.75rem;
}
.card p {
color: var(--text-muted);
font-size: 0.95rem;
}
/*
* FOOTER
*/
footer {
padding: 4rem 5%;
border-top: 1px solid rgba(255, 255, 255, 0.05);
text-align: center;
color: var(--text-muted);
font-size: 0.9rem;
}
/*
* RESPONSIVE
*/
@media (max-width: 768px) {
h1 { font-size: 2.5rem; }
.nav-links {
display: none;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: var(--bg-color);
padding: 1.5rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-links.active {
display: flex;
}
.mobile-toggle {
display: block;
}
}
</style>
</head>
<body>
<!-- NAVIGATION -->
<nav>
<a href="#" class="logo">Orbit Notes</a>
<div class="mobile-toggle" onclick="toggleMenu()">☰</div>
<div class="nav-links" id="navLinks">
<a href="#features">Features</a>
<a href="#about">About</a>
<a href="#pricing">Pricing</a>
<a href="#contact">Contact</a>
</div>
</nav>
<!-- HERO SECTION -->
<section class="hero">
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="hero-content">
<h1>Think in Orbit</h1>
<p>Experience the next generation of note-taking. Organize your thoughts, collaborate in real-time, and build a productivity ecosystem that feels like a spaceship.</p>
<div class="cta-group">
<a href="#" class="btn btn-primary">Start Free Trial</a>
<a href="#" class="btn btn-secondary">Learn More</a>
</div>
</div>
</section>
<!-- FEATURES SECTION -->
<section class="features" id="features">
<div class="section-header">
<h2>Why Orbit Notes?</h2>
<p>Everything you need to master the art of note-taking.</p>
</div>
<div class="grid">
<!-- Feature 1 -->
<div class="card">
<div class="card-icon">🧠</div>
<h3>Deep Focus</h3>
<p>Eliminate distractions with our ultra-low latency connection and a dedicated workspace that keeps your brain in a state of deep concentration.</p>
</div>
<!-- Feature 2 -->
<div class="card">
<div class="card-icon">🤝</div>
<h3>Collaborate</h3>
<p>Share your notes with team members in real-time. Use the cloud-first architecture to ensure your thoughts are accessible to everyone, anywhere.</p>
</div>
<!-- Feature 3 -->
<div class="card">
<div class="card-icon">📊</div>
<h3>Analytics</h3>
<p>Track your productivity with our built-in dashboard. See how you spend your time, what you're doing well, and where you can optimize your workflow.</p>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<p>© 2023 Orbit Notes Inc. All rights reserved.</p>
</footer>
<!-- JAVASCRIPT -->
<script>
// Mobile Navigation Toggle
function toggleMenu() {
const navLinks = document.getElementById('navLinks');
navLinks.classList.toggle('active');
}
// Close mobile menu when a link is clicked
document.querySelectorAll('.nav-links a').forEach(link => {
link.addEventListener('click', () => {
document.getElementById('navLinks').classList.remove('active');
});
});
// Smooth Scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
</body>
</html>
|