KPMG
KPMG
AI & the Future of Work : designing what comes next
AI & the Future of Work : designing what comes next
Why this Challenge?

Artificial intelligence is transforming the world of work, not only by automating tasks, but by unlocking entirely new ways to collaborate, learn, and create value. This challenge is open to startups developing solutions that place people, their skills, roles, and experiences, at the center of AI-powered transformation.

The Startup Challenge
AI & the Future of Work: designing what comes next

Artificial intelligence is transforming the world of work, not only by automating tasks, but by unlocking entirely new ways to collaborate, learn, and create value.

We invite startups to build scalable, people-centric innovations that leverage AI to transform how we work, learn, and collaboration, from activation and upskilling to role redesign and workforce strategy.

Context / Need:

This challenge is open to startups developing solutions that place people, their skills, roles, and experiences, at the center of AI-powered transformation.
We’re looking for impactful, scalable innovations that address one or more of the following themes:

  • Activation & adoption : How can organizations move from scattered experiments to meaningful, company-wide adoption of AI?

  • AI upskilling : How can we democratize access to AI knowledge and capabilities across all roles and levels?

  • Role & experience redesign : How can AI elevate, rather than replace, the human experience at work?

  • Workforce shaping & opportunity mapping :How should we rethink structures, leadership, and workforce models in an AI-augmented economy?

Expected Solutions :
If you're building tools, platforms, or services that will define the next era of work, we want to hear from you.
Take part in this challenge to gain visibility, connect with leading ecosystem players, and help shape a more human-centric future of work, powered by AI.

AI & the Future of Work: designing what comes next

Artificial intelligence is transforming the world of work, not only by automating tasks, but by unlocking entirely new ways to collaborate, learn, and create value.

We invite startups to build scalable, people-centric innovations that leverage AI to transform how we work, learn, and collaboration, from activation and upskilling to role redesign and workforce strategy.

Context / Need:

This challenge is open to startups developing solutions that place people, their skills, roles, and experiences, at the center of AI-powered transformation.
We’re looking for impactful, scalable innovations that address one or more of the following themes:

  • Activation & adoption : How can organizations move from scattered experiments to meaningful, company-wide adoption of AI?

  • AI upskilling : How can we democratize access to AI knowledge and capabilities across all roles and levels?

  • Role & experience redesign : How can AI elevate, rather than replace, the human experience at work?

  • Workforce shaping & opportunity mapping :How should we rethink structures, leadership, and workforce models in an AI-augmented economy?

Expected Solutions :
If you're building tools, platforms, or services that will define the next era of work, we want to hear from you.
Take part in this challenge to gain visibility, connect with leading ecosystem players, and help shape a more human-centric future of work, powered by AI.

AI & the Future of Work: designing what comes next

Artificial intelligence is transforming the world of work, not only by automating tasks, but by unlocking entirely new ways to collaborate, learn, and create value.

We invite startups to build scalable, people-centric innovations that leverage AI to transform how we work, learn, and collaboration, from activation and upskilling to role redesign and workforce strategy.

Context / Need:

This challenge is open to startups developing solutions that place people, their skills, roles, and experiences, at the center of AI-powered transformation.
We’re looking for impactful, scalable innovations that address one or more of the following themes:

  • Activation & adoption : How can organizations move from scattered experiments to meaningful, company-wide adoption of AI?

  • AI upskilling : How can we democratize access to AI knowledge and capabilities across all roles and levels?

  • Role & experience redesign : How can AI elevate, rather than replace, the human experience at work?

  • Workforce shaping & opportunity mapping :How should we rethink structures, leadership, and workforce models in an AI-augmented economy?

Expected Solutions :
If you're building tools, platforms, or services that will define the next era of work, we want to hear from you.
Take part in this challenge to gain visibility, connect with leading ecosystem players, and help shape a more human-centric future of work, powered by AI.

Selection Criteria
Theme

You must address at least one of the four pillars of the challenge’s themes.

Commercial Viability

The commercial viability including revenue generation & an active existing client portfolio (at least 2)

Team

The composition and development potential of the team

Scalability

Scalability of the solution in various contexts & according to user demands.

Geography

Your startup is based in Europe.

Business collaboration

Potential for collaboration with KPMG's business line and its clients

Rewards
Play an active role in our six business sectors

Your solution, product or service demonstrates that you can play an active role in LVMH's ecosystem and deliver on a large scale. Whether it be the creation process, the omnichannel customer journey, or operation and manufacturing, you support the Group's legacy of excellence and innovation in all areas of its 6 business sectors.

  • Fashion & Leather Goods

  • Wines & Spirits

  • Perfumes & Cosmetics

  • Watches & Jewelry

  • Other Activities

  • Selective Retailing

Timeline

00:00:00:00

left to apply

left to apply

FAQ

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

******* JAVASCRIPT *******/ /** * Allowed parameters for the tracking code */ const allowedParameters: string[] = [ 'ca', 'utm', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', // 'cat', // Blog // 'ag_t', 't', // Warning this parameters is used like tracking for Challenges partners "Agorize", 'wid' // Paramters for revolugo urls ]; /** * Rreturn the object with the allowed parameters * @param ownParams URLSearchParams * @returns Object */ const ownCtmParameters = (ownParams: URLSearchParams) => { let obj = {}; for (const [key, value] of ownParams.entries()) { //console.log("ownCtmParameters key: ", key); if (allowedParameters.includes(key)) { // console.log("PAss key: ", key); obj[key] = value; } else { // console.log("No PAss key: ", key); } } return obj; }; /** * Insert the tracking code in the anchor elements * @returns void */ const insertTrackingCode = () => { // Get tracking parameters from URL search params const searchParams = new URLSearchParams(window.location.search); // Convert search params to object const filteredParams = ownCtmParameters(searchParams); // If no parameters, return early if (Object.keys(filteredParams).length === 0) { return; } const paramsString = new URLSearchParams(filteredParams).toString(); const baseUrl = window.location.origin; // Get all anchor elements from the current document const anchors = document.querySelectorAll('a'); for (const anchor of anchors) { const href = anchor.getAttribute('href'); const target = anchor.getAttribute('target'); if (!href || target === '_blank') { continue; } // Normalize href const normalizedHref = href.startsWith('https') ? href : href.replace(/^\.\//, '/'); try { const url = normalizedHref.startsWith('http') ? new URL(normalizedHref) : new URL(normalizedHref, baseUrl); const baseUrlObj = new URL(baseUrl); const isExternal = url.origin !== baseUrlObj.origin && !normalizedHref.includes('vivatech.com') && !normalizedHref.includes('vivatechnology.com'); if (isExternal) { continue; } // Add tracking parameters const hasExistingParams = url.search.length > 0; if (hasExistingParams) { url.search += '&' + paramsString; } else { url.search = '?' + paramsString; } anchor.setAttribute('href', url.origin + url.pathname + url.search + (url.hash || '')); } catch (e) { // If href is not a valid URL, skip it continue; } } }; /******* END JAVASCRIPT *******/ /******* INTEGRATION *******/ // Or with DOMContentLoaded document.addEventListener('DOMContentLoaded', () => { insertTrackingCode(); }); /******* END INTEGRATION *******/