Dematic Showcases AI-Generated Digital Twin at 2025 GTC Conference
Global supply chain leader to display innovative automated solutions at booth #142.
ATLANTA, March 18, 2025 /PRNewswire/ -- Dematic, a global leader in supply chain automation and member of the KION Group, is showcasing a prototype of its AI Control Tower digital twin simulation at the GTC Artificial Intelligence (AI) Conference in San José, California (March 17-21).
In collaboration with NVIDIA and Accenture, the showcase will highlight a digital twin simulation of Dematic's Solutions Center, developed on the NVIDIA Omniverse platform. Using the Solutions Center as a model, attendees will experience a demonstration of how AI-powered digital twins enable the simulation and testing of material and order flow scenarios before changes are introduced in real-world industrial facilities.
Mike Larsson, Dematic president and KION executive board member, and Prasad Satyavolu, lead, manufacturing and operations, Americas, from Accenture, will also speak on how the technology from NVIDIA and Accenture, combined with Dematic software, modernizes supply chains during "Reinvent Warehouses and Distribution Centers With AI-Powered Digital Twins" on March 19 at 8 a.m. PDT.
"At Dematic, our goal is to empower customers with smarter, more efficient supply chain solutions that adapt to today's challenges and tomorrow's opportunities. By collaborating with NVIDIA and Accenture, we're advancing AI-driven automation to enhance operational visibility, optimize decision-making, and improve overall supply chain resilience," says Larsson. "This partnership allows us to provide our customers with intelligent orchestration and scalable solutions that drive efficiency, reduce costs, and position them for long-term success in an increasingly complex logistics landscape."
In early 2025, Dematic parent company, KION Group, collaborated with NVIDIA and Accenture to advance next-generation AI-powered automation for warehouses and distribution centers.
Hosted by NVIDIA, the GTC AI Conference draws more than 300,000 in-person and virtual attendees for keynotes and speaking sessions by industry leaders, hands-on training and certifications, and networking events. This year's conference focuses on the transformative impact of AI.
To learn more about Dematic's supply chain solutions, visit dematic.com or follow us on LinkedIn, Facebook, Instagram, and X.
About Dematic
Dematic is a global leader in supply chain automation solutions featuring advanced technologies and software empowering the future of commerce for its customers in manufacturing, warehousing, and distribution. With research and development engineering centers, manufacturing facilities, and service centers located in more than 26 countries, the Dematic global network of approximately 10,000 employees has integrated and supported automation solutions for many of the world's leading brands. Headquartered in Atlanta, Dematic is a member of KION Group, one of the world's leading suppliers of industrial trucks and supply chain solutions.
Media Contact:Yolanda KokayiSenior Director, Global Communications & BrandYolanda.kokayi@dematic.comdematic.com
Disclaimer
This release and the information contained herein are for information purposes only and do not constitute a prospectus or an offer to sell or a solicitation of an offer to buy any securities in the United States or in any other jurisdiction. This release contains forward-looking statements that are subject to various risks and uncertainties. Future results could differ materially from those described in these forward-looking statements due to certain factors, for example, changes in business, economic, and competitive conditions, regulatory reforms, results of technical studies, foreign exchange rate fluctuations, uncertainties in litigation or investigative proceedings, and the availability of financing. We do not undertake any responsibility to update the forward-looking statements in this release.
View original content to download multimedia:https://www.prnewswire.com/news-releases/dematic-showcases-ai-generated-digital-twin-at-2025-gtc-conference-302404608.html
SOURCE Dematic
Hashtags

Try Our AI Features
Explore what Daily8 AI can do for you:
Comments
No comments yet...
Related Articles


