Video wird geladen...

Video konnte nicht geladen werden

Zur Startseite

🎉 Congrats to Thinking Machines on TML Inkling—a 1T-parameter open-weight model supported in vLLM from Day 0. Highlights: • Natively multimodal across text, image, and audio • Up to 1M-token context • New architecture with relative attention, short convolutions, and MoE expert sinks • 8 MTP heads for speculative...

48,910 Aufrufe • vor 15 Tagen •via X (Twitter)

0 Kommentare

Keine Kommentare verfügbar

Kommentare vom Original-Post werden hier angezeigt

Ähnliche Videos

I told you to claim your free 16GB NVIDIA GPU for learning Local LLMs. Now I’m going to show you how to double its inference speed without touching the hardware. Google Colab gives you an enterprise grade NVIDIA Tesla T4 GPU for free, roughly 4 hours every single day. It is the absolute perfect sandbox for learning AI engineering, testing inference flags, and pushing massive context windows. The local AI timeline is moving way too fast. If you aren't using Multi Token Prediction (MTP) yet, you are leaving massive performance on the table. I just pushed DeepMind’s Gemma 4 26B to 64.9 t/s on this exact free tier. Let's look at the raw benchmark data running on an Ubuntu Linux environment with the latest compiled llama.cpp binaries and quantized GGUFs from Unsloth via HuggingFace: # Qwen 3.5 9B (Dense): Base: [ Prompt: 626.7 t/s | Generation: 21.0 t/s ] With MTP: [ Prompt: 539.1 t/s | Generation: 24.8 t/s ] # Gemma 4 26B QAT (MoE): Base: [ Prompt: 634.2 t/s | Generation: 48.3 t/s ] With MTP: [ Prompt: 572.1 t/s | Generation: 64.9 t/s ] If you are paying attention, this single Colab notebook reveals 3 massive observations about the current state of local LLMs: # 1. The MTP Speedup (Software Overclocking) Standard autoregressive decoding guesses one token at a time. MTP acts like a highly optimized, built in speculative decoder. It predicts multiple future tokens at once and the main model verifies them in parallel. The result? Zero accuracy loss and a massive throughput increase. Gemma jumped from 48 to 65 t/s just by flipping a flag. # 2. The MoE Paradox (Bigger is Faster) How does a 26B parameter model absolutely destroy a 9B model in raw speed on the exact same hardware? Architecture. Qwen 3.5 9B is a dense model. it activates all 9 billion parameters for every single token. Gemma 4 26B is a Mixture of Experts (MoE) model. It routes data efficiently, activating only 4B parameters per token. You get the reasoning capabilities of a 26B model with the compute cost of a 4B model. 3. Thinking Efficiency When I ran the exact same complex prompt on both models, the larger MoE spent significantly fewer "thinking" tokens to arrive at the correct answer. A smarter model doesn't just give better answers; it gets to the point faster, saving you compute cycles and preserving your context window. # Want to run this yourself? Here are the exact llama.cpp CLI commands. For Qwen (MTP is baked into the main model): ./llama-cli -m Qwen3.5-9B-UD-Q4_K_XL.gguf -p "Explain quantum computing." -n 2000 -c 8000 -ngl 99 -fa on --spec-type draft-mtp --spec-draft-n-max 4 --spec-draft-p-min 0.7 For Gemma (Using a separate lightweight draft model): ./llama-cli -m gemma-4-26B-A4B-it-qat-UD-Q4_K_XL.gguf --model-draft mtp-gemma-4-26B-A4B-it.gguf -p "Explain quantum computing." -n 2000 -c 8000 -ngl 99 -fa on --spec-type draft-mtp --spec-draft-n-max 4 --spec-draft-p-min 0.7 Stop waiting for a $3,000 rig. Boot up Colab, pull these models, and start building your stack. I’ve put together a completely free, cell by cell Google Colab notebook that automates this entire workflow so you can test it yourself in 5 minutes and learn. Link to the notebook is in the comments below. Experiemt with different MTP parameters, context windows and post your results in the comments.

Alok

170,442 Aufrufe • vor 17 Tagen

