{"id":918,"date":"2025-06-23T07:53:08","date_gmt":"2025-06-23T07:53:08","guid":{"rendered":"https:\/\/eolais.cloud\/?p=918"},"modified":"2025-06-23T07:53:39","modified_gmt":"2025-06-23T07:53:39","slug":"which-ai-are-we-talking-about","status":"publish","type":"post","link":"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/","title":{"rendered":"Which AI are we talking about?"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Choose an AI Type<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Type<\/th><th>Description<\/th><th>Example<\/th><\/tr><\/thead><tbody><tr><td><strong>Rule-Based AI<\/strong><\/td><td>Follows predefined if-else rules<\/td><td>Chatbot, Decision Tree<\/td><\/tr><tr><td><strong>Machine Learning (ML) AI<\/strong><\/td><td>Learns from data<\/td><td>Image classifier, Spam detector<\/td><\/tr><tr><td><strong>Chatbot (NLP)<\/strong><\/td><td>Uses natural language processing<\/td><td>Customer support bot<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>1. Build a Simple Rule-Based AI (No ML)<\/strong><\/h2>\n\n\n\n<p>A basic AI that responds based on rules (like a chatbot).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Example: A Weather Advice Bot<\/strong><\/h3>\n\n\n\n<p>python<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">def weather_advisor(weather):\n    weather = weather.lower()\n    if weather == \"sunny\":\n        return \"Wear sunscreen and sunglasses!\"\n    elif weather == \"rainy\":\n        return \"Take an umbrella and a raincoat.\"\n    elif weather == \"cold\":\n        return \"Wear a warm jacket and gloves.\"\n    else:\n        return \"I'm not sure, check the weather again.\"\n\n# Test the AI\nuser_input = input(\"What's the weather today? (sunny\/rainy\/cold): \")\nprint(weather_advisor(user_input))<\/pre>\n\n\n\n<p><strong>Output:<\/strong><\/p>\n\n\n\n<p>text<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">What's the weather today? (sunny\/rainy\/cold): sunny  \nWear sunscreen and sunglasses!<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>2. Build a Simple ML-Based AI (Using Scikit-Learn)<\/strong><\/h2>\n\n\n\n<p>A&nbsp;<strong>machine learning model<\/strong>&nbsp;that predicts outcomes from data.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Example: A Spam Detector<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step 1: Install Required Libraries<\/strong><\/h4>\n\n\n\n<p>bash<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">pip install scikit-learn pandas numpy<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Step 2: Train a Model<\/strong><\/h4>\n\n\n\n<p>python<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">import pandas as pd\nfrom sklearn.feature_extraction.text import CountVectorizer\nfrom sklearn.naive_bayes import MultinomialNB\n\n# Sample dataset (message, label: 0=Not Spam, 1=Spam)\ndata = {\n    \"message\": [\n        \"Free prize! Click now!\", \n        \"Meeting at 3 PM\", \n        \"Win a million dollars!\", \n        \"Project update\"\n    ],\n    \"label\": [1, 0, 1, 0]\n}\n\ndf = pd.DataFrame(data)\n\n# Convert text to numbers (Bag of Words)\nvectorizer = CountVectorizer()\nX = vectorizer.fit_transform(df[\"message\"])\n\n# Train a Naive Bayes classifier\nmodel = MultinomialNB()\nmodel.fit(X, df[\"label\"])\n\n# Test the AI\ntest_message = [\"Free vacation offer!\"]\ntest_X = vectorizer.transform(test_message)\nprediction = model.predict(test_X)\n\nprint(\"Spam\" if prediction[0] == 1 else \"Not Spam\")<\/pre>\n\n\n\n<p><strong>Output:<\/strong><\/p>\n\n\n\n<p>text<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Spam<\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>3. Build a Simple AI Chatbot (Using NLP)<\/strong><\/h2>\n\n\n\n<p>A&nbsp;<strong>chatbot<\/strong>&nbsp;that responds to user input (using&nbsp;<strong>NLTK<\/strong>&nbsp;or&nbsp;<strong>ChatterBot<\/strong>).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Example: A Basic Chatbot with ChatterBot<\/strong><\/h3>\n\n\n\n<p>bash<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">pip install chatterbot chatterbot_corpus<\/pre>\n\n\n\n<p>python<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">from chatterbot import ChatBot\nfrom chatterbot.trainers import ChatterBotCorpusTrainer\n\n# Create a chatbot\nchatbot = ChatBot(\"SimpleBot\")\n\n# Train it on English data\ntrainer = ChatterBotCorpusTrainer(chatbot)\ntrainer.train(\"chatterbot.corpus.english\")\n\n# Chat with the AI\nwhile True:\n    user_input = input(\"You: \")\n    if user_input.lower() == \"exit\":\n        break\n    response = chatbot.get_response(user_input)\n    print(\"Bot:\", response)<\/pre>\n\n\n\n<p><strong>Output:<\/strong><\/p>\n\n\n\n<p>text<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">You: Hello  \nBot: Hi there!  \nYou: How are you?  \nBot: I am doing well, thank you!  \nYou: exit  <\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>4. Next Steps<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Improve with more data<\/strong>\u00a0(for ML models).<\/li>\n\n\n\n<li><strong>Use deep learning<\/strong>\u00a0(TensorFlow\/PyTorch) for complex AI.<\/li>\n\n\n\n<li><strong>Deploy as a web app<\/strong>\u00a0(Flask, FastAPI).<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Choose an AI Type Type Description Example Rule-Based AI Follows predefined if-else rules Chatbot, Decision Tree Machine Learning (ML) AI Learns from data Image classifier, Spam detector Chatbot (NLP) Uses natural language processing Customer support bot 1. Build a Simple Rule-Based AI (No ML) A basic AI that responds based on rules (like a chatbot). [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":919,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ocean_post_layout":"","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"","ocean_second_sidebar":"","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"default","ocean_display_header":"default","ocean_header_style":"","ocean_center_header_left_menu":"","ocean_custom_header_template":"","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"","ocean_menu_typo_font_family":"","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"default","ocean_disable_heading":"default","ocean_post_title":"","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"","ocean_post_oembed":"","ocean_post_self_hosted_media":"","ocean_post_video_embed":"","ocean_link_format":"","ocean_link_format_target":"self","ocean_quote_format":"","ocean_quote_format_link":"post","ocean_gallery_link_images":"on","ocean_gallery_id":[],"footnotes":""},"categories":[20],"tags":[21,30],"class_list":["post-918","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai-machine-learning","tag-ai","tag-machine-learning","entry","has-media"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Which AI are we talking about? - Future Knowledge<\/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:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Which AI are we talking about? - Future Knowledge\" \/>\n<meta property=\"og:description\" content=\"Choose an AI Type Type Description Example Rule-Based AI Follows predefined if-else rules Chatbot, Decision Tree Machine Learning (ML) AI Learns from data Image classifier, Spam detector Chatbot (NLP) Uses natural language processing Customer support bot 1. Build a Simple Rule-Based AI (No ML) A basic AI that responds based on rules (like a chatbot). [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/\" \/>\n<meta property=\"og:site_name\" content=\"Future Knowledge\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-23T07:53:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-23T07:53:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/artificial-intelligence-2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1472\" \/>\n\t<meta property=\"og:image:height\" content=\"832\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/eolais.cloud\/#\/schema\/person\/33c4c6a8180d2be14d8a664a8addb9d1\"},\"headline\":\"Which AI are we talking about?\",\"datePublished\":\"2025-06-23T07:53:08+00:00\",\"dateModified\":\"2025-06-23T07:53:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/\"},\"wordCount\":159,\"publisher\":{\"@id\":\"https:\/\/eolais.cloud\/#organization\"},\"image\":{\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/artificial-intelligence-2.jpg\",\"keywords\":[\"AI\",\"Machine Learning\"],\"articleSection\":[\"AI &amp; Machine Learning\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/\",\"url\":\"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/\",\"name\":\"Which AI are we talking about? - Future Knowledge\",\"isPartOf\":{\"@id\":\"https:\/\/eolais.cloud\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/artificial-intelligence-2.jpg\",\"datePublished\":\"2025-06-23T07:53:08+00:00\",\"dateModified\":\"2025-06-23T07:53:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#primaryimage\",\"url\":\"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/artificial-intelligence-2.jpg\",\"contentUrl\":\"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/artificial-intelligence-2.jpg\",\"width\":1472,\"height\":832},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/eolais.cloud\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Which AI are we talking about?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/eolais.cloud\/#website\",\"url\":\"https:\/\/eolais.cloud\/\",\"name\":\"Future Knowledge\",\"description\":\"Future Knowledge\",\"publisher\":{\"@id\":\"https:\/\/eolais.cloud\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/eolais.cloud\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/eolais.cloud\/#organization\",\"name\":\"Future Knowledge\",\"url\":\"https:\/\/eolais.cloud\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eolais.cloud\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/Untitled-design.png\",\"contentUrl\":\"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/Untitled-design.png\",\"width\":1472,\"height\":832,\"caption\":\"Future Knowledge\"},\"image\":{\"@id\":\"https:\/\/eolais.cloud\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/eolais.cloud\/#\/schema\/person\/33c4c6a8180d2be14d8a664a8addb9d1\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eolais.cloud\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/87f974e7730934d5b3fc85bd20956cdb4b3182c2ecccfa67c47e7d9345fe48a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/87f974e7730934d5b3fc85bd20956cdb4b3182c2ecccfa67c47e7d9345fe48a4?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\/\/eolais.cloud\"],\"url\":\"https:\/\/eolais.cloud\/index.php\/author\/admin_idjqjwfo\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Which AI are we talking about? - Future Knowledge","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:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/","og_locale":"en_US","og_type":"article","og_title":"Which AI are we talking about? - Future Knowledge","og_description":"Choose an AI Type Type Description Example Rule-Based AI Follows predefined if-else rules Chatbot, Decision Tree Machine Learning (ML) AI Learns from data Image classifier, Spam detector Chatbot (NLP) Uses natural language processing Customer support bot 1. Build a Simple Rule-Based AI (No ML) A basic AI that responds based on rules (like a chatbot). [&hellip;]","og_url":"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/","og_site_name":"Future Knowledge","article_published_time":"2025-06-23T07:53:08+00:00","article_modified_time":"2025-06-23T07:53:39+00:00","og_image":[{"width":1472,"height":832,"url":"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/artificial-intelligence-2.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#article","isPartOf":{"@id":"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/"},"author":{"name":"admin","@id":"https:\/\/eolais.cloud\/#\/schema\/person\/33c4c6a8180d2be14d8a664a8addb9d1"},"headline":"Which AI are we talking about?","datePublished":"2025-06-23T07:53:08+00:00","dateModified":"2025-06-23T07:53:39+00:00","mainEntityOfPage":{"@id":"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/"},"wordCount":159,"publisher":{"@id":"https:\/\/eolais.cloud\/#organization"},"image":{"@id":"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#primaryimage"},"thumbnailUrl":"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/artificial-intelligence-2.jpg","keywords":["AI","Machine Learning"],"articleSection":["AI &amp; Machine Learning"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/","url":"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/","name":"Which AI are we talking about? - Future Knowledge","isPartOf":{"@id":"https:\/\/eolais.cloud\/#website"},"primaryImageOfPage":{"@id":"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#primaryimage"},"image":{"@id":"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#primaryimage"},"thumbnailUrl":"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/artificial-intelligence-2.jpg","datePublished":"2025-06-23T07:53:08+00:00","dateModified":"2025-06-23T07:53:39+00:00","breadcrumb":{"@id":"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#primaryimage","url":"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/artificial-intelligence-2.jpg","contentUrl":"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/artificial-intelligence-2.jpg","width":1472,"height":832},{"@type":"BreadcrumbList","@id":"https:\/\/eolais.cloud\/index.php\/2025\/06\/23\/which-ai-are-we-talking-about\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/eolais.cloud\/"},{"@type":"ListItem","position":2,"name":"Which AI are we talking about?"}]},{"@type":"WebSite","@id":"https:\/\/eolais.cloud\/#website","url":"https:\/\/eolais.cloud\/","name":"Future Knowledge","description":"Future Knowledge","publisher":{"@id":"https:\/\/eolais.cloud\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eolais.cloud\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/eolais.cloud\/#organization","name":"Future Knowledge","url":"https:\/\/eolais.cloud\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eolais.cloud\/#\/schema\/logo\/image\/","url":"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/Untitled-design.png","contentUrl":"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/Untitled-design.png","width":1472,"height":832,"caption":"Future Knowledge"},"image":{"@id":"https:\/\/eolais.cloud\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/eolais.cloud\/#\/schema\/person\/33c4c6a8180d2be14d8a664a8addb9d1","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eolais.cloud\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/87f974e7730934d5b3fc85bd20956cdb4b3182c2ecccfa67c47e7d9345fe48a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/87f974e7730934d5b3fc85bd20956cdb4b3182c2ecccfa67c47e7d9345fe48a4?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/eolais.cloud"],"url":"https:\/\/eolais.cloud\/index.php\/author\/admin_idjqjwfo\/"}]}},"jetpack_featured_media_url":"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/artificial-intelligence-2.jpg","_links":{"self":[{"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/posts\/918","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/comments?post=918"}],"version-history":[{"count":1,"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/posts\/918\/revisions"}],"predecessor-version":[{"id":920,"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/posts\/918\/revisions\/920"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/media\/919"}],"wp:attachment":[{"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/media?parent=918"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/categories?post=918"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/tags?post=918"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}