{"id":31122,"date":"2023-08-16T13:06:17","date_gmt":"2023-08-16T11:06:17","guid":{"rendered":"https:\/\/dedicalo-neu.leineglueck-demo.de\/?p=31122"},"modified":"2024-03-08T13:39:54","modified_gmt":"2024-03-08T12:39:54","slug":"decidalo-insights-about-llms-and-chatbots","status":"publish","type":"post","link":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/","title":{"rendered":"dec\u00eddalo Insights: About LLMs and chatbots"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column][vc_column_text]Due <span data-contrast=\"auto\">to recent advances in Large Language Models (LLMs), such as ChatGPT, it has become much easier today to develop intelligent chatbots that can access <\/span><span data-contrast=\"auto\">external <\/span><span data-contrast=\"auto\">data<\/span><span data-contrast=\"auto\"> sources<\/span><span data-contrast=\"auto\">. However, several challenges arise. First, the knowledge of LLMs is static, which means that new knowledge that emerges after the LLM is trained is unknown to the LLM (for example, ChatGPT<\/span><span data-contrast=\"auto\"> has a<\/span><span data-contrast=\"auto\"> knowledge <\/span><span data-contrast=\"auto\">cutoff<\/span> <span data-contrast=\"auto\">from<\/span><span data-contrast=\"auto\"> September 2021). Second, the context size of LLMs is limited, which means that it is not possible to provide all available data simultaneously. The context size is the number of tokens that the LLM can process (for example, in ChatGPT this is a maximum of 4096 tokens). One token corresponds to approximately four characters.<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<p><span data-contrast=\"auto\">To address these challenges, we use the <span class=\"ui-provider ed bby bum bun buo bup buq bur bus but buu buv buw bux buy buz bva bvb bvc bvd bve bvf bvg bvh bvi bvj bvk bvl bvm bvn bvo bvp bvq bvr bvs\" dir=\"ltr\">Retrieval-Augmented Generation Pattern<\/span> for our <a href=\"https:\/\/www.data-assessment.com\/en\/chatbot\/\">dec\u00eddalo chatbot<\/a>. This involves first searching for those documents that are semantically similar to the question posed, and the LLM then uses this information to generate an answer. In this way, the LLM can answer questions about external data sources.<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<p><span data-contrast=\"auto\">An overview of the pattern is provided by the following illustration:<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span>[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_single_image image=&#8221;26411&#8243; img_size=&#8221;large&#8221;][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text]<\/p>\n<h4>Preparation for semantic search<span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/h4>\n<p><span data-contrast=\"auto\">In order to take the context of the documents into account, we use so-called embeddings. These are functions that map text to numeric vectors. For example, the sentence &#8220;the quick brown fox jumps over the lazy dog&#8221; is transformed into the 1536-dimensional vector (0.0053, 0.0049,&#8230;). Semantically similar texts are placed close to each other in this embedding, while semantically dissimilar texts are placed far apart. Similar to LLMs, embeddings are trained on large datasets. However, like LLMs, embeddings have a limited context size, so larger documents must be split into multiple pieces of text.<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<p><span data-contrast=\"auto\">These embeddings are now stored in a vector database.<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<p><span data-contrast=\"auto\">In the case of our <a href=\"https:\/\/www.data-assessment.com\/en\/chatbot\/\">dec\u00eddalo chatbot<\/a>, the data from the profiles is stored section by section in the vector database.\u00a0 In the process, projects are also divided among several vectors.<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<h4><span data-contrast=\"auto\">Semantic search<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/h4>\n<p><span data-contrast=\"auto\">Now, when the user makes a search query, it is also transformed with the same embedding and compared with the document vectors from the vector database. To determine the similarity between two vectors, the cosine similarity is used. This is the cosine of the angle between the two vectors. For normalized vectors, Euclidean distance can be used equivalently. Considering the cosine similarity, the k closest documents are returned. Here, k is the number of documents to consider and is chosen depending on the use case and the length of the documents, since we have to consider the limited context size of the LLMs.<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<h4><span data-contrast=\"auto\">Generation of the answer<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/h4>\n<p><span data-contrast=\"auto\">From the user&#8217;s question and the documents found by the semantic search, a single prompt is created, which is passed to the LLM to generate the answer. Additional information can be added to the prompt, such as the output language or the style of the answer. An example of such a prompt is the following:<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<p><span data-contrast=\"auto\"><em>You are a chatbot that is supposed to respond to customers&#8217; questions.<\/em><\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<p><span data-contrast=\"auto\"><em>Relevant context: {context}<\/em><\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<p><span data-contrast=\"auto\"><em>Question: {question}<\/em><\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<p><span data-contrast=\"auto\"><em>Helpful answer:<\/em><\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<p><span data-contrast=\"auto\">The context and question variables are then replaced with the documents found and the user&#8217;s question, respectively.<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<h4><span data-contrast=\"auto\">Multitool Chatbot<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/h4>\n<p><span data-contrast=\"auto\">Similarly, we can provide various tools and APIs to the chatbot. For this, descriptions are provided for the tools and APIs as to when they should be used. The chatbot then decides, based on the user input, which tool is appropriate and deploys it according to the instructions in the input.<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<p><span data-contrast=\"auto\">In <a href=\"https:\/\/www.data-assessment.com\/en\/free\/\">our application<\/a>, we use an optimization of semantic search, which we call hybrid search. This method combines the advantages of semantic search with the advantages of keyword based search.<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<p><span data-contrast=\"auto\">Finally, we present an example that illustrates the impressive power of semantic search. Let&#8217;s assume you are searching for a skill such as &#8220;Large Language Models&#8221;. A conventional search algorithm would not return any results because this skill is so new that no one will have noted it in their profile yet. Semantic search, on the other hand, uses the context of the question and searches for similar skills to still give you a meaningful answer.<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span><\/p>\n<p><span data-contrast=\"auto\">User: <em>Who knows about large language models?<\/em><\/span><em>\u00a0<\/em><\/p>\n<p><span data-contrast=\"auto\">Chatbot: <em>I can&#8217;t say exactly who is familiar with Large Language Models, as the information provided mainly mentions Natural Language Processing (NLP) projects and skills. Erika Musterfrau and Max Mustermann have experience in NLP, but it is unclear if they have also worked specifically with Large Language Models.<\/em><\/span><em>\u00a0<\/em><\/p>\n<p><span data-contrast=\"auto\">In addition, the chatbot easily handles challenging queries such as &#8220;I need an experienced project manager who knows data analytics and Scrum&#8221; or &#8220;I need a balanced team for a project in cyber security in the energy industry.&#8221;<\/span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\">\u00a0<\/span>[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text]To see the related blog article about our dec\u00eddalo chatbot including its video, click <a href=\"https:\/\/www.data-assessment.com\/en\/chatbot\/\">here<\/a>.<\/p>\n<p>If you have any further questions feel free to contact us.[\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column][vc_column_text]Due to recent advances in Large Language Models (LLMs), such as ChatGPT, it has become much easier today to develop intelligent chatbots that can access external data sources. However, several challenges arise. First, the knowledge of LLMs is static, which means that new knowledge that emerges after the LLM is trained is unknown to the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":30486,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":"","_links_to":"","_links_to_target":""},"categories":[1],"tags":[],"class_list":["post-31122","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-unkategorisiert"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>dec\u00eddalo Insights: About LLMs and chatbots - decidalo<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"dec\u00eddalo Insights: About LLMs and chatbots - decidalo\" \/>\n<meta property=\"og:description\" content=\"[vc_row][vc_column][vc_column_text]Due to recent advances in Large Language Models (LLMs), such as ChatGPT, it has become much easier today to develop intelligent chatbots that can access external data sources. However, several challenges arise. First, the knowledge of LLMs is static, which means that new knowledge that emerges after the LLM is trained is unknown to the [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/\" \/>\n<meta property=\"og:site_name\" content=\"decidalo\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-16T11:06:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-08T12:39:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dedicalo-neu.leineglueck-demo.de\/wp-content\/uploads\/2023\/08\/decidalo-Insights3-1024x576.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"576\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/llms-and-chatbots\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/llms-and-chatbots\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/#\\\/schema\\\/person\\\/d71670e50a6bc61cc0e83c51145fdf51\"},\"headline\":\"dec\u00eddalo Insights: About LLMs and chatbots\",\"datePublished\":\"2023-08-16T11:06:17+00:00\",\"dateModified\":\"2024-03-08T12:39:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/llms-and-chatbots\\\/\"},\"wordCount\":864,\"publisher\":{\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/llms-and-chatbots\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/decidalo-Insights3.png\",\"articleSection\":[\"General\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/llms-and-chatbots\\\/\",\"url\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/llms-and-chatbots\\\/\",\"name\":\"dec\u00eddalo Insights: About LLMs and chatbots - decidalo\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/llms-and-chatbots\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/llms-and-chatbots\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/decidalo-Insights3.png\",\"datePublished\":\"2023-08-16T11:06:17+00:00\",\"dateModified\":\"2024-03-08T12:39:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/llms-and-chatbots\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/llms-and-chatbots\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/llms-and-chatbots\\\/#primaryimage\",\"url\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/decidalo-Insights3.png\",\"contentUrl\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/decidalo-Insights3.png\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/llms-and-chatbots\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.dedicalo.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"dec\u00eddalo Insights: About LLMs and chatbots\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/\",\"name\":\"decidalo\",\"description\":\"by Data Assessment Solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/#organization\",\"name\":\"decidalo\",\"url\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/decidalo-by-das.png\",\"contentUrl\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/decidalo-by-das.png\",\"width\":800,\"height\":165,\"caption\":\"decidalo\"},\"image\":{\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/#\\\/schema\\\/person\\\/d71670e50a6bc61cc0e83c51145fdf51\",\"name\":\"admin\",\"sameAs\":[\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\"],\"url\":\"https:\\\/\\\/dedicalo-neu.leineglueck-demo.de\\\/en\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"dec\u00eddalo Insights: About LLMs and chatbots - decidalo","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/","og_locale":"en_US","og_type":"article","og_title":"dec\u00eddalo Insights: About LLMs and chatbots - decidalo","og_description":"[vc_row][vc_column][vc_column_text]Due to recent advances in Large Language Models (LLMs), such as ChatGPT, it has become much easier today to develop intelligent chatbots that can access external data sources. However, several challenges arise. First, the knowledge of LLMs is static, which means that new knowledge that emerges after the LLM is trained is unknown to the [&hellip;]","og_url":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/","og_site_name":"decidalo","article_published_time":"2023-08-16T11:06:17+00:00","article_modified_time":"2024-03-08T12:39:54+00:00","og_image":[{"width":1024,"height":576,"url":"https:\/\/dedicalo-neu.leineglueck-demo.de\/wp-content\/uploads\/2023\/08\/decidalo-Insights3-1024x576.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/#article","isPartOf":{"@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/"},"author":{"name":"admin","@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/#\/schema\/person\/d71670e50a6bc61cc0e83c51145fdf51"},"headline":"dec\u00eddalo Insights: About LLMs and chatbots","datePublished":"2023-08-16T11:06:17+00:00","dateModified":"2024-03-08T12:39:54+00:00","mainEntityOfPage":{"@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/"},"wordCount":864,"publisher":{"@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/#organization"},"image":{"@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/#primaryimage"},"thumbnailUrl":"https:\/\/dedicalo-neu.leineglueck-demo.de\/wp-content\/uploads\/2023\/08\/decidalo-Insights3.png","articleSection":["General"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/","url":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/","name":"dec\u00eddalo Insights: About LLMs and chatbots - decidalo","isPartOf":{"@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/#primaryimage"},"image":{"@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/#primaryimage"},"thumbnailUrl":"https:\/\/dedicalo-neu.leineglueck-demo.de\/wp-content\/uploads\/2023\/08\/decidalo-Insights3.png","datePublished":"2023-08-16T11:06:17+00:00","dateModified":"2024-03-08T12:39:54+00:00","breadcrumb":{"@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/#primaryimage","url":"https:\/\/dedicalo-neu.leineglueck-demo.de\/wp-content\/uploads\/2023\/08\/decidalo-Insights3.png","contentUrl":"https:\/\/dedicalo-neu.leineglueck-demo.de\/wp-content\/uploads\/2023\/08\/decidalo-Insights3.png","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/llms-and-chatbots\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.dedicalo.com\/en\/"},{"@type":"ListItem","position":2,"name":"dec\u00eddalo Insights: About LLMs and chatbots"}]},{"@type":"WebSite","@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/#website","url":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/","name":"decidalo","description":"by Data Assessment Solutions","publisher":{"@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/#organization","name":"decidalo","url":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/#\/schema\/logo\/image\/","url":"https:\/\/dedicalo-neu.leineglueck-demo.de\/wp-content\/uploads\/2024\/01\/decidalo-by-das.png","contentUrl":"https:\/\/dedicalo-neu.leineglueck-demo.de\/wp-content\/uploads\/2024\/01\/decidalo-by-das.png","width":800,"height":165,"caption":"decidalo"},"image":{"@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/#\/schema\/person\/d71670e50a6bc61cc0e83c51145fdf51","name":"admin","sameAs":["https:\/\/dedicalo-neu.leineglueck-demo.de"],"url":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/wp-json\/wp\/v2\/posts\/31122","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/wp-json\/wp\/v2\/comments?post=31122"}],"version-history":[{"count":2,"href":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/wp-json\/wp\/v2\/posts\/31122\/revisions"}],"predecessor-version":[{"id":32713,"href":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/wp-json\/wp\/v2\/posts\/31122\/revisions\/32713"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/wp-json\/wp\/v2\/media\/30486"}],"wp:attachment":[{"href":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/wp-json\/wp\/v2\/media?parent=31122"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/wp-json\/wp\/v2\/categories?post=31122"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dedicalo-neu.leineglueck-demo.de\/en\/wp-json\/wp\/v2\/tags?post=31122"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}