Day 11/90 of Inference Engineering How does vLLM work and how is it used in production? Before we discuss how vLLM works internally, it helps to understand what vLLM is. At a high level, vLLM is an inference engine that is designed to serve LLMs to thousands of concurrent users efficiently while managing scarce compute and memory. The goal for vLLM is to maximize throughput and minimize latency; optimizing for the best inference economics and experience for end users. With every request from the end user, it eventually ends up in the engine core, gets scheduled alongside other requests from other concurrent users, executes on the GPU, and updates the KV cache with the new key and value vectors, and streams the tokens back to the user. The Scheduler decides what requests should execute next while continuously batching requests together to maximize GPU utilization. Continuous batching is an inference optimization that allows new requests to join a running batch as other requests finish generating tokens. This helps with keeping the GPU utilization high instead of letting it sit idle waiting for an entire batch to complete generating. After the scheduler dispatches the selected batch to the Model Executor, the Model Executor prepares the tensors and metadata required for inference, retrieves each request’s block table from KV Cache Manager, launches the optimized transformer forward pass on the GPU, computes the logits, updates the KV cache with the new key and value vectors, and finally returns the results for sampling and streaming. The KV Cache Manager uses the PagedAttention memory layout to allocate fixed-size cache blocks on demand and maintains a Free Block Queue on the CPU that tracks which blocks in the GPU’s Paged KV Cache are currently free. When a request needs additional KV cache space, the KV Cache manager takes a free block from the queue and assigns it to that request, thus avoiding an expensive search through GPU memory for available cache blocks. All of these components form the core of vLLM’s inference engine. The Scheduler determines what requests are executed, the Model Executor determines how those requests are executed, the KV Cache Manager determines where each request’s KV cache lives using the PagedAttention Memory Layout. This architecture enables vLLM to serve thousands of concurrent requests with high throughput, low latency, and efficient GPU memory utilization. Heres a little animation that visualizes everything! - I've also completed the forward pass for my mnist.c project. I had a nice chat with shrey birmiwal, such a knowledgeable guy. Excited to learn more about vLLM and implement a tiny-vLLM one day.

max fu

69,880 Aufrufe • vor 13 Tagen

Run Gemma 4 26b MTP on 8 GB VRAM GPUs at 25+ tokens/second. Flags included! local llm space is moving at terminal velocity. only 3 days ago google released gemma 4 26b a4b qat quants. more efficient than before, ran on 8gb vram at 20 tok/sec. and now just a few hours ago, mainline llama.cpp merged a massive update and we just shattered our own record. decode throughput went 25-40% up on the same 8 GB VRAM setup! Before MTP: 20 tps -> After MTP: 28 tps! llama.cpp just officially merged PR #23398 ("add Gemma4 MTP"), bringing native Multi-Token Prediction (MTP) support to Gemma 4 models. By running speculative drafting on the same 8GB VRAM RTX 4060 setup, my decode throughput on a 64k context instantly leaped to a blistering 25–27 tokens/sec thats 25-30% increase with the same hardware. Here is the architectural catch you need to know: Unlike the Qwen 3.5 and 3.6 series, which bake the MTP heads directly into the base GGUF, the Gemma 4 MTP head is not built in. You must download a separate, specialized MTP drafter GGUF (the assistant model) to act as the speculator. (I've dropped the download link in the replies). copy and try the exact flags: -m gemma-4-26B-A4B-it-qat-UD-Q4_K_XL.gguf --spec-type draft-mtp --spec-draft-n-max 6 --spec-draft-p-min 0.7 --spec-draft-model gemma-4-26b-A4B-it-assistant-Q4_0.gguf -c 64000 -v n-max 4 and p-min 0.7 is also worth checking out. benchmark on your setup and workflow. if you have a single 8 gb vram nvidia rtx 4060, 3060, 3070, 2080, 2070, grab the MTP drafter GGUF link in the comments and try it yourself. Check it out even if you have asmaller or a larger gpu, such as a single rtx 3090, 4090, 3060, 2060. MTP works for all gemma 4 sizes such as gemma 4 12b, gemma 4 31b etc. but remember to grab the correct mtp draft assistant models respectively. what are you benchmarking today

Alok

200,913 Aufrufe • vor 1 Monat

