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
| <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> | |