TechCrunch
38 minutes ago
- TechCrunch
Superblocks CEO: How to find a unicorn idea by studying AI system prompts
Brad Menezes, CEO of enterprise vibe coding startup Superblocks, believes the next crop of billion-dollar startup ideas are hiding in almost plain sight: the system prompts used by existing unicorn AI startups. System prompts are the lengthy prompts — over 5,000-6,000 words — that AI startups use to instruct the foundational models from companies like OpenAI or Anthropic on how to generate their application-level AI products. They are, in Menezes view, like a master class in prompt engineering. 'Every single company has a completely different system prompt for the same [foundational] model,' he told TechCrunch. 'They're trying to get the model to do exactly what's required for a specific domain, specific tasks.' System prompts aren't exactly hidden. Customers can ask many AI tools to share theirs. But they aren't always publicly available. So as part of his own startup's new product announcement of an enterprise coding AI agent named Clark, Superblocks offered to share a file of 19 system prompts from some of the most popular AI coding products like Windsurf, Manus, Cursor, Lovable and Bolt. Menezes's tweet went viral, viewed by almost 2 million including big names in the Valley like Sam Blond, formerly of Founders Fund and Brex, and Aaron Levie, a Superblocks investor. Superblocks announced last week that it raised a $23 million Series A, bringing its total to $60 million for its vibe coding tools geared to non-developers at enterprises. So we asked Menezes to walk us through how to study other's system prompts to glean insights. Techcrunch event Save $200+ on your TechCrunch All Stage pass Build smarter. Scale faster. Connect deeper. Join visionaries from Precursor Ventures, NEA, Index Ventures, Underscore VC, and beyond for a day packed with strategies, workshops, and meaningful connections. Save $200+ on your TechCrunch All Stage pass Build smarter. Scale faster. Connect deeper. Join visionaries from Precursor Ventures, NEA, Index Ventures, Underscore VC, and beyond for a day packed with strategies, workshops, and meaningful connections. Boston, MA | REGISTER NOW 'I'd say the biggest learning for us building Clark and reading through the system prompts is that the system prompt itself is maybe 20% of the secret sauce,' Menezes explained. This prompt gives the LLM the baseline of what to do. The other 80% is 'prompt enrichment' he said, which is the infrastructure a startup builds around the calls to the LLM. That part includes instructions it attaches to a user's prompt, and actions taken when returning the response, such as checking for accuracy. He said there are three parts of system prompts to study: role prompting, contextual prompting, and tool use. The first thing to notice is that, while system prompts are written in natural language, they are exceptionally specific. 'You basically have to speak as if you would to a human co-worker,' Menezes said. 'And the instructions have to be perfect.' Role prompting helps the LLMs be consistent, giving both purpose and personality. For instance, Devin's begins with, 'You are Devin, a software engineer using a real computer operating system. You are a real code-wiz: few programmers are as talented as you at understanding codebases, writing functional and clean code, and iterating on your changes until they are correct.' Contextual prompting gives the models the context to consider before acting. It should provide guardrails that can, for instance, reduce costs and ensure clarity on tasks. Cursor's instructs, 'Only call tools when needed, and never mention tool names to the user — just describe what you're doing. … don't show code unless asked. … Read relevant file content before editing and fix clear errors, but don't guess or loop fixes more than three times.' Tool use enables agentic tasks because it instructs the models how to go beyond just generating text. Replit's, for instance, is long and describes editing and searching code, installing languages, setting up and querying PostgreSQL databases, executing shell commands and more. Studying others' system prompts helped Menezes see what other vibe coders emphasized. Tools like Loveable, V0, and Bolt 'focus on fast iteration,' he said, whereas 'Manus, Devin, OpenAI Codex, and Replit' help users create full-stack applications but 'the output is still raw code.' Menezes saw an opportunity to let non-programmers write apps, if his startup could handle more, such as security and access to enterprise data sources like Salesforce. While he's not yet running the multi-billion startup of his dreams, Superblock has landed some notable companies as customers, it said, including Instacart and Paypaya Global. Menezes is also dogfooding the product internally. His software engineers are not allowed to write internal tools; they can only build the product. So his business folks have built agents for all their needs, like one that uses CRM data to identify leads, one that tracks support metrics, another that balance the assignments of the human sales engineers. 'This is basically a way for us to build the tools and not buy the tools,' he sais.