Before the week ends, let's acknowledge one of the most INSANE week ever for open AI, with 25+ notable open-weight drops across every modality: 🧠 LLMs → NVIDIA Nemotron 3 Ultra: 550B hybrid Mamba-MoE, only 55B active, 1M context, MMLU 89.1. NVFP4 variant claims ~5x throughput on Blackwell. First openly-weighted 550B hybrid Mamba-Transformer, closing the gap with frontier closed models. → Google Gemma 4 12B: fully open dense any-to-any (text/image/audio/video), 256k context, encoder-free, 140+ languages, AIME 2026 at 77.5. Shipped with a 23-checkpoint QAT wave (mobile ONNX + MLX). Most deployable model of the week. → StepFun Step-3.7-Flash: 198B sparse MoE VLM, ~11B active, SWE-Bench PRO 56.3. Apache 2.0. → Liquid AI LFM2.5-8B-A1B: edge MoE, just 1.5B active, 128k ctx, MATH500 88.8, MLX-ready. Best on-device option this week. → JetBrains Mellum2-12B-A2.5B-Thinking: their first open MoE, near-Qwen3-14B coding at 2.5B active. Apache 2.0. 🎨 Image gen (the surprise of the week) → Ideogram 4: their FIRST-EVER open weights. 9.3B flow-matching DiT trained from scratch. #2 overall behind GPT Image 2, top open-weight model on Design Arena + LMArena. Strongest open checkpoint for text-rich images, full stop. It has taste. Still can't believe this is open weights. 🔊 Audio & Speech (a breakout week for open TTS, 4 labs shipped) → Boson Higgs Audio v3 4B: 102 languages, 21 emotions, singing/whispering/shouting, sub-second TTFA. → RedNote dots.tts: the only fully continuous (no codec) open TTS pipeline, Apache 2.0. → Google Magenta RealTime 2: real-time music gen, <200ms latency, text+audio+MIDI. multimodalart ported it to PyTorch within hours with live ZeroGPU demos. → NVIDIA Nemotron-3.5 ASR: 600M streaming, 17x more concurrent streams vs Parakeet RNNT 1.1B. 👁️ Vision & VLMs → PaddleOCR-VL-1.6: SOTA document parsing at 1B params, Apache 2.0. → Baidu NAVA: 6.3B joint audio-video gen, best-in-class A/V sync, Apache 2.0. 🎬 Video, 3D & World Models → NVIDIA Cosmos3-Super: 64B omnimodal world model coupling action trajectories with video+audio gen, for Physical AI. → JD JoyAI-Echo: up to 5-min multi-shot text-to-video on LTX-2.3. → ByteDance Bernini-R + VAST TripoSplat (single-image-to-3D Gaussian splats, MIT).

Victor M

540,174 Aufrufe • vor 1 Monat

my 8 GB VRAM gaming laptop is absolutely going to hate me for this. but I still did it. ran a 31b dense model (Gemma 4 31b Q4) with only 8 GB VRAM last week I ran Gemma 4 26B A4B a mixture of experts model on my RTX 4060 and hit 25–28 tokens/sec using llama.cpp's new MTP support. smooth. snappy. but MoE has a secret: it only activates 4B parameters per token despite having 26B total. that's why it flies. so the real question started haunting me. what if I throw a full, no tricks, every parameter fires on every token, 31B DENSE model at the same machine? # Hardware: GPU: NVIDIA RTX 4060, 8 GB VRAM RAM: 16 GB CPU: Intel Core i7 H Laptop. Gaming. Modest. The model: gemma-4-31B-it-qat-UD-Q4_K_XL.gguf (model's unsloth huggingface link in the comments) This is Google DeepMind's flagship dense model in the Gemma 4 family that can run on single consumer GPU. It packs a hybrid attention architecture, supports up to 256K context natively, and is QAT (Quantization Aware Training) optimized, meaning it retains far more quality than standard post training quants at the same bit depth. This is NOT the MoE. This is 31 BILLION dense parameters, every single one of them loaded. # the flags I used: -m gemma-4-31B-it-qat-UD-Q4_K_XL.gguf -cnv --spec-type draft-mtp --spec-draft-model mtp-gemma-4-31B-it.gguf --spec-draft-n-max 8 --spec-draft-p-min 0.6 -c 6000 -v Multi Token Prediction (MTP) is still active here. Separate draft GGUF required, same as the 26B setup. # Results: → Decode: ~3 tokens/sec → Prefill: ~2 tokens/sec → Context: 6000 tokens → Hardware crying quietly in the corner: yes so is 3 tps actually usable? For real time back and forth chat? Not ideal. You're not having a fluid conversation at 3 tps. but slow ≠ useless. And this is where it gets genuinely interesting. think about how senior devs actually work in a real team. But when something is architectural, deeply complex, or needs serious reasoning? they walk down the hall and escalate to the senior. That's exactly the local AI agent architecture this unlocks: → Fast orchestrator model (Gemma 4 26B MoE at 25+ tps) handles routing, simple queries, tool calls, memory. The junior dev. → Gemma 4 31B dense is the senior, called only when the fast model genuinely hits a wall. Hard multi step reasoning. Complex code generation. Deep architectural decisions. The agentic loop stays fast. Only the hard hops touch the 31B. That's a legitimate production grade local AI architecture on a budget hardware. (requires 2 8gb gpus) other workflows where 3 tps is completely fine: - overnight batch jobs. summarize documents, extract structured data, review code. Fire it off. Sleep. wake up to results. - One shot deep reasoning - Silent code audit loops, you write and test, the 31B reviews diffs and flags issues in the background between your sprints - Any workflow where output quality > output speed A few weeks ago, nobody was running a 30B+ dense model on a single consumer GPU with 8 GB VRAM. At all. Now we're doing it on an Intel i7-H gaming laptop with a NVIDIA RTX 4060, thanks to llama.cpp + QAT quants + MTP speculative drafting. Google DeepMind said the Gemma 4 31B targets "consumer GPUs and workstations." They were not exaggerating. The hardware bar to run serious frontier class models locally keeps dropping. the tools are here. the models are here. you just have to be willing to abuse your laptop a little. what workflows would you actually run on a local 3 tps 31B dense model? genuinely curious. drop it below.

