Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      The Case For Minimal WordPress Setups: A Contrarian View On Theme Frameworks

      June 4, 2025

      How To Fix Largest Contentful Paint Issues With Subpart Analysis

      June 4, 2025

      How To Prevent WordPress SQL Injection Attacks

      June 4, 2025

      Smashing Animations Part 4: Optimising SVGs

      June 4, 2025

      I test AI tools for a living. Here are 3 image generators I actually use and how

      June 4, 2025

      The world’s smallest 65W USB-C charger is my latest travel essential

      June 4, 2025

      This Spotlight alternative for Mac is my secret weapon for AI-powered search

      June 4, 2025

      Tech prophet Mary Meeker just dropped a massive report on AI trends – here’s your TL;DR

      June 4, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      Beyond AEM: How Adobe Sensei Powers the Full Enterprise Experience

      June 4, 2025
      Recent

      Beyond AEM: How Adobe Sensei Powers the Full Enterprise Experience

      June 4, 2025

      Simplify Negative Relation Queries with Laravel’s whereDoesntHaveRelation Methods

      June 4, 2025

      Cast Model Properties to a Uri Instance in 12.17

      June 4, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      My Favorite Obsidian Plugins and Their Hidden Settings

      June 4, 2025
      Recent

      My Favorite Obsidian Plugins and Their Hidden Settings

      June 4, 2025

      Rilasciata /e/OS 3.0: Nuova Vita per Android Senza Google, Più Privacy e Controllo per l’Utente

      June 4, 2025

      Rilasciata Oracle Linux 9.6: Scopri le Novità e i Miglioramenti nella Sicurezza e nelle Prestazioni

      June 4, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Tech & Work»Elastic’s Search AI impacts employee experience, overall efficiency

    Elastic’s Search AI impacts employee experience, overall efficiency

    February 21, 2025

    With AI making its way into code and infrastructure, it’s also becoming important in the area of data search and retrieval.

    I recently had the chance to discuss this with Steve Kearns, the general manager of Search at Elastic, and how AI and Retrieval Augmented Generation (RAG) can be used to build smarter, more reliable applications.

    SDT: About ‘Search AI’ … doesn’t search already use some kind of AI to return answers to queries? How’s that different from asking Siri or Alexa to find something?

    Steve Kearns: It’s a good question. Search, often called Information Retrieval in academic circles, has been a highly researched, technical field for decades. There are two general approaches to getting the best results for a given user query – lexical search and semantic search. 

    Lexical search matches words in the documents to those in the query and scores them based on sophisticated math around how often those words appear. The word “the” appears in almost all documents, so a match on that word doesn’t mean much. This generally works well on broad types of data and is easy for users to customize with synonyms, weighting of fields, etc.

    Semantic Search, sometimes called “Vector Search” as part of a Vector Database, is a newer approach that became popular in the last few years. It attempts to use a language model at data ingest/indexing time to extract and store a representation of the meaning of the document or paragraph, rather than storing the individual words. By storing the meaning, it makes some types of matching more accurate – the language model can encode the difference between an apple you eat, and an Apple product. It can also match “car” with “auto”, without manually creating synonyms. 

    Increasingly, we’re seeing our customers combine both lexical and semantic search to get the best possible accuracy. This is even more critical today when building GenAI-powered applications. Folks choosing their search/vector database technology need to make sure they have the best platform that provides both lexical and semantic search capabilities. 

    SDT: Virtual assistants have been using Retrieval Augmented Generation on websites for a good number of years now. Is there an additional benefit to using it alongside AI models?

    Kearns: LLMs are amazing tools. They are trained on data from across the internet, and they do a remarkable job encoding, or storing a huge amount of “world knowledge.” This is why you can ask ChatGPT complex questions, like “Why the sky is blue?”, and it’s able to give a clear and nuanced answer. 

    However, most business applications of GenAI require more than just world knowledge – they require information from private data that is specific to your business. Even a simple question like – “Do we have the day after Thanksgiving off?” can’t be answered just with world knowledge. And LLMs have a hard time when they’re asked questions they don’t know the answer to, and will often hallucinate or make up the answer. 

    The best approach to managing hallucinations and bringing knowledge/information from your business to the LLM is an approach called Retrieval Augmented Generation. This combines Search with the LLM, enabling you to build a smarter, more reliable application. So, with RAG, when the user asks a question, rather than just sending the question to the LLM,  you first run a search of the relevant business data. Then, you provide the top results to the LLM as “context”, asking the model to use its world knowledge along with this relevant business data to answer the question. 

    This RAG pattern is now the primary way that users build reliable, accurate, LLM/GenAI-powered applications. Therefore,  businesses need a technology platform that can provide the best search results, at scale, and efficiently. The platform also needs to meet the range of security, privacy, and reliability needs that these real-world applications require. 

    The Search AI platform from Elastic is unique in that we are the most widely deployed and used Search technology. We are also one of the most advanced Vector Databases, enabling us to provide the best lexical and semantic search capabilities inside a single, mature platform. As businesses think about the technologies that they need to power their businesses into the future, search and AI represent critical infrastructure, and the Search AI Platform for Elastic is well-positioned to help. 

    SDT: How will search AI impact the business, and not just the IT side?

    Kearns: We’re seeing a huge amount of interest in GenAI/RAG applications coming from nearly all functions at our customer companies. As companies start building their first GenAI-powered applications, they often start by enabling and empowering their internal teams. In part, to ensure that they have a safe place to test and understand the technology. It is also because they are keen to provide better experiences to their employees. Using modern technology to make work more efficient means more efficiency and happier employees. It can also be a differentiator in a competitive market for talent.

    SDT: Talk about the vector database that underlies the ElasticSearch platform, and why that’s the best approach for search AI. 

    Kearns: Elasticsearch is the heart of our platform. It is a Search Engine, a Vector Database, and a NoSQL Document Store, all in one. Unlike other systems, which try to combine disparate storage and query engines behind a single facade, Elastic has built all of these capabilities natively into Elasticsearch itself. Being built on a single core technology means that we can build a rich query language that allows you to combine lexical and semantic search in a single query. You can also add powerful filters, like geospatial queries, simply by extending the same query. By recognizing that many applications need more than just search/scoring, we support complex aggregations to let you summarize and slice/dice on massive datasets. On a deeper level, the platform itself also contains structured data analytics capabilities, providing ML for anomaly detection in time series data.  

    The post Elastic’s Search AI impacts employee experience, overall efficiency appeared first on SD Times.

    Source: Read More 

    Hostinger
    news
    Facebook Twitter Reddit Email Copy Link
    Previous ArticleMastering Software Package Management with Yum and DNF on CentOS and RHEL
    Next Article Symbiotic Security updates its IDE extension to give developers better insights into insecure code as it is written

    Related Posts

    Tech & Work

    The Case For Minimal WordPress Setups: A Contrarian View On Theme Frameworks

    June 4, 2025
    Tech & Work

    How To Fix Largest Contentful Paint Issues With Subpart Analysis

    June 4, 2025
    Leave A Reply Cancel Reply

    Continue Reading

    Stanford Researchers Propose ‘POSR’: A Unique AI Framework for Analyzing Educational Conversations Using Joint Segmentation and Retrieval

    Development

    STALKER 2’s new Patch 1.3 update has arrived with 1,200+ notes, but its biggest problem still isn’t fixed

    News & Updates

    Get 4 free iPhone 16 Pro phones from T-Mobile with this holiday deal

    Development

    lscoltui – change the colors of ls

    Development
    Hostinger

    Highlights

    Six memos for the future of digital creation

    January 10, 2025

    We turned six big ideas percolating around the Figma office—written from the perspective of devs,…

    This is the most underrated (and cheap) accessory EVERY PC gaming handheld owner needs to buy, whether you’re Steam Deck, ASUS ROG Ally, or Lenovo Legion Go — and it’s even cheaper with this Cyber Monday deal

    December 1, 2024

    Insurance 4.0: The Intelligent Automation Blueprint for Industry Transformation

    February 17, 2025

    Stealthier GodFather Malware Uses Native Code to Target 500 Banking and Crypto Apps

    November 7, 2024
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.