Android Authority
an hour ago
- Android Authority
5 AI tools I rely on more than ChatGPT
Kaitlyn Cimino / Android Authority ChatGPT is usually the first tool that comes to everyone's mind when you start talking about AI. It sure is versatile and capable of doing a lot — often better than others in many ways. Its memory feature helps it learn about you and fine-tune responses, making it more personalized than many other (even paid) alternatives. It's also the one to open the floodgates for a wave of AI tools designed for very specific tasks — the kind that even ChatGPT can't handle well. And that's exactly where the broader world of AI tools comes in. I've tried quite a few of these AI tools, and here are the ones that have truly embedded themselves into my daily workflow. I can't imagine getting through the day without them anymore. What's your go-to AI tool (besides ChatGPT)? 0 votes Gemini NaN % Perplexity NaN % Claude NaN % Something else (comment below!) NaN % Gemini Ryan Haines / Android Authority Gemini is similar to ChatGPT in many ways — and no, I don't use it to unload my life problems. But I do end up using it quite a lot, and the simple reason is its presence. Since I rely on Google products both personally and professionally, Gemini is always just there — sometimes in the sidebar, sometimes just a wake word away. On my Workspace for Business account, I often use it to check grammar, tighten language, or tweak the tone of emails. But I've also had it read contracts in Docs and point out anything working against me or take notes during Meet calls and summarize the meeting within minutes of it ending. It even handles different accents in a single meeting quite well. Perplexity Calvin Wankhede / Android Authority If I've developed muscle memory for using ChatGPT, Perplexity has quietly replaced Google Search for most of my web lookups — especially on desktop. I use it heavily for research. Instead of browsing ten websites, scrubbing YouTube videos, or combing through forums for one specific detail — like what the most popular desktop OS in Europe was in the early 2010s — I just ask Perplexity. And much like appending 'Reddit' to a search to get real user opinions instead of content written for SEO, Perplexity does that for you. It gives you a concise gist, which is handy when I'm looking for general sentiment, say, around viral news. While it saves me the search legwork, I still verify what it gives me just to make sure I'm delivering accurate information with the necessary human oversight. NotebookLM Andy Walker / Android Authority For the longest time, I avoided NotebookLM. It felt like a niche product good for only a few tasks — but that's exactly where its strength lies. And honestly, what a tool Google has made! You can create multiple notebooks and upload source documents, even on the free plan. It analyzes long documents and can surface different perspectives, themes, and patterns — like a real brainstorming partner. That's not what I personally use it for, though. NotebookLM is a true example of AI's potential — I just hope it doesn't land in the Google graveyard anytime soon. What I love is its ability to switch tone easily between 'Guide' and 'Analyst' modes, especially when I need a more conversational or direct approach. But my favorite feature is its podcast-style audio summaries. Those have helped me digest jargon-heavy, never-ending documents while driving or cooking — and suddenly, it doesn't feel like work! NotebookLM is a true example of AI's potential — I just hope it doesn't land in the Google graveyard anytime soon. Notion AI Dhruv Bhutani / Android Authority Some AI tools become part of your routine without you even realizing it — and Notion AI is one of those for me. I initially dismissed it as something Notion was forcing on its users, but I've ended up using it more than I expected. I use Notion for almost all my long-form personal writing — blog posts, short stories, you name it. One thing that's always frustrated me is the lack of autocorrect. When I'm in vomit-draft mode, I don't care about typos or grammar and cleaning them up later was always a pain. With Notion AI, I can fix all that with just a couple of clicks. I can also throw in unformatted lists (groceries, travel packing, etc.) and just ask AI to clean them up. I even use it to brainstorm multiple angles for blog ideas, helping me avoid getting stuck on one track. It's like the second set of eyes I have always wanted for my blogs. The free plan gives me limited prompts, but since I only use Notion once or twice a day, I get by just fine. Ideogram An image generation tool has been eerily missing from this list — that's because I saved the best for the last! Ideogram has been my preferred tool for that because of one big reason. It is one of the only free tools that lets you customize and control a lot of aspects of your generated images, including their size and ratio. Most AI tools generate square images that are terrible for online use as feature images or on social media. Ideogram gets you a few free credits per week and creates some fantastic AI images using its latest-generation model with whatever customization you want. And it also has something called magic prompt that uses AI to create an elaborate prompt on your behalf. We all tend to underexplain AI the exact scene we want, but Ideogram covers you for that. Specialized AI tools are far more useful companions than a chatbot that behaves like an over-eager intern who always needs direction. AI beyond ChatGPT We've had AI around us for years — from Gboard's smart suggestions to Google Assistant — but it wasn't until ChatGPT became a buzzword that we really started noticing generative AI in our everyday lives. It's honestly hard to believe it's just been a couple of years since its arrival. A lot of AI tools have emerged in such a short span, and many of them have surely become an indispensable part of my life. But most importantly, I get to use them to be more productive without fearing about AI dimming my creative spark. They are far more useful companions than a chatbot that behaves like an over-eager intern who always needs direction.
Yahoo
2 hours ago
- Yahoo
WWDC to focus on redesigns as Apple remains sidelined on AI, Bloomberg says
Apple's (AAPL) upcoming Worldwide Developers Conference will do little to assuage fears that the iPhone maker is a laggard in AI, Blomberg's Mark Gurman reports. Instead, the event will focus on design and productivity enhancements for its long-established operating system franchises. The company's keynote address will introduce redesigned software interfaces for the iPhone, iPad, Mac, Apple TV and Apple Watch, in addition to more minor tweaks to the Vision Pro headset. As part of the end-to-end overhaul, the company is also making a sweeping change to its software branding, which will shift from version numbers to a year-based system. That means Apple will introduce iOS 26, iPadOS 26, tvOS 26, visionOS 26, macOS 26 and watchOS 26 – named for 2026. Internally, the operating systems are known as Luck, Charisma, Discovery, Cheer and Nepali, respectively, the author notes. The AI changes will be surprisingly minor are unlikely to impress industry watchers, especially considering the rapid pace of innovation by Alphabet's (GOOG) (GOOGL) Google, Meta Platforms (META), Microsoft (MSFT) and OpenAI, the publication adds. Easily unpack a company's performance with TipRanks' new KPI Data for smart investment decisions Receive undervalued, market resilient stocks right to your inbox with TipRanks' Smart Value Newsletter Published first on TheFly – the ultimate source for real-time, market-moving breaking financial news. Try Now>> See the top stocks recommended by analysts >> Read More on AAPL: Disclaimer & DisclosureReport an Issue Apple's growing list of issues hinders AI reboot, WSJ says Apple expands partnership in India with Tata, Reuters reports Morning News Wrap-Up: Thursday's Biggest Stock Market Stories Apple says App Store ecosystem facilitated $1.3T in developer sales in 2024 This Is How Much Analysts Expect Apple's (AAPL) EPS to Fall after Court Ruling