Alok

63,583 Aufrufe • vor 1 Monat

Run Gemma 4 26B MoE on 8GB VRAM with 250k context at 20+ tokens/sec If you own any 8GB VRAM graphics card, stop what you are doing. Local AI just had its absolute "Holy Shit" moment for budget hardware. Yesterday, I benchmarked Unsloth Gemma 4 12B Q4_K_XL on an 8GB card. The community went wild but immediately demanded more: "Can we run a 25B+ model on budget GPUs?" Today, I’m delivering exactly that. I am running a massive 26B parameter Mixture of Experts (MoE) model locally on a standard 8GB VRAM setup with 250k full native context!. If you own an RTX 3060, 3070, 4060, or any budget GPU with 8GB of VRAM, the local AI paradigm has completely changed. The performance metrics are astonishing: - 20 tokens/sec flat decode throughput. - Stable, flat decode speed even with massive prompts. - I threw a 60k token prompt at it, and it still clocked in at 20 TPS without dropping a single frame. # What about prefill? Yes, Time To First Token (TTFT) is slightly high when swallowing massive contexts. But with a solid 200 tokens/sec prefill speed, the wait is barely noticeable and highly usable. And this is running completely without Multi Token Prediction (MTP) active. How is this possible? It’s the magic of Google's new QAT (Quantization Aware Training) quants for Gemma 4. The model weight file (unsloth gemma-4-26B-A4B-it-qat-UD-Q4_K_XL.gguf) is only 13.2 GB, making it the ultimate local powerhouse. # The Test Setup: CPU: Intel Core i7 RAM: 16GB System RAM GPU: NVIDIA GeForce RTX 4060 Laptop GPU (8GB VRAM) # The Secret Sauce (The -cmoe Flag) To make this work properly on any 8GB card, you must use the -cmoe (CPU MoE) flag in llama.cpp. This flag isolates the heavy MoE expert weights directly to system memory (CPU/RAM) while letting your GPU focus strictly on the Attention layers and the KV Cache. It prevents VRAM spillage and holds the throughput rock solid. # The flags: -m "gemma-4-26B-A4B-it-qat-UD-Q4_K_XL.gguf" -cmoe -c 248000 -v Once running, just open the UI on localhost and toggle the new reasoning lightbulb icon in the text input box to watch the model perform multi step thinking. Are you still running smaller models, or are you ready to scale up your budget local setups? Let's discuss in the replies

Alok

292,770 Aufrufe • vor 1 Monat

