Spaces:
Runtime error
Runtime error
horriblecpp commited on
Commit Β·
065760f
1
Parent(s): 1f0067f
Debug Qdrant 404, expand Web Summit 2025 data, and refine intent classification
Browse files- backend/intent_classifier.py +25 -2
- backend/vectordb.py +9 -1
- intents.yaml +3 -4
- websummit_lisbon2025_companies.csv +120 -75
backend/intent_classifier.py
CHANGED
|
@@ -1,8 +1,12 @@
|
|
| 1 |
import json
|
| 2 |
import os
|
| 3 |
from pathlib import Path
|
| 4 |
-
|
| 5 |
import yaml
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
from openai import OpenAI
|
| 7 |
|
| 8 |
client = OpenAI(api_key=os.getenv("OPENAI_API_KEY"))
|
|
@@ -10,11 +14,30 @@ client = OpenAI(api_key=os.getenv("OPENAI_API_KEY"))
|
|
| 10 |
_INTENTS_PATH = Path(__file__).parent.parent / "intents.yaml"
|
| 11 |
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
def _load_taxonomy() -> dict:
|
| 14 |
with open(_INTENTS_PATH) as f:
|
| 15 |
return yaml.safe_load(f)["intents"]
|
| 16 |
|
| 17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
def _build_system_prompt(taxonomy: dict) -> str:
|
| 19 |
lines = ["You are an intent classifier. Given a user message, return JSON with keys: domain, intent, confidence (high/medium/low)."]
|
| 20 |
lines.append("\nKnown intents (domain β intent: example utterances):\n")
|
|
@@ -42,4 +65,4 @@ def classify(utterance: str) -> dict:
|
|
| 42 |
temperature=0,
|
| 43 |
)
|
| 44 |
|
| 45 |
-
return json.loads(response.choices[0].message.content)
|
|
|
|
| 1 |
import json
|
| 2 |
import os
|
| 3 |
from pathlib import Path
|
| 4 |
+
from pydantic import BaseModel
|
| 5 |
import yaml
|
| 6 |
+
|
| 7 |
+
from typing import cast
|
| 8 |
+
|
| 9 |
+
|
| 10 |
from openai import OpenAI
|
| 11 |
|
| 12 |
client = OpenAI(api_key=os.getenv("OPENAI_API_KEY"))
|
|
|
|
| 14 |
_INTENTS_PATH = Path(__file__).parent.parent / "intents.yaml"
|
| 15 |
|
| 16 |
|
| 17 |
+
structured_output = {
|
| 18 |
+
"type": "object",
|
| 19 |
+
"properties": {
|
| 20 |
+
"domain": {"type": "string"},
|
| 21 |
+
"intent": {"type": "string"},
|
| 22 |
+
"confidence": {"type": "string", 'enum': ['low', 'medium', 'high']}
|
| 23 |
+
},
|
| 24 |
+
"required": ['domain', 'intent', 'confidence']
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
def _load_taxonomy() -> dict:
|
| 28 |
with open(_INTENTS_PATH) as f:
|
| 29 |
return yaml.safe_load(f)["intents"]
|
| 30 |
|
| 31 |
|
| 32 |
+
# TODO: specialize to particular bot package/service specialized handler:
|
| 33 |
+
def _build_specialized_handler(taxonomy: dict, handler_name: str) -> str:
|
| 34 |
+
"""
|
| 35 |
+
|
| 36 |
+
"""
|
| 37 |
+
|
| 38 |
+
return ''
|
| 39 |
+
|
| 40 |
+
|
| 41 |
def _build_system_prompt(taxonomy: dict) -> str:
|
| 42 |
lines = ["You are an intent classifier. Given a user message, return JSON with keys: domain, intent, confidence (high/medium/low)."]
|
| 43 |
lines.append("\nKnown intents (domain β intent: example utterances):\n")
|
|
|
|
| 65 |
temperature=0,
|
| 66 |
)
|
| 67 |
|
| 68 |
+
return json.loads(cast(str, response.choices[0].message.content))
|
backend/vectordb.py
CHANGED
|
@@ -32,7 +32,15 @@ def _collection() -> str:
|
|
| 32 |
def ensure_collection() -> None:
|
| 33 |
client = _get_client()
|
| 34 |
col = _collection()
|
| 35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
if col not in existing:
|
| 37 |
client.create_collection(
|
| 38 |
collection_name=col,
|
|
|
|
| 32 |
def ensure_collection() -> None:
|
| 33 |
client = _get_client()
|
| 34 |
col = _collection()
|
| 35 |
+
try:
|
| 36 |
+
existing = [c.name for c in client.get_collections().collections]
|
| 37 |
+
except Exception as e:
|
| 38 |
+
url = os.environ.get("QDRANT_URL", "unknown")
|
| 39 |
+
print(f"Error connecting to Qdrant at {url}: {e}")
|
| 40 |
+
if "404" in str(e):
|
| 41 |
+
print("Hint: A 404 error often means the QDRANT_URL is pointing to a path that doesn't exist or a proxy that doesn't recognize the request. If you are using Hugging Face Spaces, ensure the URL is the direct space URL (e.g., https://user-name.hf.space) and that the Qdrant service is running and reachable.")
|
| 42 |
+
raise e
|
| 43 |
+
|
| 44 |
if col not in existing:
|
| 45 |
client.create_collection(
|
| 46 |
collection_name=col,
|
intents.yaml
CHANGED
|
@@ -16,8 +16,7 @@ intents:
|
|
| 16 |
- "I want to remember something"
|
| 17 |
recall:
|
| 18 |
utterances:
|
| 19 |
-
- "I want to recall something"
|
| 20 |
-
|
| 21 |
moneyshare:
|
| 22 |
avoid_fee:
|
| 23 |
utterances:
|
|
@@ -35,12 +34,10 @@ intents:
|
|
| 35 |
utterances:
|
| 36 |
- "I have food to share"
|
| 37 |
- "I want to share some food"
|
| 38 |
-
|
| 39 |
billpayshare:
|
| 40 |
request_bill_help:
|
| 41 |
utterances:
|
| 42 |
- "I need help with a bill"
|
| 43 |
-
|
| 44 |
bloodshare:
|
| 45 |
request_blood:
|
| 46 |
utterances:
|
|
@@ -78,6 +75,8 @@ intents:
|
|
| 78 |
- "I've purchased some items on my shopping list"
|
| 79 |
- "I have purchased some items on my shopping list"
|
| 80 |
|
|
|
|
|
|
|
| 81 |
bot_store:
|
| 82 |
add_package:
|
| 83 |
utterances:
|
|
|
|
| 16 |
- "I want to remember something"
|
| 17 |
recall:
|
| 18 |
utterances:
|
| 19 |
+
- "I want to recall something"
|
|
|
|
| 20 |
moneyshare:
|
| 21 |
avoid_fee:
|
| 22 |
utterances:
|
|
|
|
| 34 |
utterances:
|
| 35 |
- "I have food to share"
|
| 36 |
- "I want to share some food"
|
|
|
|
| 37 |
billpayshare:
|
| 38 |
request_bill_help:
|
| 39 |
utterances:
|
| 40 |
- "I need help with a bill"
|
|
|
|
| 41 |
bloodshare:
|
| 42 |
request_blood:
|
| 43 |
utterances:
|
|
|
|
| 75 |
- "I've purchased some items on my shopping list"
|
| 76 |
- "I have purchased some items on my shopping list"
|
| 77 |
|
| 78 |
+
|
| 79 |
+
|
| 80 |
bot_store:
|
| 81 |
add_package:
|
| 82 |
utterances:
|
websummit_lisbon2025_companies.csv
CHANGED
|
@@ -1,75 +1,120 @@
|
|
| 1 |
-
company_name,website,short_description,product_description,mapped_function,mapped_industry,match_keywords,aliases,active,priority,source
|
| 2 |
-
Lovable,https://lovable.dev,AI-powered full-stack app builder for non-engineers,"Lovable lets users build and deploy full-stack web applications by chatting with AI. It generates React code, connects to Supabase backends, and deploys instantly β no coding required. Backed by Y Combinator and used by founders and product teams for rapid prototyping.",App Development,AI Development Tools,"lovable, ai app builder, no-code, react, web app, full stack, supabase, vibe coding, gpt engineer",Lovable AI,true,8,websummit-lisbon2025
|
| 3 |
-
Runway,https://runwayml.com,AI-powered video generation and creative tools platform,"Runway provides generative AI tools for video creation including text-to-video, image-to-video, and advanced video editing. Used by filmmakers, marketers, and creative teams for AI-generated media production at scale.",Video Creation,Creative AI Tools,"runway, ai video, generative video, text to video, video editing, creative ai, media generation, gen-2, gen-3",RunwayML,true,8,websummit-lisbon2025
|
| 4 |
-
Replit,https://replit.com,AI-powered collaborative coding environment and cloud IDE,"Replit is an online IDE with AI coding assistance allowing developers to write, run, and deploy code from any browser. Replit Agent builds full applications from natural language. Used for education, prototyping, and production deployment.",Software Development,Developer Tools,"replit, online ide, ai coding, collaborative coding, deployment, replit agent, browser ide, code editor, cloud ide",Replit IDE,true,7,websummit-lisbon2025
|
| 5 |
-
Decagon AI,https://decagon.ai,AI customer support agents for enterprise companies,"Decagon builds AI-powered customer support agents that handle complex queries end-to-end, integrate with existing helpdesk tools, and escalate to humans when needed. Used by companies like Rippling, Duolingo, and Notion to deflect support volume.",Customer Support,AI SaaS,"decagon, ai customer support, ai agents, helpdesk, customer service automation, support bot, ai chat, deflection",Decagon,true,7,websummit-lisbon2025
|
| 6 |
-
Cloudflare,https://cloudflare.com,"Global network platform for security, performance, and edge computing","Cloudflare provides CDN, DDoS protection, zero trust security, DNS management, and edge computing through its global network spanning 300+ cities. Also offers Workers for serverless edge computing and R2 for object storage.",Network Security & Infrastructure,Cybersecurity,"cloudflare, cdn, ddos protection, zero trust, dns, edge computing, workers, security, network, waf, firewall",CF,true,9,websummit-lisbon2025
|
| 7 |
-
Manus AI,https://manus.im,Autonomous AI agent platform for complex multi-step tasks,"Manus is a general-purpose AI agent that can autonomously browse the web, write and execute code, manage files, and complete multi-step research and data tasks without human intervention. Designed for knowledge work automation.",AI Automation,AI SaaS,"manus, ai agent, autonomous agent, agentic ai, task automation, web browsing agent, ai assistant, computer use",Manus,true,8,websummit-lisbon2025
|
| 8 |
-
Jasper,https://jasper.ai,AI content platform for marketing teams and enterprises,"Jasper provides AI writing tools for marketing content including blog posts, social copy, ad creative, and email campaigns. Supports brand voice customization, content templates, and team collaboration for scalable content production across channels.",Content Creation,Marketing SaaS,"jasper, ai writing, content creation, marketing copy, blog posts, ad creative, brand voice, ai content, copywriting",Jasper AI,true,6,websummit-lisbon2025
|
| 9 |
-
Glean,https://glean.com,AI-powered enterprise search and knowledge discovery platform,"Glean connects to all company apps and data sources to provide unified AI search across the enterprise. Surfaces relevant documents, answers questions using company knowledge, and integrates with Slack, Google Workspace, Salesforce, and 100+ tools.",Enterprise Search,AI SaaS,"glean, enterprise search, ai search, knowledge management, semantic search, workplace ai, company knowledge, rag",Glean AI,true,7,websummit-lisbon2025
|
| 10 |
-
Intercom,https://intercom.com,AI-first customer service platform with live chat and automation,"Intercom provides customer messaging tools including Fin AI chatbot, live chat, help center, and support ticketing. Integrates across web, mobile, and email to handle customer queries, onboarding flows, and proactive customer engagement.",Customer Support,Customer Success SaaS,"intercom, live chat, customer support, chatbot, fin ai, help desk, customer messaging, onboarding, customer engagement",Intercom Messenger,true,7,websummit-lisbon2025
|
| 11 |
-
Linear,https://linear.app,Fast and opinionated project management tool for software teams,"Linear is a project management and issue tracking tool built for engineering teams. Offers speed-optimized workflows, Git integration, roadmapping, and cycle planning. Known for its minimalist design and keyboard-first navigation.",Project Management,Developer Tools,"linear, project management, issue tracking, engineering workflow, sprint planning, roadmap, git integration, cycles",Linear App,true,6,websummit-lisbon2025
|
| 12 |
-
Miro,https://miro.com,Visual collaboration platform for brainstorming and product planning,"Miro is an online whiteboard and collaboration platform used by teams for brainstorming, wireframing, sprint retrospectives, and product roadmapping. Offers templates, sticky notes, diagramming tools, and integrations with Jira, Slack, and Figma.",Visual Collaboration,Productivity SaaS,"miro, whiteboard, visual collaboration, brainstorming, diagramming, wireframing, sprint retro, product planning, online board",RealtimeBoard,true,7,websummit-lisbon2025
|
| 13 |
-
Remote,https://remote.com,Global HR platform for hiring and managing international employees,"Remote handles global payroll, benefits, compliance, and contractor management for distributed teams. Companies use it to hire in 180+ countries without setting up local legal entities. Covers employer of record (EOR), PEO, and contractor payments.",Global HR & Payroll,Human Resources and Recruiting,"remote, global payroll, employer of record, eor, international hiring, contractor management, hr compliance, peo, distributed teams",Remote.com,true,7,websummit-lisbon2025
|
| 14 |
-
Nerdio,https://nerdio.com,Microsoft cloud management platform for MSPs and enterprise IT,"Nerdio helps managed service providers and enterprises deploy and optimize Azure Virtual Desktop and Windows 365. Provides cost management, auto-scaling, multi-tenant management, and Microsoft 365 administration β reducing cloud spend by up to 60%.",IT Management,Enterprise IT SaaS,"nerdio, azure virtual desktop, avd, windows 365, msp, microsoft cloud, it management, virtual desktop, azure",Nerdio Manager,true,5,websummit-lisbon2025
|
| 15 |
-
Parloa,https://parloa.com,AI voice agents for enterprise contact centers,"Parloa builds AI-powered voice and chat agents for contact centers. The platform handles inbound phone calls, automates customer service workflows, and integrates with CRM and telephony systems. Deployed by insurers, retailers, and telcos at scale.",Contact Center AI,Customer Support SaaS,"parloa, ai voice agent, contact center, phone ai, ivr, voice automation, conversational ai, customer service, telephony",Parloa AI,true,6,websummit-lisbon2025
|
| 16 |
-
Superhuman,https://superhuman.com,AI-powered email client built for speed and productivity,"Superhuman is a premium email client layered on top of Gmail and Outlook with AI features including email summarization, reply drafting, and smart follow-up reminders. Built for professionals who need to manage high email volume and reach inbox zero.",Email Productivity,Productivity SaaS,"superhuman, email client, ai email, inbox zero, gmail, productivity, email speed, follow-up reminders, email management",Superhuman Email,true,6,websummit-lisbon2025
|
| 17 |
-
TestGorilla,https://testgorilla.com,Pre-employment skills testing platform for data-driven hiring,"TestGorilla provides a library of 400+ skills assessments covering coding, cognitive ability, personality, and role-specific tests. HR teams use it to screen candidates before interviews, reduce bias, and make evidence-based hiring decisions.",Pre-Employment Testing,Human Resources and Recruiting,"testgorilla, pre-employment testing, skills assessment, hiring, screening, cognitive tests, coding tests, recruitment, talent assessment",Test Gorilla,true,6,websummit-lisbon2025
|
| 18 |
-
Hootsuite,https://hootsuite.com,Social media management platform for scheduling and analytics,"Hootsuite lets teams manage multiple social media accounts from one dashboard. Features include post scheduling, social listening, analytics, team collaboration, and paid ad management across Instagram, LinkedIn, Twitter/X, Facebook, and TikTok.",Social Media Management,Marketing SaaS,"hootsuite, social media, scheduling, social listening, analytics, instagram, linkedin, content calendar, engagement, social publishing",Hootsuite Dashboard,true,6,websummit-lisbon2025
|
| 19 |
-
Oura,https://ouraring.com,Smart ring for sleep tracking and personal health monitoring,"Oura Ring is a wearable health tracker worn on the finger that measures sleep stages, heart rate variability, body temperature, and activity levels. Provides readiness, sleep, and activity scores via its companion app. Used by athletes and health-conscious consumers.",Health Monitoring,HealthTech,"oura, smart ring, sleep tracking, hrv, health monitoring, wearable, readiness score, body temperature, oura ring",Oura Ring,true,7,websummit-lisbon2025
|
| 20 |
-
Picsart,https://picsart.com,AI-powered creative platform for photo and video editing,"Picsart offers a suite of AI creative tools including background removal, image generation, photo filters, and video editing. Used by content creators, social media managers, and small businesses for rapid visual content production without design skills.",Visual Content Creation,Creative AI Tools,"picsart, photo editing, ai image, background removal, video editing, creative tools, content creator, visual design, image generation",PicsArt,true,6,websummit-lisbon2025
|
| 21 |
-
Vinted,https://vinted.com,Peer-to-peer marketplace for buying and selling secondhand fashion,"Vinted is a consumer-to-consumer marketplace for pre-owned clothing, accessories, and electronics. Sellers list items for free while buyers pay a buyer protection fee. Operates across 20+ European countries with over 80 million members.",Marketplace,eCommerce,"vinted, secondhand, fashion marketplace, p2p, pre-owned, resale, vintage clothing, circular fashion, recommerce",Vinted Marketplace,true,5,websummit-lisbon2025
|
| 22 |
-
Toloka,https://toloka.ai,AI data labeling and human-in-the-loop annotation platform,"Toloka provides a platform for large-scale data labeling, annotation, and AI model evaluation using a global crowd of human workers. Used by AI teams to generate training data, run RLHF pipelines, and perform human-in-the-loop quality checks.",Data Labeling,AI Infrastructure,"toloka, data labeling, annotation, rlhf, human in the loop, crowdsourcing, ai training data, model evaluation, data annotation",Toloka AI,true,6,websummit-lisbon2025
|
| 23 |
-
Alice & Bob,https://alice-bob.com,Quantum computing company building fault-tolerant cat qubit processors,"Alice & Bob develops superconducting quantum processors based on cat qubits β a hardware approach designed to dramatically reduce error rates and accelerate the path to fault-tolerant quantum computers. Targets pharmaceutical, finance, and logistics optimization.",Quantum Computing,Deep Tech,"alice and bob, quantum computing, cat qubit, fault tolerant, superconducting, quantum processor, error correction, quantum hardware",Alice&Bob,true,6,websummit-lisbon2025
|
| 24 |
-
Profluent Bio,https://profluent.bio,AI-first protein design company creating novel biological medicines,Profluent uses large language models trained on protein sequences to design novel proteins and gene editors. Released OpenCRISPR β the first AI-designed gene editor β as open source. Targets therapeutic and industrial biotech applications.,AI Drug Discovery,BioTech,"profluent, protein design, ai biotech, gene editing, crispr, opencrispr, protein language model, drug discovery, computational biology",Profluent,true,7,websummit-lisbon2025
|
| 25 |
-
Absci,https://absci.com,Generative AI drug creation company combining AI with wet lab validation,"Absci uses generative AI to design antibodies and biologics, integrating computational protein design with high-throughput lab screening. Partners with pharma companies to accelerate drug discovery programs from concept to validated lead candidate.",AI Drug Discovery,BioTech,"absci, generative ai, drug discovery, antibody design, biologics, ai pharma, wet lab, drug creation, de novo protein",Absci Corporation,true,6,websummit-lisbon2025
|
| 26 |
-
Lyft,https://lyft.com,Ride-sharing and mobility platform across the US and Canada,"Lyft connects riders with drivers for on-demand transportation via its mobile app. Offers rideshare, bike and scooter rentals, and corporate travel programs. Operates in 644+ cities across the United States and Canada. Competes directly with Uber.",Mobility & Transportation,Transportation Tech,"lyft, rideshare, ride-hailing, mobility, transportation, bike rental, scooter, corporate travel, on-demand",Lyft Rideshare,true,7,websummit-lisbon2025
|
| 27 |
-
Acast,https://acast.com,Open podcast hosting and monetization platform for creators,"Acast provides podcast creators with hosting, analytics, dynamic ad insertion, and monetization tools. Connects podcasters with advertisers through its marketplace and supports listener subscription models. Distributes to all major podcast platforms.",Podcast Monetization,Media Tech,"acast, podcast, hosting, monetization, dynamic ads, podcast distribution, podcast analytics, creator monetization, podcast advertising",Acast Podcast,true,5,websummit-lisbon2025
|
| 28 |
-
FieldAI,https://field.ai,AI platform for autonomous robot deployment in unstructured environments,"FieldAI provides autonomy software for robots operating in GPS-denied and unstructured environments such as construction sites, disaster zones, and industrial facilities. Its software enables real-time perception, navigation, and multi-robot coordination.",Robotics Autonomy,Robotics & AI,"field ai, robot autonomy, autonomous robots, industrial robotics, construction robots, multi-robot, gps denied, robot software",Field AI,true,6,websummit-lisbon2025
|
| 29 |
-
Twelve,https://twelve.co,Carbon transformation company converting CO2 into fuels and materials,"Twelve uses electrochemistry to convert CO2 captured from industrial processes into sustainable fuels, chemicals, and materials β replacing fossil-derived feedstocks. Products include sustainable aviation fuel (SAF) and CO2-derived polymers.",Carbon Capture & Utilization,Climate Tech,"twelve, carbon transformation, co2 utilization, sustainable aviation fuel, saf, electrochemistry, carbon capture, decarbonization, e-fuel",Twelve CO2,true,7,websummit-lisbon2025
|
| 30 |
-
SurveyMonkey,https://surveymonkey.com,Online survey platform for market research and customer feedback,"SurveyMonkey provides tools to create, distribute, and analyze surveys. Used by market researchers, HR teams, and product managers for customer satisfaction, NPS measurement, employee engagement, and academic research. Part of Momentive.",Surveys & Research,Marketing SaaS,"surveymonkey, surveys, online surveys, nps, customer feedback, market research, employee engagement, questionnaire, survey builder",Survey Monkey,true,6,websummit-lisbon2025
|
| 31 |
-
Boston Dynamics,https://bostondynamics.com,Advanced robotics company building agile mobile robots for real-world tasks,"Boston Dynamics creates robots including Spot (quadruped inspection robot), Atlas (humanoid), and Stretch (warehouse logistics robot). Deployed in manufacturing, construction, public safety, and logistics for inspection, data collection, and material handling.",Industrial Robotics,Robotics,"boston dynamics, spot robot, atlas, robotics, quadruped, humanoid robot, industrial automation, inspection robot, warehouse robot",Boston Dynamics Spot,true,8,websummit-lisbon2025
|
| 32 |
-
Atlassian,https://atlassian.com,Enterprise software for team collaboration and project tracking,"Atlassian provides Jira for project tracking, Confluence for documentation, Trello for kanban boards, and Bitbucket for code collaboration. Used by software teams and enterprises worldwide for agile planning, issue tracking, and releasing software.",Project Management,Productivity SaaS,"atlassian, jira, confluence, trello, bitbucket, project management, agile, scrum, team collaboration, issue tracking",Atlassian Software,true,8,websummit-lisbon2025
|
| 33 |
-
Lattice,https://lattice.com,People management platform for performance reviews and employee growth,"Lattice helps HR and people teams run performance reviews, set OKRs, gather continuous feedback, and measure employee engagement. Provides manager tools for 1-on-1s, growth plans, and compensation management across the employee lifecycle.",HR & Performance Management,Human Resources and Recruiting,"lattice, performance reviews, okr, employee engagement, people management, 1on1, feedback, compensation management, hr software",Lattice HQ,true,6,websummit-lisbon2025
|
| 34 |
-
Vercel,https://vercel.com,Frontend cloud platform for deploying and scaling web applications,"Vercel provides infrastructure for frontend teams to deploy, preview, and ship web applications. Built for Next.js and other frameworks with instant global CDN, CI/CD preview deployments, and serverless functions. Used by Airbnb and HashiCorp.",Cloud Deployment,Developer Tools,"vercel, frontend deployment, nextjs, cdn, ci/cd, serverless, web hosting, jamstack, preview deployments, frontend cloud",Vercel Platform,true,7,websummit-lisbon2025
|
| 35 |
-
Yanolja,https://yanolja.com,AI-powered global travel and hospitality cloud platform,"Yanolja offers cloud SaaS for hospitality businesses covering property management systems, booking engines, channel management, and revenue optimization. Dominant in South Korea and expanding globally through its Yanolja Cloud division.",Hospitality Tech,Travel & Hospitality SaaS,"yanolja, hospitality cloud, hotel management, pms, booking engine, channel manager, travel tech, revenue management, hotel saas",Yanolja Cloud,true,5,websummit-lisbon2025
|
| 36 |
-
ServiceNow,https://servicenow.com,Enterprise workflow automation and IT service management platform,"ServiceNow digitizes and automates enterprise workflows across IT, HR, customer service, and operations. Its Now Platform integrates with existing systems to streamline incident management, asset tracking, and employee onboarding via AI-powered workflows.",IT Service Management,Enterprise SaaS,"servicenow, itsm, workflow automation, it service management, incident management, enterprise workflow, now platform, itom, helpdesk",ServiceNow Platform,true,8,websummit-lisbon2025
|
| 37 |
-
Zoho,https://zoho.com,Comprehensive business software suite covering CRM to HR to finance,"Zoho offers 55+ integrated applications covering CRM, email, project management, accounting, HR, and marketing automation. Privacy-focused and competitively priced against Microsoft 365 and Salesforce. Bootstrapped and profitable with 100M+ users.",Business Software Suite,Enterprise SaaS,"zoho, crm, zoho crm, business software, email, project management, accounting, hr, marketing automation, smb software",Zoho Corporation,true,7,websummit-lisbon2025
|
| 38 |
-
Clay,https://clay.com,Data enrichment and sales intelligence platform for outbound teams,"Clay aggregates data from 100+ sources including LinkedIn, Apollo, and Clearbit to build highly enriched prospect lists. Teams use AI-powered workflows to research leads, personalize outreach at scale, and automate GTM operations.",Sales Intelligence,Sales & Marketing SaaS,"clay, data enrichment, sales intelligence, lead enrichment, outbound, prospecting, gtm, crm data, linkedin enrichment, waterfall enrichment",Clay HQ,true,8,websummit-lisbon2025
|
| 39 |
-
Cohere,https://cohere.com,Enterprise LLM platform for building AI-powered business applications,"Cohere provides large language models (Command, Embed, Rerank) optimized for enterprise use cases including RAG, search, classification, and summarization. Offers cloud-agnostic deployment with private cloud and on-premise options for regulated industries.",Enterprise AI,AI Infrastructure,"cohere, llm, enterprise ai, command, embed, rerank, rag, natural language processing, private cloud, on-premise ai",Cohere AI,true,7,websummit-lisbon2025
|
| 40 |
-
Reka,https://reka.ai,Multimodal AI models for enterprise intelligence and complex reasoning,"Reka builds frontier multimodal AI models capable of processing text, images, video, and audio. Models are deployed via API and private cloud for enterprise search, document understanding, and complex reasoning tasks across industries.",AI Models,AI Infrastructure,"reka, multimodal ai, llm, enterprise ai, image understanding, video ai, document processing, reasoning, frontier model",Reka AI,true,6,websummit-lisbon2025
|
| 41 |
-
Groq,https://groq.com,AI inference hardware and cloud delivering ultra-fast LLM token generation,Groq builds the Language Processing Unit (LPU) β custom silicon for AI inference β delivering dramatically faster token generation than GPU-based systems. Its GroqCloud API gives developers access to open-source models at high throughput and low latency.,AI Infrastructure,AI Infrastructure,"groq, lpu, ai inference, fast llm, groqcloud, language processing unit, ai hardware, llama inference, low latency ai",GroqCloud,true,7,websummit-lisbon2025
|
| 42 |
-
Read AI,https://read.ai,AI meeting assistant for transcription summaries and action items,"Read AI joins video meetings on Zoom, Teams, and Google Meet to transcribe in real time, generate meeting summaries, extract action items, and score meeting engagement. Integrates with CRMs and project tools to push notes automatically.",Meeting Intelligence,Productivity SaaS,"read ai, meeting assistant, transcription, meeting summary, action items, zoom, teams, google meet, meeting notes, ai notetaker",Read.ai,true,6,websummit-lisbon2025
|
| 43 |
-
TensorWave,https://tensorwave.com,AI cloud infrastructure platform built on AMD GPUs for training and inference,TensorWave provides cloud computing infrastructure powered by AMD Instinct GPUs targeting AI training and inference workloads. Offers an alternative to NVIDIA-dominated cloud providers with competitive pricing for large-scale AI model training.,AI Cloud Infrastructure,AI Infrastructure,"tensorwave, amd gpu, ai cloud, ai training, inference, gpu cloud, instinct, ai infrastructure, compute, cloud ai",TensorWave AI,true,6,websummit-lisbon2025
|
| 44 |
-
Arm,https://arm.com,Semiconductor IP company powering mobile automotive and AI computing worldwide,"Arm designs CPU and GPU architectures used in virtually all smartphones, tablets, and increasingly in AI accelerators and data center chips. Licenses its architecture to Apple, Qualcomm, and NVIDIA. Over 280 billion Arm-based chips shipped.",Semiconductor IP,Hardware & Semiconductors,"arm, semiconductor, cpu, mobile chip, arm architecture, ai chip, qualcomm, apple silicon, risc, processor design",Arm Ltd,true,9,websummit-lisbon2025
|
| 45 |
-
NVIDIA,https://nvidia.com,AI computing company powering GPU infrastructure for training and inference,"NVIDIA designs GPUs and the CUDA ecosystem that powers the majority of AI training workloads globally. Products include H100/H200 data center GPUs, the NIM inference microservices platform, and Omniverse for simulation and digital twins.",AI Hardware & Computing,Hardware & Semiconductors,"nvidia, gpu, cuda, h100, ai training, inference, omniverse, digital twin, ai computing, data center, h200",NVIDIA Corporation,true,10,websummit-lisbon2025
|
| 46 |
-
Amazon Robotics,https://amazon.com/robotics,Warehouse automation division of Amazon deploying robots at scale across fulfillment,"Amazon Robotics designs and deploys robotic systems across Amazon's fulfillment network including autonomous mobile robots (AMRs), robotic arms, and AI-powered sorting systems. Handles billions of items annually and licenses technology externally.",Warehouse Robotics,Robotics,"amazon robotics, warehouse automation, amr, fulfillment, logistics robots, robotic arm, sorting, autonomous mobile robot, amazon",Amazon Robotics Division,true,7,websummit-lisbon2025
|
| 47 |
-
Wandercraft,https://wandercraft.eu,Exoskeleton technology company enabling walking rehabilitation for paralyzed patients,Wandercraft builds medical exoskeletons for rehabilitation clinics allowing paraplegic and spinal injury patients to walk again. Its Atalante exoskeleton is FDA-cleared and CE-marked for use in hospitals for physiotherapy and clinical trials.,Medical Robotics,HealthTech,"wandercraft, exoskeleton, rehabilitation, paraplegic, walking robot, atalante, spinal injury, physiotherapy, medical device, wearable robot",Wandercraft Exoskeleton,true,6,websummit-lisbon2025
|
| 48 |
-
planqc,https://planqc.eu,Quantum computing startup building neutral atom array processors,"planqc develops quantum computers based on neutral atom arrays enabling high qubit counts and long coherence times. Targets optimization, simulation, and cryptography use cases. Spun out of the Max-Planck Institute and Ludwig Maximilian University Munich.",Quantum Computing,Deep Tech,"planqc, quantum computing, neutral atom, qubit, quantum processor, quantum hardware, optimization, quantum simulation, atom array",planQc,true,6,websummit-lisbon2025
|
| 49 |
-
IonQ,https://ionq.com,Trapped ion quantum computing company with cloud-accessible quantum hardware,"IonQ builds quantum computers using trapped ion technology offering high gate fidelity and low error rates. Accessible via AWS, Azure, and Google Cloud. Targets enterprise use cases in drug discovery, financial optimization, and logistics.",Quantum Computing,Deep Tech,"ionq, quantum computing, trapped ion, quantum hardware, cloud quantum, qubit, quantum gate, drug discovery, oxford ionics",IonQ Quantum,true,7,websummit-lisbon2025
|
| 50 |
-
Samphire Neuroscience,https://samphireneuroscience.com,Neurostimulation wearable for menstrual pain and mental health conditions,Samphire Neuroscience develops neurostimulation devices targeting pain management and mental health. Its first product addresses menstrual pain and anxiety using transcranial electrical stimulation as a drug-free alternative for chronic sufferers.,Neurostimulation,HealthTech,"samphire, neurostimulation, menstrual pain, mental health, tacs, wearable, brain stimulation, pain management, drug free",Samphire,true,5,websummit-lisbon2025
|
| 51 |
-
Science Inc,https://science-inc.com,Biotech company developing next-generation brain-computer interface technologies,Science Inc (founded by Neuralink co-founder Max Hodak) develops next-generation neuroscience and BCI technologies focused on long-term brain-computer interface hardware and biological computing paradigms beyond current neural implant approaches.,Brain-Computer Interface,BioTech,"science inc, bci, brain computer interface, neuroscience, neuralink, max hodak, neural interface, biotech, implant, bci hardware",Science,true,7,websummit-lisbon2025
|
| 52 |
-
Prenuvo,https://prenuvo.com,Preventive full-body MRI scanning service for proactive disease detection,"Prenuvo offers full-body MRI scans completed in under an hour designed to detect early-stage cancers, aneurysms, and other conditions before symptoms appear. Positioned as proactive preventive healthcare with clinics across North America.",Preventive Health,HealthTech,"prenuvo, full body mri, preventive health, cancer screening, early detection, mri scan, whole body scan, preventive medicine",Prenuvo Health,true,6,websummit-lisbon2025
|
| 53 |
-
Fay,https://fay.com,AI-powered platform connecting patients with insurance-covered registered dietitians,"Fay matches patients with registered dietitians covered by insurance for personalized nutrition counseling. Uses AI to streamline scheduling, progress tracking, and billing. Addresses chronic conditions including diabetes, GI disorders, and eating disorders.",Nutrition & Dietitian Platform,HealthTech,"fay, dietitian, nutrition, insurance covered, registered dietitian, chronic disease, diabetes, eating disorder, telehealth nutrition",Fay Health,true,5,websummit-lisbon2025
|
| 54 |
-
Clue,https://helloclue.com,Menstrual health and fertility tracking app with scientific foundation,"Clue is a period and fertility tracking app used by 13 million people in 190 countries. Tracks menstrual cycles, ovulation, symptoms, and mood using algorithm-based predictions. Partnered with reproductive health researchers and fully GDPR-compliant.",Women's Health,HealthTech,"clue, period tracking, fertility, menstrual health, ovulation, women's health, reproductive health, cycle tracking, contraception",Clue App,true,6,websummit-lisbon2025
|
| 55 |
-
Omniscope,https://omniscope.ai,AI-powered retinal diagnostics platform for systemic disease detection,"Omniscope uses AI to analyze retinal images and detect biomarkers for systemic conditions including cardiovascular disease, diabetes, and neurological disorders from a non-invasive eye scan. Deployed in clinics and optometry chains.",AI Diagnostics,HealthTech,"omniscope, retinal imaging, ai diagnostics, eye scan, cardiovascular, diabetes detection, ophthalmology, biomarkers, disease detection",Omniscope AI,true,6,websummit-lisbon2025
|
| 56 |
-
Cradle,https://cradle.bio,AI platform for engineering proteins with improved functional properties,"Cradle provides a platform for protein engineers to design and optimize proteins using generative AI models. Scientists use it to improve enzyme stability, binding affinity, and expression yield β reducing wet lab iteration cycles from months to weeks.",Protein Engineering,BioTech,"cradle, protein engineering, ai biotech, enzyme design, generative ai, protein optimization, directed evolution, wet lab, biotech ai",Cradle Bio,true,6,websummit-lisbon2025
|
| 57 |
-
Commonwealth Fusion Systems,https://cfs.energy,Fusion energy company building compact high-field superconducting tokamak reactors,CFS is developing SPARC β a compact fusion reactor using high-temperature superconducting magnets to achieve net energy gain. Spun out of MIT's PSFC with over $1.8B raised. Targeting commercial fusion power plants in the 2030s.,Fusion Energy,Climate Tech,"commonwealth fusion, cfs, sparc, fusion reactor, fusion energy, hts magnets, tokamak, net energy, clean energy, nuclear fusion",CFS Energy,true,8,websummit-lisbon2025
|
| 58 |
-
Octopus Energy,https://octopusenergy.com,Technology-driven green energy retailer and smart grid software platform,"Octopus Energy supplies renewable electricity and gas to consumers across the UK, US, Germany, Japan, and Australia. Its Kraken platform powers smart energy management and is licensed to other utilities. Uses AI to optimize grid balancing and EV charging.",Green Energy Retail,Climate Tech,"octopus energy, green energy, renewable electricity, kraken platform, smart energy, ev charging, grid balancing, clean energy, energy retail",Octopus,true,7,websummit-lisbon2025
|
| 59 |
-
Marvel Fusion,https://marvelfusion.com,Laser-driven inertial confinement fusion energy startup,Marvel Fusion is developing a laser-based approach to nuclear fusion using short-pulse high-intensity lasers to ignite fuel targets. Partnered with Colorado State University for laser facility access. Based in Munich targeting commercial fusion power.,Fusion Energy,Climate Tech,"marvel fusion, laser fusion, inertial confinement, nuclear fusion, fusion energy, clean energy, laser ignition, fusion power",Marvel Fusion Energy,true,6,websummit-lisbon2025
|
| 60 |
-
1KOMMA5Β°,https://1komma5grad.com,Home energy management platform integrating solar storage heat pump and EV charging,"1KOMMA5Β° installs and connects solar panels, home battery systems, heat pumps, and EV chargers through its Heartbeat AI platform that optimizes energy flows in real time. Operates across Germany, Sweden, Australia, and expanding internationally.",Home Energy Management,Climate Tech,"1komma5, home energy, solar, battery storage, heat pump, ev charging, heartbeat, energy management, prosumer, smart home energy",1.5 Degrees,true,6,websummit-lisbon2025
|
| 61 |
-
CorPower Ocean,https://corpowerocean.com,Wave energy technology company building offshore wave power converters,CorPower Ocean develops wave energy converters (WECs) that harness ocean wave motion to generate clean electricity. Its C4 device uses a resonance-based design for high energy capture. Deployed in commercial pilot projects off the Portuguese coast.,Wave Energy,Climate Tech,"corpower, wave energy, offshore energy, renewable energy, wave power, ocean energy, wec, marine energy, clean electricity",CorPower,true,6,websummit-lisbon2025
|
| 62 |
-
Ascend Elements,https://ascendelements.com,Battery materials company upcycling lithium-ion batteries into new cathode materials,Ascend Elements recovers critical battery materials from spent EV and consumer lithium-ion batteries and reprocesses them into cathode active materials for battery manufacturers. Proprietary Hydro-to-Cathode process reduces cost and carbon vs. virgin materials.,Battery Recycling,Climate Tech,"ascend elements, battery recycling, lithium ion, cathode materials, ev battery, circular economy, critical minerals, battery upcycling",Ascend,true,6,websummit-lisbon2025
|
| 63 |
-
Transmutex,https://transmutex.com,Nuclear technology company eliminating long-lived radioactive waste via transmutation,Transmutex is developing a subcritical nuclear reactor driven by a particle accelerator (ADS) that can transmute long-lived nuclear waste into shorter-lived isotopes while generating clean energy. Based in Geneva with backing from leading nuclear institutions.,Nuclear Innovation,Climate Tech,"transmutex, nuclear waste, transmutation, accelerator driven system, ads, subcritical reactor, clean energy, nuclear, radioactive waste",Transmutex SA,true,5,websummit-lisbon2025
|
| 64 |
-
Pinterest,https://pinterest.com,Visual discovery platform for finding ideas and shoppable products,"Pinterest is a visual bookmarking and discovery platform where users find inspiration for fashion, home decor, recipes, and travel. Features shoppable pins, creator tools, and AI-powered recommendations. Monetized through advertising and shopping integrations.",Visual Discovery,eCommerce,"pinterest, visual discovery, pins, inspiration, shopping, home decor, fashion, recipes, mood board, visual search",Pinterest Platform,true,7,websummit-lisbon2025
|
| 65 |
-
Wolff Olins,https://wolffolins.com,Global brand design consultancy for transformative brand strategy and identity,"Wolff Olins is a London and New York-based brand consultancy designing brand strategies and visual identities for major organizations. Clients include Google, Tata, and the London 2012 Olympics. Known for bold purpose-driven brand transformations.",Brand Strategy,Design & Marketing,"wolff olins, branding, brand strategy, brand identity, design consultancy, corporate identity, brand transformation, rebranding",Wolff Olins Brand,true,4,websummit-lisbon2025
|
| 66 |
-
Mozilla,https://mozilla.org,Open-source web organization behind Firefox and internet privacy advocacy,"Mozilla builds Firefox β a privacy-focused browser used by hundreds of millions globally. Also develops Pocket (read-later app), MDN Web Docs, and advocates for an open and healthy internet. Operates as a non-profit foundation.",Open Web & Privacy,Developer Tools,"mozilla, firefox, browser, privacy, open source, web standards, pocket, mdn, internet health, privacy browser",Mozilla Foundation,true,7,websummit-lisbon2025
|
| 67 |
-
R/GA,https://rga.com,Global digital transformation consultancy and creative innovation agency,"R/GA is a digital creative agency and transformation consultancy that designs products, services, and brand experiences. Known for creating Nike+. Operates venture studios and helps companies build new digital business models and innovation practices.",Digital Transformation,Design & Marketing,"rga, digital agency, brand experience, product design, innovation consultancy, transformation, nike plus, digital marketing, creative agency",R/GA Agency,true,5,websummit-lisbon2025
|
| 68 |
-
Adidas,https://adidas.com,Global sportswear brand and athletic performance innovation company,"Adidas is one of the world's largest sportswear manufacturers producing footwear, apparel, and equipment for sport and lifestyle. Investing heavily in digital commerce, sustainability, and direct-to-consumer channels through its own app and stores.",Sportswear & Retail,Consumer Goods,"adidas, sportswear, sneakers, athletic apparel, footwear, sport performance, lifestyle, direct to consumer, sustainability, fashion",Adidas AG,true,7,websummit-lisbon2025
|
| 69 |
-
Cerebras Systems,https://cerebras.net,AI chip company building wafer-scale processors for frontier model training,Cerebras builds the Wafer Scale Engine (WSE) β the world's largest chip β for AI training and inference. A single WSE-3 has 4 trillion transistors. Cerebras Inference is publicly available for fast open-source model serving.,AI Hardware,AI Infrastructure,"cerebras, wafer scale engine, ai chip, ai training, inference, wse, large chip, ai hardware, frontier models, fast inference",Cerebras,true,7,websummit-lisbon2025
|
| 70 |
-
JCDecaux,https://jcdecaux.com,Global leader in out-of-home advertising and digital street furniture,"JCDecaux is the world's largest outdoor advertising company operating billboards, bus shelters, airport advertising, and urban street furniture in 80 countries. Increasingly leveraging programmatic digital out-of-home (DOOH) and AI-driven audience targeting.",Out-of-Home Advertising,Advertising & Media,"jcdecaux, outdoor advertising, ooh, dooh, billboard, digital signage, airport advertising, programmatic, street furniture",JCDecaux OOH,true,5,websummit-lisbon2025
|
| 71 |
-
Whalar,https://whalar.com,Creator economy platform connecting brands with influencers for social campaigns,"Whalar is a creator commerce platform that matches brands with influencers and content creators for social media campaigns across TikTok, Instagram, and YouTube. Also operates a talent management division and immersive live experiences.",Creator Marketing,Marketing SaaS,"whalar, influencer marketing, creator economy, tiktok, instagram, brand partnerships, content creator, social commerce, ugc",Whalar Group,true,6,websummit-lisbon2025
|
| 72 |
-
bunq,https://bunq.com,European digital bank built for location-independent professionals and travelers,"bunq is a Netherlands-based mobile bank offering multi-currency accounts, instant international transfers, budgeting tools, and a green banking pledge. Popular with digital nomads, freelancers, and expats across the EU.",Digital Banking,FinTech,"bunq, digital bank, neobank, mobile banking, multi-currency, eu banking, freelancer banking, fintech, digital nomad, green banking",bunq Bank,true,6,websummit-lisbon2025
|
| 73 |
-
Qualcomm,https://qualcomm.com,Semiconductor company powering mobile automotive and on-device AI computing,"Qualcomm designs the Snapdragon SoC found in Android smartphones, PCs, cars, and IoT devices. Its AI Engine enables on-device AI inference at the edge. Also provides 5G modem technology and licenses wireless IP to device manufacturers.",Mobile Semiconductors,Hardware & Semiconductors,"qualcomm, snapdragon, mobile chip, 5g, soc, on-device ai, automotive, iot, wireless, modem, arm chip",Qualcomm Technologies,true,9,websummit-lisbon2025
|
| 74 |
-
OnlyFans,https://onlyfans.com,Subscription content platform for creators across entertainment and fitness,"OnlyFans is a subscription-based platform where creators monetize exclusive content directly from fans. Originally known for adult content, it now hosts fitness coaches, musicians, chefs, and educators. Processes billions in creator payouts annually.",Creator Monetization,Creator Economy,"onlyfans, creator platform, subscription, content creator, fan monetization, creator economy, exclusive content, direct to fan",OnlyFans Platform,true,6,websummit-lisbon2025
|
| 75 |
-
Code and Theory,https://codeandtheory.com,Digital product and brand transformation agency combining strategy with engineering,"Code and Theory builds products, platforms, and brand experiences for media, healthcare, and consumer companies. Known for work with Forbes, ESPN, and Gannett. Combines brand strategy with full-stack product engineering execution.",Digital Agency,Design & Marketing,"code and theory, digital agency, product design, brand transformation, engineering, media, ux, digital product, strategy",Code & Theory,true,4,websummit-lisbon2025
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
company_name,website,short_description,product_description,mapped_function,mapped_industry,match_keywords,aliases,active,priority,source,zone
|
| 2 |
+
Lovable,https://lovable.dev,AI-powered full-stack app builder for non-engineers,"Lovable lets users build and deploy full-stack web applications by chatting with AI. It generates React code, connects to Supabase backends, and deploys instantly β no coding required. Backed by Y Combinator and used by founders and product teams for rapid prototyping.",App Development,AI Development Tools,"lovable, ai app builder, no-code, react, web app, full stack, supabase, vibe coding, gpt engineer",Lovable AI,true,8,websummit-lisbon2025,N/A
|
| 3 |
+
Runway,https://runwayml.com,AI-powered video generation and creative tools platform,"Runway provides generative AI tools for video creation including text-to-video, image-to-video, and advanced video editing. Used by filmmakers, marketers, and creative teams for AI-generated media production at scale.",Video Creation,Creative AI Tools,"runway, ai video, generative video, text to video, video editing, creative ai, media generation, gen-2, gen-3",RunwayML,true,8,websummit-lisbon2025,N/A
|
| 4 |
+
Replit,https://replit.com,AI-powered collaborative coding environment and cloud IDE,"Replit is an online IDE with AI coding assistance allowing developers to write, run, and deploy code from any browser. Replit Agent builds full applications from natural language. Used for education, prototyping, and production deployment.",Software Development,Developer Tools,"replit, online ide, ai coding, collaborative coding, deployment, replit agent, browser ide, code editor, cloud ide",Replit IDE,true,7,websummit-lisbon2025,N/A
|
| 5 |
+
Decagon AI,https://decagon.ai,AI customer support agents for enterprise companies,"Decagon builds AI-powered customer support agents that handle complex queries end-to-end, integrate with existing helpdesk tools, and escalate to humans when needed. Used by companies like Rippling, Duolingo, and Notion to deflect support volume.",Customer Support,AI SaaS,"decagon, ai customer support, ai agents, helpdesk, customer service automation, support bot, ai chat, deflection",Decagon,true,7,websummit-lisbon2025,N/A
|
| 6 |
+
Cloudflare,https://cloudflare.com,"Global network platform for security, performance, and edge computing","Cloudflare provides CDN, DDoS protection, zero trust security, DNS management, and edge computing through its global network spanning 300+ cities. Also offers Workers for serverless edge computing and R2 for object storage.",Network Security & Infrastructure,Cybersecurity,"cloudflare, cdn, ddos protection, zero trust, dns, edge computing, workers, security, network, waf, firewall",CF,true,9,websummit-lisbon2025,N/A
|
| 7 |
+
Manus AI,https://manus.im,Autonomous AI agent platform for complex multi-step tasks,"Manus is a general-purpose AI agent that can autonomously browse the web, write and execute code, manage files, and complete multi-step research and data tasks without human intervention. Designed for knowledge work automation.",AI Automation,AI SaaS,"manus, ai agent, autonomous agent, agentic ai, task automation, web browsing agent, ai assistant, computer use",Manus,true,8,websummit-lisbon2025,N/A
|
| 8 |
+
Jasper,https://jasper.ai,AI content platform for marketing teams and enterprises,"Jasper provides AI writing tools for marketing content including blog posts, social copy, ad creative, and email campaigns. Supports brand voice customization, content templates, and team collaboration for scalable content production across channels.",Content Creation,Marketing SaaS,"jasper, ai writing, content creation, marketing copy, blog posts, ad creative, brand voice, ai content, copywriting",Jasper AI,true,6,websummit-lisbon2025,N/A
|
| 9 |
+
Glean,https://glean.com,AI-powered enterprise search and knowledge discovery platform,"Glean connects to all company apps and data sources to provide unified AI search across the enterprise. Surfaces relevant documents, answers questions using company knowledge, and integrates with Slack, Google Workspace, Salesforce, and 100+ tools.",Enterprise Search,AI SaaS,"glean, enterprise search, ai search, knowledge management, semantic search, workplace ai, company knowledge, rag",Glean AI,true,7,websummit-lisbon2025,N/A
|
| 10 |
+
Intercom,https://intercom.com,AI-first customer service platform with live chat and automation,"Intercom provides customer messaging tools including Fin AI chatbot, live chat, help center, and support ticketing. Integrates across web, mobile, and email to handle customer queries, onboarding flows, and proactive customer engagement.",Customer Support,Customer Success SaaS,"intercom, live chat, customer support, chatbot, fin ai, help desk, customer messaging, onboarding, customer engagement",Intercom Messenger,true,7,websummit-lisbon2025,N/A
|
| 11 |
+
Linear,https://linear.app,Fast and opinionated project management tool for software teams,"Linear is a project management and issue tracking tool built for engineering teams. Offers speed-optimized workflows, Git integration, roadmapping, and cycle planning. Known for its minimalist design and keyboard-first navigation.",Project Management,Developer Tools,"linear, project management, issue tracking, engineering workflow, sprint planning, roadmap, git integration, cycles",Linear App,true,6,websummit-lisbon2025,N/A
|
| 12 |
+
Miro,https://miro.com,Visual collaboration platform for brainstorming and product planning,"Miro is an online whiteboard and collaboration platform used by teams for brainstorming, wireframing, sprint retrospectives, and product roadmapping. Offers templates, sticky notes, diagramming tools, and integrations with Jira, Slack, and Figma.",Visual Collaboration,Productivity SaaS,"miro, whiteboard, visual collaboration, brainstorming, diagramming, wireframing, sprint retro, product planning, online board",RealtimeBoard,true,7,websummit-lisbon2025,N/A
|
| 13 |
+
Remote,https://remote.com,Global HR platform for hiring and managing international employees,"Remote handles global payroll, benefits, compliance, and contractor management for distributed teams. Companies use it to hire in 180+ countries without setting up local legal entities. Covers employer of record (EOR), PEO, and contractor payments.",Global HR & Payroll,Human Resources and Recruiting,"remote, global payroll, employer of record, eor, international hiring, contractor management, hr compliance, peo, distributed teams",Remote.com,true,7,websummit-lisbon2025,N/A
|
| 14 |
+
Nerdio,https://nerdio.com,Microsoft cloud management platform for MSPs and enterprise IT,"Nerdio helps managed service providers and enterprises deploy and optimize Azure Virtual Desktop and Windows 365. Provides cost management, auto-scaling, multi-tenant management, and Microsoft 365 administration β reducing cloud spend by up to 60%.",IT Management,Enterprise IT SaaS,"nerdio, azure virtual desktop, avd, windows 365, msp, microsoft cloud, it management, virtual desktop, azure",Nerdio Manager,true,5,websummit-lisbon2025,N/A
|
| 15 |
+
Parloa,https://parloa.com,AI voice agents for enterprise contact centers,"Parloa builds AI-powered voice and chat agents for contact centers. The platform handles inbound phone calls, automates customer service workflows, and integrates with CRM and telephony systems. Deployed by insurers, retailers, and telcos at scale.",Contact Center AI,Customer Support SaaS,"parloa, ai voice agent, contact center, phone ai, ivr, voice automation, conversational ai, customer service, telephony",Parloa AI,true,6,websummit-lisbon2025,N/A
|
| 16 |
+
Superhuman,https://superhuman.com,AI-powered email client built for speed and productivity,"Superhuman is a premium email client layered on top of Gmail and Outlook with AI features including email summarization, reply drafting, and smart follow-up reminders. Built for professionals who need to manage high email volume and reach inbox zero.",Email Productivity,Productivity SaaS,"superhuman, email client, ai email, inbox zero, gmail, productivity, email speed, follow-up reminders, email management",Superhuman Email,true,6,websummit-lisbon2025,N/A
|
| 17 |
+
TestGorilla,https://testgorilla.com,Pre-employment skills testing platform for data-driven hiring,"TestGorilla provides a library of 400+ skills assessments covering coding, cognitive ability, personality, and role-specific tests. HR teams use it to screen candidates before interviews, reduce bias, and make evidence-based hiring decisions.",Pre-Employment Testing,Human Resources and Recruiting,"testgorilla, pre-employment testing, skills assessment, hiring, screening, cognitive tests, coding tests, recruitment, talent assessment",Test Gorilla,true,6,websummit-lisbon2025,N/A
|
| 18 |
+
Hootsuite,https://hootsuite.com,Social media management platform for scheduling and analytics,"Hootsuite lets teams manage multiple social media accounts from one dashboard. Features include post scheduling, social listening, analytics, team collaboration, and paid ad management across Instagram, LinkedIn, Twitter/X, Facebook, and TikTok.",Social Media Management,Marketing SaaS,"hootsuite, social media, scheduling, social listening, analytics, instagram, linkedin, content calendar, engagement, social publishing",Hootsuite Dashboard,true,6,websummit-lisbon2025,N/A
|
| 19 |
+
Oura,https://ouraring.com,Smart ring for sleep tracking and personal health monitoring,"Oura Ring is a wearable health tracker worn on the finger that measures sleep stages, heart rate variability, body temperature, and activity levels. Provides readiness, sleep, and activity scores via its companion app. Used by athletes and health-conscious consumers.",Health Monitoring,HealthTech,"oura, smart ring, sleep tracking, hrv, health monitoring, wearable, readiness score, body temperature, oura ring",Oura Ring,true,7,websummit-lisbon2025,N/A
|
| 20 |
+
Picsart,https://picsart.com,AI-powered creative platform for photo and video editing,"Picsart offers a suite of AI creative tools including background removal, image generation, photo filters, and video editing. Used by content creators, social media managers, and small businesses for rapid visual content production without design skills.",Visual Content Creation,Creative AI Tools,"picsart, photo editing, ai image, background removal, video editing, creative tools, content creator, visual design, image generation",PicsArt,true,6,websummit-lisbon2025,N/A
|
| 21 |
+
Vinted,https://vinted.com,Peer-to-peer marketplace for buying and selling secondhand fashion,"Vinted is a consumer-to-consumer marketplace for pre-owned clothing, accessories, and electronics. Sellers list items for free while buyers pay a buyer protection fee. Operates across 20+ European countries with over 80 million members.",Marketplace,eCommerce,"vinted, secondhand, fashion marketplace, p2p, pre-owned, resale, vintage clothing, circular fashion, recommerce",Vinted Marketplace,true,5,websummit-lisbon2025,N/A
|
| 22 |
+
Toloka,https://toloka.ai,AI data labeling and human-in-the-loop annotation platform,"Toloka provides a platform for large-scale data labeling, annotation, and AI model evaluation using a global crowd of human workers. Used by AI teams to generate training data, run RLHF pipelines, and perform human-in-the-loop quality checks.",Data Labeling,AI Infrastructure,"toloka, data labeling, annotation, rlhf, human in the loop, crowdsourcing, ai training data, model evaluation, data annotation",Toloka AI,true,6,websummit-lisbon2025,N/A
|
| 23 |
+
Alice & Bob,https://alice-bob.com,Quantum computing company building fault-tolerant cat qubit processors,"Alice & Bob develops superconducting quantum processors based on cat qubits β a hardware approach designed to dramatically reduce error rates and accelerate the path to fault-tolerant quantum computers. Targets pharmaceutical, finance, and logistics optimization.",Quantum Computing,Deep Tech,"alice and bob, quantum computing, cat qubit, fault tolerant, superconducting, quantum processor, error correction, quantum hardware",Alice&Bob,true,6,websummit-lisbon2025,N/A
|
| 24 |
+
Profluent Bio,https://profluent.bio,AI-first protein design company creating novel biological medicines,Profluent uses large language models trained on protein sequences to design novel proteins and gene editors. Released OpenCRISPR β the first AI-designed gene editor β as open source. Targets therapeutic and industrial biotech applications.,AI Drug Discovery,BioTech,"profluent, protein design, ai biotech, gene editing, crispr, opencrispr, protein language model, drug discovery, computational biology",Profluent,true,7,websummit-lisbon2025,N/A
|
| 25 |
+
Absci,https://absci.com,Generative AI drug creation company combining AI with wet lab validation,"Absci uses generative AI to design antibodies and biologics, integrating computational protein design with high-throughput lab screening. Partners with pharma companies to accelerate drug discovery programs from concept to validated lead candidate.",AI Drug Discovery,BioTech,"absci, generative ai, drug discovery, antibody design, biologics, ai pharma, wet lab, drug creation, de novo protein",Absci Corporation,true,6,websummit-lisbon2025,N/A
|
| 26 |
+
Lyft,https://lyft.com,Ride-sharing and mobility platform across the US and Canada,"Lyft connects riders with drivers for on-demand transportation via its mobile app. Offers rideshare, bike and scooter rentals, and corporate travel programs. Operates in 644+ cities across the United States and Canada. Competes directly with Uber.",Mobility & Transportation,Transportation Tech,"lyft, rideshare, ride-hailing, mobility, transportation, bike rental, scooter, corporate travel, on-demand",Lyft Rideshare,true,7,websummit-lisbon2025,N/A
|
| 27 |
+
Acast,https://acast.com,Open podcast hosting and monetization platform for creators,"Acast provides podcast creators with hosting, analytics, dynamic ad insertion, and monetization tools. Connects podcasters with advertisers through its marketplace and supports listener subscription models. Distributes to all major podcast platforms.",Podcast Monetization,Media Tech,"acast, podcast, hosting, monetization, dynamic ads, podcast distribution, podcast analytics, creator monetization, podcast advertising",Acast Podcast,true,5,websummit-lisbon2025,N/A
|
| 28 |
+
FieldAI,https://field.ai,AI platform for autonomous robot deployment in unstructured environments,"FieldAI provides autonomy software for robots operating in GPS-denied and unstructured environments such as construction sites, disaster zones, and industrial facilities. Its software enables real-time perception, navigation, and multi-robot coordination.",Robotics Autonomy,Robotics & AI,"field ai, robot autonomy, autonomous robots, industrial robotics, construction robots, multi-robot, gps denied, robot software",Field AI,true,6,websummit-lisbon2025,N/A
|
| 29 |
+
Twelve,https://twelve.co,Carbon transformation company converting CO2 into fuels and materials,"Twelve uses electrochemistry to convert CO2 captured from industrial processes into sustainable fuels, chemicals, and materials β replacing fossil-derived feedstocks. Products include sustainable aviation fuel (SAF) and CO2-derived polymers.",Carbon Capture & Utilization,Climate Tech,"twelve, carbon transformation, co2 utilization, sustainable aviation fuel, saf, electrochemistry, carbon capture, decarbonization, e-fuel",Twelve CO2,true,7,websummit-lisbon2025,N/A
|
| 30 |
+
SurveyMonkey,https://surveymonkey.com,Online survey platform for market research and customer feedback,"SurveyMonkey provides tools to create, distribute, and analyze surveys. Used by market researchers, HR teams, and product managers for customer satisfaction, NPS measurement, employee engagement, and academic research. Part of Momentive.",Surveys & Research,Marketing SaaS,"surveymonkey, surveys, online surveys, nps, customer feedback, market research, employee engagement, questionnaire, survey builder",Survey Monkey,true,6,websummit-lisbon2025,N/A
|
| 31 |
+
Boston Dynamics,https://bostondynamics.com,Advanced robotics company building agile mobile robots for real-world tasks,"Boston Dynamics creates robots including Spot (quadruped inspection robot), Atlas (humanoid), and Stretch (warehouse logistics robot). Deployed in manufacturing, construction, public safety, and logistics for inspection, data collection, and material handling.",Industrial Robotics,Robotics,"boston dynamics, spot robot, atlas, robotics, quadruped, humanoid robot, industrial automation, inspection robot, warehouse robot",Boston Dynamics Spot,true,8,websummit-lisbon2025,N/A
|
| 32 |
+
Atlassian,https://atlassian.com,Enterprise software for team collaboration and project tracking,"Atlassian provides Jira for project tracking, Confluence for documentation, Trello for kanban boards, and Bitbucket for code collaboration. Used by software teams and enterprises worldwide for agile planning, issue tracking, and releasing software.",Project Management,Productivity SaaS,"atlassian, jira, confluence, trello, bitbucket, project management, agile, scrum, team collaboration, issue tracking",Atlassian Software,true,8,websummit-lisbon2025,N/A
|
| 33 |
+
Lattice,https://lattice.com,People management platform for performance reviews and employee growth,"Lattice helps HR and people teams run performance reviews, set OKRs, gather continuous feedback, and measure employee engagement. Provides manager tools for 1-on-1s, growth plans, and compensation management across the employee lifecycle.",HR & Performance Management,Human Resources and Recruiting,"lattice, performance reviews, okr, employee engagement, people management, 1on1, feedback, compensation management, hr software",Lattice HQ,true,6,websummit-lisbon2025,N/A
|
| 34 |
+
Vercel,https://vercel.com,Frontend cloud platform for deploying and scaling web applications,"Vercel provides infrastructure for frontend teams to deploy, preview, and ship web applications. Built for Next.js and other frameworks with instant global CDN, CI/CD preview deployments, and serverless functions. Used by Airbnb and HashiCorp.",Cloud Deployment,Developer Tools,"vercel, frontend deployment, nextjs, cdn, ci/cd, serverless, web hosting, jamstack, preview deployments, frontend cloud",Vercel Platform,true,7,websummit-lisbon2025,N/A
|
| 35 |
+
Yanolja,https://yanolja.com,AI-powered global travel and hospitality cloud platform,"Yanolja offers cloud SaaS for hospitality businesses covering property management systems, booking engines, channel management, and revenue optimization. Dominant in South Korea and expanding globally through its Yanolja Cloud division.",Hospitality Tech,Travel & Hospitality SaaS,"yanolja, hospitality cloud, hotel management, pms, booking engine, channel manager, travel tech, revenue management, hotel saas",Yanolja Cloud,true,5,websummit-lisbon2025,N/A
|
| 36 |
+
ServiceNow,https://servicenow.com,Enterprise workflow automation and IT service management platform,"ServiceNow digitizes and automates enterprise workflows across IT, HR, customer service, and operations. Its Now Platform integrates with existing systems to streamline incident management, asset tracking, and employee onboarding via AI-powered workflows.",IT Service Management,Enterprise SaaS,"servicenow, itsm, workflow automation, it service management, incident management, enterprise workflow, now platform, itom, helpdesk",ServiceNow Platform,true,8,websummit-lisbon2025,N/A
|
| 37 |
+
Zoho,https://zoho.com,Comprehensive business software suite covering CRM to HR to finance,"Zoho offers 55+ integrated applications covering CRM, email, project management, accounting, HR, and marketing automation. Privacy-focused and competitively priced against Microsoft 365 and Salesforce. Bootstrapped and profitable with 100M+ users.",Business Software Suite,Enterprise SaaS,"zoho, crm, zoho crm, business software, email, project management, accounting, hr, marketing automation, smb software",Zoho Corporation,true,7,websummit-lisbon2025,N/A
|
| 38 |
+
Clay,https://clay.com,Data enrichment and sales intelligence platform for outbound teams,"Clay aggregates data from 100+ sources including LinkedIn, Apollo, and Clearbit to build highly enriched prospect lists. Teams use AI-powered workflows to research leads, personalize outreach at scale, and automate GTM operations.",Sales Intelligence,Sales & Marketing SaaS,"clay, data enrichment, sales intelligence, lead enrichment, outbound, prospecting, gtm, crm data, linkedin enrichment, waterfall enrichment",Clay HQ,true,8,websummit-lisbon2025,N/A
|
| 39 |
+
Cohere,https://cohere.com,Enterprise LLM platform for building AI-powered business applications,"Cohere provides large language models (Command, Embed, Rerank) optimized for enterprise use cases including RAG, search, classification, and summarization. Offers cloud-agnostic deployment with private cloud and on-premise options for regulated industries.",Enterprise AI,AI Infrastructure,"cohere, llm, enterprise ai, command, embed, rerank, rag, natural language processing, private cloud, on-premise ai",Cohere AI,true,7,websummit-lisbon2025,N/A
|
| 40 |
+
Reka,https://reka.ai,Multimodal AI models for enterprise intelligence and complex reasoning,"Reka builds frontier multimodal AI models capable of processing text, images, video, and audio. Models are deployed via API and private cloud for enterprise search, document understanding, and complex reasoning tasks across industries.",AI Models,AI Infrastructure,"reka, multimodal ai, llm, enterprise ai, image understanding, video ai, document processing, reasoning, frontier model",Reka AI,true,6,websummit-lisbon2025,N/A
|
| 41 |
+
Groq,https://groq.com,AI inference hardware and cloud delivering ultra-fast LLM token generation,Groq builds the Language Processing Unit (LPU) β custom silicon for AI inference β delivering dramatically faster token generation than GPU-based systems. Its GroqCloud API gives developers access to open-source models at high throughput and low latency.,AI Infrastructure,AI Infrastructure,"groq, lpu, ai inference, fast llm, groqcloud, language processing unit, ai hardware, llama inference, low latency ai",GroqCloud,true,7,websummit-lisbon2025,N/A
|
| 42 |
+
Read AI,https://read.ai,AI meeting assistant for transcription summaries and action items,"Read AI joins video meetings on Zoom, Teams, and Google Meet to transcribe in real time, generate meeting summaries, extract action items, and score meeting engagement. Integrates with CRMs and project tools to push notes automatically.",Meeting Intelligence,Productivity SaaS,"read ai, meeting assistant, transcription, meeting summary, action items, zoom, teams, google meet, meeting notes, ai notetaker",Read.ai,true,6,websummit-lisbon2025,N/A
|
| 43 |
+
TensorWave,https://tensorwave.com,AI cloud infrastructure platform built on AMD GPUs for training and inference,TensorWave provides cloud computing infrastructure powered by AMD Instinct GPUs targeting AI training and inference workloads. Offers an alternative to NVIDIA-dominated cloud providers with competitive pricing for large-scale AI model training.,AI Cloud Infrastructure,AI Infrastructure,"tensorwave, amd gpu, ai cloud, ai training, inference, gpu cloud, instinct, ai infrastructure, compute, cloud ai",TensorWave AI,true,6,websummit-lisbon2025,N/A
|
| 44 |
+
Arm,https://arm.com,Semiconductor IP company powering mobile automotive and AI computing worldwide,"Arm designs CPU and GPU architectures used in virtually all smartphones, tablets, and increasingly in AI accelerators and data center chips. Licenses its architecture to Apple, Qualcomm, and NVIDIA. Over 280 billion Arm-based chips shipped.",Semiconductor IP,Hardware & Semiconductors,"arm, semiconductor, cpu, mobile chip, arm architecture, ai chip, qualcomm, apple silicon, risc, processor design",Arm Ltd,true,9,websummit-lisbon2025,N/A
|
| 45 |
+
NVIDIA,https://nvidia.com,AI computing company powering GPU infrastructure for training and inference,"NVIDIA designs GPUs and the CUDA ecosystem that powers the majority of AI training workloads globally. Products include H100/H200 data center GPUs, the NIM inference microservices platform, and Omniverse for simulation and digital twins.",AI Hardware & Computing,Hardware & Semiconductors,"nvidia, gpu, cuda, h100, ai training, inference, omniverse, digital twin, ai computing, data center, h200",NVIDIA Corporation,true,10,websummit-lisbon2025,N/A
|
| 46 |
+
Amazon Robotics,https://amazon.com/robotics,Warehouse automation division of Amazon deploying robots at scale across fulfillment,"Amazon Robotics designs and deploys robotic systems across Amazon's fulfillment network including autonomous mobile robots (AMRs), robotic arms, and AI-powered sorting systems. Handles billions of items annually and licenses technology externally.",Warehouse Robotics,Robotics,"amazon robotics, warehouse automation, amr, fulfillment, logistics robots, robotic arm, sorting, autonomous mobile robot, amazon",Amazon Robotics Division,true,7,websummit-lisbon2025,N/A
|
| 47 |
+
Wandercraft,https://wandercraft.eu,Exoskeleton technology company enabling walking rehabilitation for paralyzed patients,Wandercraft builds medical exoskeletons for rehabilitation clinics allowing paraplegic and spinal injury patients to walk again. Its Atalante exoskeleton is FDA-cleared and CE-marked for use in hospitals for physiotherapy and clinical trials.,Medical Robotics,HealthTech,"wandercraft, exoskeleton, rehabilitation, paraplegic, walking robot, atalante, spinal injury, physiotherapy, medical device, wearable robot",Wandercraft Exoskeleton,true,6,websummit-lisbon2025,N/A
|
| 48 |
+
planqc,https://planqc.eu,Quantum computing startup building neutral atom array processors,"planqc develops quantum computers based on neutral atom arrays enabling high qubit counts and long coherence times. Targets optimization, simulation, and cryptography use cases. Spun out of the Max-Planck Institute and Ludwig Maximilian University Munich.",Quantum Computing,Deep Tech,"planqc, quantum computing, neutral atom, qubit, quantum processor, quantum hardware, optimization, quantum simulation, atom array",planQc,true,6,websummit-lisbon2025,N/A
|
| 49 |
+
IonQ,https://ionq.com,Trapped ion quantum computing company with cloud-accessible quantum hardware,"IonQ builds quantum computers using trapped ion technology offering high gate fidelity and low error rates. Accessible via AWS, Azure, and Google Cloud. Targets enterprise use cases in drug discovery, financial optimization, and logistics.",Quantum Computing,Deep Tech,"ionq, quantum computing, trapped ion, quantum hardware, cloud quantum, qubit, quantum gate, drug discovery, oxford ionics",IonQ Quantum,true,7,websummit-lisbon2025,N/A
|
| 50 |
+
Samphire Neuroscience,https://samphireneuroscience.com,Neurostimulation wearable for menstrual pain and mental health conditions,Samphire Neuroscience develops neurostimulation devices targeting pain management and mental health. Its first product addresses menstrual pain and anxiety using transcranial electrical stimulation as a drug-free alternative for chronic sufferers.,Neurostimulation,HealthTech,"samphire, neurostimulation, menstrual pain, mental health, tacs, wearable, brain stimulation, pain management, drug free",Samphire,true,5,websummit-lisbon2025,N/A
|
| 51 |
+
Science Inc,https://science-inc.com,Biotech company developing next-generation brain-computer interface technologies,Science Inc (founded by Neuralink co-founder Max Hodak) develops next-generation neuroscience and BCI technologies focused on long-term brain-computer interface hardware and biological computing paradigms beyond current neural implant approaches.,Brain-Computer Interface,BioTech,"science inc, bci, brain computer interface, neuroscience, neuralink, max hodak, neural interface, biotech, implant, bci hardware",Science,true,7,websummit-lisbon2025,N/A
|
| 52 |
+
Prenuvo,https://prenuvo.com,Preventive full-body MRI scanning service for proactive disease detection,"Prenuvo offers full-body MRI scans completed in under an hour designed to detect early-stage cancers, aneurysms, and other conditions before symptoms appear. Positioned as proactive preventive healthcare with clinics across North America.",Preventive Health,HealthTech,"prenuvo, full body mri, preventive health, cancer screening, early detection, mri scan, whole body scan, preventive medicine",Prenuvo Health,true,6,websummit-lisbon2025,N/A
|
| 53 |
+
Fay,https://fay.com,AI-powered platform connecting patients with insurance-covered registered dietitians,"Fay matches patients with registered dietitians covered by insurance for personalized nutrition counseling. Uses AI to streamline scheduling, progress tracking, and billing. Addresses chronic conditions including diabetes, GI disorders, and eating disorders.",Nutrition & Dietitian Platform,HealthTech,"fay, dietitian, nutrition, insurance covered, registered dietitian, chronic disease, diabetes, eating disorder, telehealth nutrition",Fay Health,true,5,websummit-lisbon2025,N/A
|
| 54 |
+
Clue,https://helloclue.com,Menstrual health and fertility tracking app with scientific foundation,"Clue is a period and fertility tracking app used by 13 million people in 190 countries. Tracks menstrual cycles, ovulation, symptoms, and mood using algorithm-based predictions. Partnered with reproductive health researchers and fully GDPR-compliant.",Women's Health,HealthTech,"clue, period tracking, fertility, menstrual health, ovulation, women's health, reproductive health, cycle tracking, contraception",Clue App,true,6,websummit-lisbon2025,N/A
|
| 55 |
+
Omniscope,https://omniscope.ai,AI-powered retinal diagnostics platform for systemic disease detection,"Omniscope uses AI to analyze retinal images and detect biomarkers for systemic conditions including cardiovascular disease, diabetes, and neurological disorders from a non-invasive eye scan. Deployed in clinics and optometry chains.",AI Diagnostics,HealthTech,"omniscope, retinal imaging, ai diagnostics, eye scan, cardiovascular, diabetes detection, ophthalmology, biomarkers, disease detection",Omniscope AI,true,6,websummit-lisbon2025,N/A
|
| 56 |
+
Cradle,https://cradle.bio,AI platform for engineering proteins with improved functional properties,"Cradle provides a platform for protein engineers to design and optimize proteins using generative AI models. Scientists use it to improve enzyme stability, binding affinity, and expression yield β reducing wet lab iteration cycles from months to weeks.",Protein Engineering,BioTech,"cradle, protein engineering, ai biotech, enzyme design, generative ai, protein optimization, directed evolution, wet lab, biotech ai",Cradle Bio,true,6,websummit-lisbon2025,N/A
|
| 57 |
+
Commonwealth Fusion Systems,https://cfs.energy,Fusion energy company building compact high-field superconducting tokamak reactors,CFS is developing SPARC β a compact fusion reactor using high-temperature superconducting magnets to achieve net energy gain. Spun out of MIT's PSFC with over $1.8B raised. Targeting commercial fusion power plants in the 2030s.,Fusion Energy,Climate Tech,"commonwealth fusion, cfs, sparc, fusion reactor, fusion energy, hts magnets, tokamak, net energy, clean energy, nuclear fusion",CFS Energy,true,8,websummit-lisbon2025,N/A
|
| 58 |
+
Octopus Energy,https://octopusenergy.com,Technology-driven green energy retailer and smart grid software platform,"Octopus Energy supplies renewable electricity and gas to consumers across the UK, US, Germany, Japan, and Australia. Its Kraken platform powers smart energy management and is licensed to other utilities. Uses AI to optimize grid balancing and EV charging.",Green Energy Retail,Climate Tech,"octopus energy, green energy, renewable electricity, kraken platform, smart energy, ev charging, grid balancing, clean energy, energy retail",Octopus,true,7,websummit-lisbon2025,N/A
|
| 59 |
+
Marvel Fusion,https://marvelfusion.com,Laser-driven inertial confinement fusion energy startup,Marvel Fusion is developing a laser-based approach to nuclear fusion using short-pulse high-intensity lasers to ignite fuel targets. Partnered with Colorado State University for laser facility access. Based in Munich targeting commercial fusion power.,Fusion Energy,Climate Tech,"marvel fusion, laser fusion, inertial confinement, nuclear fusion, fusion energy, clean energy, laser ignition, fusion power",Marvel Fusion Energy,true,6,websummit-lisbon2025,N/A
|
| 60 |
+
1KOMMA5Β°,https://1komma5grad.com,Home energy management platform integrating solar storage heat pump and EV charging,"1KOMMA5Β° installs and connects solar panels, home battery systems, heat pumps, and EV chargers through its Heartbeat AI platform that optimizes energy flows in real time. Operates across Germany, Sweden, Australia, and expanding internationally.",Home Energy Management,Climate Tech,"1komma5, home energy, solar, battery storage, heat pump, ev charging, heartbeat, energy management, prosumer, smart home energy",1.5 Degrees,true,6,websummit-lisbon2025,N/A
|
| 61 |
+
CorPower Ocean,https://corpowerocean.com,Wave energy technology company building offshore wave power converters,CorPower Ocean develops wave energy converters (WECs) that harness ocean wave motion to generate clean electricity. Its C4 device uses a resonance-based design for high energy capture. Deployed in commercial pilot projects off the Portuguese coast.,Wave Energy,Climate Tech,"corpower, wave energy, offshore energy, renewable energy, wave power, ocean energy, wec, marine energy, clean electricity",CorPower,true,6,websummit-lisbon2025,N/A
|
| 62 |
+
Ascend Elements,https://ascendelements.com,Battery materials company upcycling lithium-ion batteries into new cathode materials,Ascend Elements recovers critical battery materials from spent EV and consumer lithium-ion batteries and reprocesses them into cathode active materials for battery manufacturers. Proprietary Hydro-to-Cathode process reduces cost and carbon vs. virgin materials.,Battery Recycling,Climate Tech,"ascend elements, battery recycling, lithium ion, cathode materials, ev battery, circular economy, critical minerals, battery upcycling",Ascend,true,6,websummit-lisbon2025,N/A
|
| 63 |
+
Transmutex,https://transmutex.com,Nuclear technology company eliminating long-lived radioactive waste via transmutation,Transmutex is developing a subcritical nuclear reactor driven by a particle accelerator (ADS) that can transmute long-lived nuclear waste into shorter-lived isotopes while generating clean energy. Based in Geneva with backing from leading nuclear institutions.,Nuclear Innovation,Climate Tech,"transmutex, nuclear waste, transmutation, accelerator driven system, ads, subcritical reactor, clean energy, nuclear, radioactive waste",Transmutex SA,true,5,websummit-lisbon2025,N/A
|
| 64 |
+
Pinterest,https://pinterest.com,Visual discovery platform for finding ideas and shoppable products,"Pinterest is a visual bookmarking and discovery platform where users find inspiration for fashion, home decor, recipes, and travel. Features shoppable pins, creator tools, and AI-powered recommendations. Monetized through advertising and shopping integrations.",Visual Discovery,eCommerce,"pinterest, visual discovery, pins, inspiration, shopping, home decor, fashion, recipes, mood board, visual search",Pinterest Platform,true,7,websummit-lisbon2025,N/A
|
| 65 |
+
Wolff Olins,https://wolffolins.com,Global brand design consultancy for transformative brand strategy and identity,"Wolff Olins is a London and New York-based brand consultancy designing brand strategies and visual identities for major organizations. Clients include Google, Tata, and the London 2012 Olympics. Known for bold purpose-driven brand transformations.",Brand Strategy,Design & Marketing,"wolff olins, branding, brand strategy, brand identity, design consultancy, corporate identity, brand transformation, rebranding",Wolff Olins Brand,true,4,websummit-lisbon2025,N/A
|
| 66 |
+
Mozilla,https://mozilla.org,Open-source web organization behind Firefox and internet privacy advocacy,"Mozilla builds Firefox β a privacy-focused browser used by hundreds of millions globally. Also develops Pocket (read-later app), MDN Web Docs, and advocates for an open and healthy internet. Operates as a non-profit foundation.",Open Web & Privacy,Developer Tools,"mozilla, firefox, browser, privacy, open source, web standards, pocket, mdn, internet health, privacy browser",Mozilla Foundation,true,7,websummit-lisbon2025,N/A
|
| 67 |
+
R/GA,https://rga.com,Global digital transformation consultancy and creative innovation agency,"R/GA is a digital creative agency and transformation consultancy that designs products, services, and brand experiences. Known for creating Nike+. Operates venture studios and helps companies build new digital business models and innovation practices.",Digital Transformation,Design & Marketing,"rga, digital agency, brand experience, product design, innovation consultancy, transformation, nike plus, digital marketing, creative agency",R/GA Agency,true,5,websummit-lisbon2025,N/A
|
| 68 |
+
Adidas,https://adidas.com,Global sportswear brand and athletic performance innovation company,"Adidas is one of the world's largest sportswear manufacturers producing footwear, apparel, and equipment for sport and lifestyle. Investing heavily in digital commerce, sustainability, and direct-to-consumer channels through its own app and stores.",Sportswear & Retail,Consumer Goods,"adidas, sportswear, sneakers, athletic apparel, footwear, sport performance, lifestyle, direct to consumer, sustainability, fashion",Adidas AG,true,7,websummit-lisbon2025,N/A
|
| 69 |
+
Cerebras Systems,https://cerebras.net,AI chip company building wafer-scale processors for frontier model training,Cerebras builds the Wafer Scale Engine (WSE) β the world's largest chip β for AI training and inference. A single WSE-3 has 4 trillion transistors. Cerebras Inference is publicly available for fast open-source model serving.,AI Hardware,AI Infrastructure,"cerebras, wafer scale engine, ai chip, ai training, inference, wse, large chip, ai hardware, frontier models, fast inference",Cerebras,true,7,websummit-lisbon2025,N/A
|
| 70 |
+
JCDecaux,https://jcdecaux.com,Global leader in out-of-home advertising and digital street furniture,"JCDecaux is the world's largest outdoor advertising company operating billboards, bus shelters, airport advertising, and urban street furniture in 80 countries. Increasingly leveraging programmatic digital out-of-home (DOOH) and AI-driven audience targeting.",Out-of-Home Advertising,Advertising & Media,"jcdecaux, outdoor advertising, ooh, dooh, billboard, digital signage, airport advertising, programmatic, street furniture",JCDecaux OOH,true,5,websummit-lisbon2025,N/A
|
| 71 |
+
Whalar,https://whalar.com,Creator economy platform connecting brands with influencers for social campaigns,"Whalar is a creator commerce platform that matches brands with influencers and content creators for social media campaigns across TikTok, Instagram, and YouTube. Also operates a talent management division and immersive live experiences.",Creator Marketing,Marketing SaaS,"whalar, influencer marketing, creator economy, tiktok, instagram, brand partnerships, content creator, social commerce, ugc",Whalar Group,true,6,websummit-lisbon2025,N/A
|
| 72 |
+
bunq,https://bunq.com,European digital bank built for location-independent professionals and travelers,"bunq is a Netherlands-based mobile bank offering multi-currency accounts, instant international transfers, budgeting tools, and a green banking pledge. Popular with digital nomads, freelancers, and expats across the EU.",Digital Banking,FinTech,"bunq, digital bank, neobank, mobile banking, multi-currency, eu banking, freelancer banking, fintech, digital nomad, green banking",bunq Bank,true,6,websummit-lisbon2025,N/A
|
| 73 |
+
Qualcomm,https://qualcomm.com,Semiconductor company powering mobile automotive and on-device AI computing,"Qualcomm designs the Snapdragon SoC found in Android smartphones, PCs, cars, and IoT devices. Its AI Engine enables on-device AI inference at the edge. Also provides 5G modem technology and licenses wireless IP to device manufacturers.",Mobile Semiconductors,Hardware & Semiconductors,"qualcomm, snapdragon, mobile chip, 5g, soc, on-device ai, automotive, iot, wireless, modem, arm chip",Qualcomm Technologies,true,9,websummit-lisbon2025,N/A
|
| 74 |
+
OnlyFans,https://onlyfans.com,Subscription content platform for creators across entertainment and fitness,"OnlyFans is a subscription-based platform where creators monetize exclusive content directly from fans. Originally known for adult content, it now hosts fitness coaches, musicians, chefs, and educators. Processes billions in creator payouts annually.",Creator Monetization,Creator Economy,"onlyfans, creator platform, subscription, content creator, fan monetization, creator economy, exclusive content, direct to fan",OnlyFans Platform,true,6,websummit-lisbon2025,N/A
|
| 75 |
+
Code and Theory,https://codeandtheory.com,Digital product and brand transformation agency combining strategy with engineering,"Code and Theory builds products, platforms, and brand experiences for media, healthcare, and consumer companies. Known for work with Forbes, ESPN, and Gannett. Combines brand strategy with full-stack product engineering execution.",Digital Agency,Design & Marketing,"code and theory, digital agency, product design, brand transformation, engineering, media, ux, digital product, strategy",Code & Theory,true,4,websummit-lisbon2025,N/A
|
| 76 |
+
Unbabel,unbabel.com,Enterprise AI translation,B2B platform combining AI and human translation to help businesses deliver multilingual customer support at scale.,Customer Support and Success,General Business,"AI translation, multilingual support, localization",,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 77 |
+
Defined.ai,defined.ai,AI training data marketplace,"Marketplace for businesses to buy, sell, and commission high-quality, ethically sourced training data for AI models.",Data and Analytics,General Business,"training data, AI datasets, data marketplace",DefinedCrowd,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 78 |
+
Biped.ai,biped.ai,AI navigation for visually impaired,"Consumer wearable device that uses autonomous driving technology to guide visually impaired individuals, avoiding obstacles in real-time.",Navigation,,"wearable, visual impairment, AI navigation",Biped,TRUE,High,Web Summit Lisbon 2025,Zone A
|
| 79 |
+
CodiumAI,codium.ai,AI test generation for developers,Developer tool that analyzes codebases and automatically generates meaningful test suites to ensure software reliability.,Product and Engineering,General Business,"AI testing, code generation, developer tools",Codium,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 80 |
+
Colossyan,colossyan.com,AI video for workplace learning,Platform allowing corporate training and HR teams to create engaging video learning content using AI avatars.,Human Resources and Recruiting,Education and Training,"AI avatars, corporate learning, video generation",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 81 |
+
Fixie.ai,fixie.ai,Conversational AI platform,"Enterprise platform that allows engineering teams to easily build, host, and scale conversational AI agents hooked into internal APIs.",Product and Engineering,General Business,"conversational AI, API agents, developer platform",Fixie,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 82 |
+
Inworld AI,inworld.ai,AI NPC engine,"Developer platform creating highly realistic, interactive, and autonomous non-player characters for video games and immersive media.",Product and Engineering,Media and Entertainment,"AI NPCs, gaming AI, interactive media",Inworld,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 83 |
+
Chai,chai-research.com,Conversational AI platform,Consumer chat platform allowing users to discover and chat with millions of different AI personalities and companions.,AI Assistants and Companions,,"AI chat, conversational bots, companions",Chai AI,TRUE,Medium,Web Summit Lisbon 2025,Zone B
|
| 84 |
+
Fireflies.ai,fireflies.ai,AI meeting transcription,"Enterprise voice assistant that plugs into web conferencing tools to transcribe, summarize, and analyze online meetings.",Operations and Process Automation,General Business,"meeting notes, AI transcription, voice assistant",Fireflies,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 85 |
+
Phind,phind.com,AI search engine for developers,Consumer and solo-operator AI search engine specifically tuned to answer complex programming and software engineering questions.,Knowledge and Research Agents,,"developer search, AI coding assistant",,TRUE,High,Web Summit Lisbon 2025,Zone B
|
| 86 |
+
Kagi,kagi.com,Premium ad-free search engine,"Consumer search engine utilizing AI to provide fast, high-quality, and completely ad-free search results for researchers and professionals.",Knowledge and Research Agents,,"ad-free search, premium search, web research",,TRUE,Medium,Web Summit Lisbon 2025,Zone B
|
| 87 |
+
Andi,andisearch.com,Conversational search assistant,Generative AI search agent that summarizes web results and answers user questions directly in a chat interface.,Knowledge and Research Agents,,"AI search, conversational search, answer engine",Andi Search,TRUE,Medium,Web Summit Lisbon 2025,Zone B
|
| 88 |
+
Beautiful.ai,beautiful.ai,Generative presentation software,B2B platform that uses AI to automate the design and formatting of corporate slide decks and presentations.,Sales and Revenue,General Business,"slide decks, presentations, automated design",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 89 |
+
HiredScore,hiredscore.com,Ethical AI for talent acquisition,"Enterprise HR platform providing deep talent orchestration, screening, and hiring analytics with a focus on ethical AI compliance.",Human Resources and Recruiting,General Business,"talent acquisition, HR AI, ethical AI",,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 90 |
+
Helsing,helsing.ai,AI for defense and security,Defense technology company utilizing AI and software capabilities to protect democracies through advanced data intelligence.,Operations and Process Automation,Government and Public Sector,"defense AI, national security, military tech",,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 91 |
+
Spellbook,spellbook.legal,AI contract drafting,Generative AI tool specifically built into Microsoft Word to help corporate lawyers draft and review contracts faster.,Legal and Compliance,General Business,"legal AI, contract drafting, lawyers",,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 92 |
+
Augury,augury.com,Machine health AI,Industrial platform combining IoT sensors and AI to diagnose machine health and predict mechanical failures in manufacturing plants.,Operations and Process Automation,Manufacturing,"machine health, predictive maintenance, IoT, manufacturing",,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 93 |
+
Eko Health,ekohealth.com,AI digital stethoscope,Medical device company combining digital stethoscopes with AI analysis to help doctors detect heart and lung diseases early.,Operations and Process Automation,Healthcare and Clinics,"digital stethoscope, heart health, medtech",Eko,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 94 |
+
Flo Health,flo.health,Women's health and period tracker,"Consumer mobile application providing cycle tracking, health insights, and personalized wellness information for women.",Health and Fitness,,"period tracker, women's health, wellness",Flo,TRUE,High,Web Summit Lisbon 2025,Zone A
|
| 95 |
+
Rilla,rilla.com,Voice AI for outside sales,Conversational intelligence platform built specifically for field sales and home service representatives to track in-person pitches.,Sales and Revenue,General Business,"outside sales, field service, voice AI, sales coaching",Rilla Voice,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 96 |
+
Lavender,lavender.ai,AI email coach,"B2B sales tech that sits inside email clients and uses AI to help sales representatives write better, higher-converting outbound emails.",Sales and Revenue,General Business,"sales tech, cold email, AI writing coach",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 97 |
+
6sense,6sense.com,Account-based marketing AI,B2B revenue AI platform that helps sales and marketing teams identify anonymous buyer intent and target the right accounts.,Marketing and Growth,General Business,"ABM, buyer intent, revenue AI, B2B marketing",,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 98 |
+
Anyword,anyword.com,Data-driven AI copywriting,Enterprise marketing platform that uses predictive AI models to generate and score marketing copy for performance.,Marketing and Growth,General Business,"AI copywriting, predictive marketing, ad copy",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 99 |
+
Murf AI,murf.ai,AI voice generator,"Platform allowing creators and businesses to convert text into studio-quality voiceovers for videos, podcasts, and presentations.",Marketing and Growth,General Business,"text-to-speech, voiceover, AI voice",Murf,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 100 |
+
Kling AI,kling.ai,Generative video model,Consumer and creator platform providing high-fidelity text-to-video and image-to-video generation capabilities.,Creator and Content Agents,,"text-to-video, AI video, generative video",Kling,TRUE,High,Web Summit Lisbon 2025,Zone B
|
| 101 |
+
Guru,getguru.com,AI enterprise wiki,Knowledge management platform that captures internal company information and delivers it to employees in their workflow via an AI agent.,IT and Infrastructure,General Business,"knowledge management, enterprise wiki, internal search",,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 102 |
+
Zapier Central,zapier.com/central,AI workflow bots,Platform enabling teams to create custom AI bots that can securely interact with thousands of business applications to automate tasks.,Operations and Process Automation,General Business,"AI bots, workflow automation, integrations",Central,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 103 |
+
Gumloop,gumloop.com,No-code AI automation,"B2B platform that allows operations teams to build and deploy complex, multi-step AI workflows without writing code.",Operations and Process Automation,General Business,"no-code AI, workflow automation, operations",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 104 |
+
Nebius,nebius.com,AI infrastructure provider,Full-stack cloud solutions for AI developers offering GPU clusters and managed Kubernetes.,Infrastructure / Cloud Computing,Technology / AI Infrastructure,"AI Cloud, GPU, NVIDIA, Infrastructure",,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 105 |
+
PeachWeb,peachweb.io,AI-powered 3D website builder,No-code platform for creating interactive 3D web experiences using WebGL.,Web Design / Content Creation,Internet Software / Design Tech,"3D Website, No-Code, WebGL, AI Design",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 106 |
+
Fayder,faydersports.com,Athlete fan engagement platform,Funding and engagement platform for elite athletes to build subscriber communities.,Fan Engagement / Fundraising,Sports Tech / Creator Economy,"Elite Athletes, Funding, Sports Tech",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 107 |
+
Cipher Labs AI,cipherlabs.dev,AI guardrails and security,Live guardrails and copilots for autonomous AI agents to ensure safety and compliance.,AI Safety / Governance,Artificial Intelligence / Cybersecurity,"AI Guardrails, Autonomous Agents, AI Safety",,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 108 |
+
Fairwai,fairw.ai,AI conversation intelligence,"Platform that analyzes customer interactions across Zoom, Teams, and other tools.",Sales Intelligence / Customer Support,Business Software / SaaS,"Conversation Intelligence, Meeting Insights, AI Transcription",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 109 |
+
VibeVenture,vibeventure.ai,AI-powered startup accelerator,Provides founders with health scores and daily guidance to scale their startups.,Startup Acceleration / Venture Management,Venture Capital / Startup Tech,"Startup Accelerator, AI OS, Founder Guidance",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 110 |
+
GoodMora,goodmora.ai,Strategic intelligence platform,Maps business architecture to identify operational misalignments using AI.,Business Strategy / Organizational Design,Management Consulting / Enterprise Software,"Business Strategy, Organizational Mapping, AI Strategy",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 111 |
+
Coalex.ai,coalex.ai,AI governance platform,Human-in-the-loop trust infrastructure and decision firewalls for AI systems.,AI Governance / Compliance,Artificial Intelligence / RegTech,"AI Governance, Human-in-the-loop, Compliance",,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 112 |
+
AiVA AI,aiva.ai,AI music generation assistant,"Creates original soundtracks for films, games, and commercials using AI.",Creative Content Generation,Media & Entertainment / Creative Tech,"AI Music, Soundtrack, Composer, Creative AI",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 113 |
+
SocialTalk,socialtalk.io,Influencer marketing platform,AI-powered discovery and management tool for influencer marketing campaigns.,Influencer Marketing / Social Media Management,Digital Marketing / AdTech,"Influencer Marketing, Social Media, Analytics",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 114 |
+
DuoKey,duokey.com,Cloud encryption and key management,Specialized in multi-party computation (MPC) for cloud security and encryption.,Data Security / Encryption,Cybersecurity / Cloud Security,"MPC, Encryption, Key Management, Cloud Security",,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 115 |
+
Allpass.ai,allpass.ai,Regulatory compliance automation,Identity verification and KYC/AML compliance platform using machine learning.,Identity Verification / Compliance,Fintech / RegTech,"KYC, AML, Identity Verification, Compliance",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 116 |
+
FortuneGuard,fortuneguard.ai,AI-powered risk mitigation insurance,Provides insurance solutions for war-related risks using AI analytics.,Risk Assessment / Underwriting,InsurTech / Insurance,"War Risk Insurance, AI Risk Analytics, Insurtech",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 117 |
+
Intelswift,intelswift.com,AI customer service automation,Automates customer support using domain-trained AI agents and chatbots.,Customer Support / Help Desk Automation,Customer Service / SaaS,"AI Customer Support, AI Agents, Automation",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 118 |
+
LifesaverSIM,lifesaversim.com,First aid training simulator,Mobile gaming simulator for training in tactical medicine and emergency response.,Medical Training / Emergency Response,EdTech / Defense Tech,"TCCC, First Aid, Simulation, Medical Training",,TRUE,Medium,Web Summit Lisbon 2025,Zone C
|
| 119 |
+
Vulnebify,vulnebify.com,Real-time cybersecurity platform,Tracks vulnerabilities using isolated attack surface replicas and distributed scanners.,Vulnerability Management / Threat Intelligence,Cybersecurity,"Vulnerability Management, Attack Surface, Security",,TRUE,High,Web Summit Lisbon 2025,Zone C
|
| 120 |
+
SYLA,syla.pro,Autonomous knee prosthesis,Bionic knee prosthesis using AI to recognize walking modes in real-time.,Mobility Solutions / Rehabilitation,HealthTech / MedTech,"Bionic Knee, Prosthesis, AI Prosthetics, Mobility",,TRUE,High,Web Summit Lisbon 2025,Zone A
|