🇨🇳 Another great Chinese Model, OmniHuman-1.5 from ByteDance Turns 1 image plus a voice track into expressive avatar video by pairing a System 1 and System 2 inspired planner with a Diffusion Transformer, Produces coherent motion for over 1 minute with moving camera and multi character scenes. Most avatar models move to the beat of the audio but miss meaning, so gestures feel generic and emotions feel shallow. The fix here is a Multimodal LLM planner that listens to the speech and drafts a structured plan describing intent, emotions, beats, and high level actions, which gives the motion engine clear semantic targets instead of only rhythm. The motion engine is a Multimodal Diffusion Transformer that fuses the plan with audio, the single reference image, and optional text prompts, then synthesizes continuous body, face, and head motion that matches both words and tone. A key trick is a Pseudo Last Frame, a synthetic target that summarizes the next expected state, which stabilizes fusion across modalities and keeps motion consistent over long spans. From just 1 image and speech, the system outputs speaking avatars with synchronized lips, context aware gestures, and continuous camera movement, and it also supports multi character interactions without manual choreography. Reported results show strong lip sync accuracy, high video quality, natural motion, and close match to text prompts, and the same setup works on nonhuman characters too.

Rohan Paul

63,859 Aufrufe • vor 11 Monaten

Blog 129 Out and About Wardrobe Makeover Tank’s Army has demanded for Frank to shop for new clothes as he continues to pound steps and shred pounds. Today, Pat and Joey from Out and About stepped up and led Frank into the scary world of fashion with alpha energy. After handling sales stuff in the morning, Frank and I huddled up with the Out & About crew and walked to Burlington. Highlights from the trip: ◦Joey and Frank interactions had me howling ◦Joey & Pat’s vernacular intersecting with Frank’s ◦Frank had full trust in Joey’s choices and fashion taste and it paid off ◦Joey and Pat trying on several dresses while Frank watched with fascination ◦The fashion show back in the office after we shopped, which nearly made gia (taylor’s version) and Kelly Keegs cry from wholesomeness. It was beautiful to see how happy & proud everyone is for Frank. The Out & About team has the golden footage and will release it all soon. Thanks, Diego. We worked walk 105 into the shopping trip both before and after our visit to the store. Frank has averaged 12,500 steps per day for the last week or so. His stamina improvement is extraordinary, especially considering our schedule. If he continues increasing his output and incrementally improving his diet, the results will continue to inspire and amaze. Thanks again to Joey, Pat, and Diego for an incredibly fun and educational experience. Frank looks spiffy in his new fits. You guys are the best and absolutely insane. And thanks to everyone who participated in the fashion show. Road trip to Chicago tomorrow. We will livestream on YouTube, InstaLive, and create as much content as possible for Tank’s Army. When we hit the road, we want you to feel like you are with us. Anudder adventure loading.

Matteo Piper Jenks 🧲 🇮🇹

248,035 Aufrufe • vor 2 Jahren

Here's proof that the $Virtuals token is undervalued! We are three months into 2026 and Virtuals Protocol have; ➥ Overhauled the core Virtuals website including an outline of the four major pillars of focus for the year. Agent Commerce Protocol (ACP), Butler, Capital Markets, and Robotics. ➥ Added the Pegasus and Titan launchpads to add to the existing Unicorn launchpad. This now provides a full suite of launch options catering to all types. Arguably the most comprehensive launch suite across crypto! ➥ Listed on Aster 🥷 Perpetuals allowing up to 75x leverage trading on the $Virtual token. ➥ Integrated Bankr to Butler and ACP. ➥ Partnered with XMAQUINA, a major player across Robotics Capital Markets and provided participants with access to the $DEUS pre-sale. One of many robotics partnerships for the year to date! ➥ Launched Virtuals on Base App ➥ Held, supported, and/or sponsored multiple hackathon/ builder meeting type events including; ↠ Physical AI Hackathon in SF ↠ Agentic Commerce Hackathon with the likes of Coinbase Developer Platform🛡️ and Google Cloud ↠ Traders House Consensus Hong Kong week with ACTIV8 ↠ ETH Denver ↠ Base Batches 003: Robotics ↠ Stanford Blockchain Accelerator (Standford Blockchain Accelerator (SBA)) ↠ Base Korea Builders Workshop (Base Korea) ↠ Eth Robotics Club HACK2026 (ETH Robotics Club) ↠ Synthesis Hackathon (synthesis) ➥ Partnered with OpenMind and Fabric Foundation and supported the $ROBO token launch. This matured into the first ever Titan launch on Virtuals with the $ROBO token being the highest launched on the protocol ($400m+). ➥ Launched Butler Pro, an enhanced version of the initial Butler we have come to know and love on the timeline, in the DMs, as well as on the Virtuals ACP site. ➥ Become the standout user of x402, accounting for over 95%+ of usage this year. ➥ Integrated on , the automated onchain finance investment platform. ➥ Supported and contributed to the implementation of the Ethereum Foundation ERC8004 standard. Integrating the standard into ACP and offering an automated integration to the standard for all ACP agents. ➥ Established an easy onboarding for OpenClaw🦞 agents to plug into Virtuals ACP, creating a new flow of agents and builders across the ecosystem. ➥ Launched the 60-days launch mechanic which allows builders to 'experiment' with a crypto token but having an option to exit after 60 days with partial refunds provided to holders. A game-changing launch mechanic not seen before in the space. ➥ Strengthened the relationship with Base and having multiple interactions with jesse.base.eth on the timeline! ➥ Launched the AGDP(dot)io site, creating an incentivised mechanism for agents contributing to the growth of the protocol to really earn. Imagine Amazon for autonomous agents with rewards up to $1m per month! This pushed the total agent-to-agent revenue over $4m USD with over 2m jobs completed. ➥ Collaborated with t54.ai, a business building trust and risk infrastructure for the agentic economy, to strengthen the ACP offering. ➥ Invested over $1m on 30+ humanoid robots as part of the soon to be announced 'Eastworld' Robotics accelerator lab. ➥ Released ERC8183, a universal commerce layer for AI agents, in partnership with the Ethereum Foundations dAI team. A significant offering which has since been integrated via partnerships with; ↠ BNB (BNB Chain) ↠ X Layer (X Layer) ↠ Monad (Monad) ↠ XRP Ledger (RippleX) ↠ World Chain (World Chain) ↠ Celo (Celo) ↠ Moonpay (MoonPay 🟣) ↠ Arbitrum (Arbitrum) ↠ Abstract (Abstract) ↠ Mante (Mantle) ➥ Launched the Virtuals Degen Arena providing up to $100k a week to top agents who compete in trading competitions in the arena. ➥ Launched the Virtuals Console, providing an ultra easy, no-code, way to own an AI agent in seconds. ↛. If you've managed to get to this point, I can't imagine you are anything other than bullish on Virtuals. What really is amazing is that there is MUCH more to come. Imagine where we are in another three months, and three months after that!?

bigwil

1,658,312 Aufrufe • vor 4 Monaten

Dirac Finance — Update on TGE and Next Steps (For Beras who can’t read, please find a tl;dr below in the next tweet) A. Global sentiment and commitment: 1. The past few weeks have tested the resilience of DeFi, and the Berachain ecosystem has shown strong coordination and stability. 2. At Dirac, our commitment remains unchanged: we are building on Berachain Foundation 🐻⛓ because we believe in its Proof-of-Liquidity consensus, perfectly aligned with Dirac Finance’s vault infrastructure and token design. B. Product: 1. After completing the first vault cycles with strong APRs, Dirac proved its potential as a vault infrastructure connecting complex primitives (perps, options, and other yield strategies) with users seeking simplicity and efficiency. 2. We are now in advanced discussions with DeFi strategists to deploy new vaults. Strategists’ compensation consists of sharing part of the yield (up to 3%). 3. On the development side, the Kodiak perps integration is live — thanks to Orderly for their support — and additional integrations are underway. 4. To become a fully decentralized vault infrastructure, we will deploy the $DIRAC token, a central element of both governance and the Dirac vault economy. C. TGE: 1. Last week, we finalized the TGE framework with Ramen 🍜. Major $DIRAC token purchasers, including W3f Group and our community, are aligned for a Q4 to early Q1 TGE. 2. The $DIRAC token will launch through Ramen 🍜 and be available on Kodiak in an Island v2 pool, receiving BGT emissions during and after launch. 3. We are reinforcing our team with DeFi OGs and vault curators to bring additional energy to the TGE preparation and post-TGE period. Team additions and partnerships will be disclosed in the coming days. 4. TGE details will be shared soon, once we finalize the date with Ramen. --- We believe in consistency, transparency, and hard work in all market conditions. We appreciate everyone’s continued support and patience. More updates will follow soon. Questions or feedback? Join our Discord and chat with the team: http:// Let’s keep pushing!

Dirac Finance

10,360 Aufrufe • vor 8 Monaten