{"id":11890,"date":"2023-01-31T11:00:06","date_gmt":"2023-01-31T11:00:06","guid":{"rendered":"https:\/\/ee.yelkdev.site\/?p=11890"},"modified":"2024-12-10T00:24:49","modified_gmt":"2024-12-10T00:24:49","slug":"adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business","status":"publish","type":"post","link":"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/","title":{"rendered":"Adventures in how to use ChatGPT &#8211; can it answer questions about my business?"},"content":{"rendered":"<p>Pretty much everyone by now has heard of &#8211; and\u00a0 probably played with &#8211; ChatGPT (If you haven&#8217;t,\u00a0 go to <a href=\"https:\/\/openai.com\/blog\/chatgpt\/\">https:\/\/openai.com\/blog\/chatgpt\/<\/a> to see what all the fuss is about.); it\u2019s a chatbot developed by OpenAI based on an extremely large natural language processing model, which automatically answers questions based on written prompts.<\/p>\n<p>It\u2019s user friendly, putting AI in the hands of the masses. There are loads of examples of people applying ChatGPT to their challenges and getting some great results. It can tell stories, write code, or summarise complex topics. I wanted to explore how to use ChatGTP to see if it would help with the sorts of technical business problems that we are often asked to help with.<\/p>\n<p>One obvious area to exploit is its ability to answer questions. With no special training I asked the online ChatGPT site &#8220;What is Continuous Delivery?&#8221;<\/p>\n<img decoding=\"async\" src=\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPTScreenshot-01-1.png\" alt=\"\" width=\"838\" height=\"446\" \/>\n<p>That&#8217;s a pretty good description and, unlike traditional chatbots, it has not been made from curated answers. Instead, it uses the GPT-3 model which was trained on a large corpus of documents from CommonCrawl, WebText, Wikipedia articles, and a large corpus of books. GPT-3 is a generative model &#8211; if you give it some starter text it will complete it based on what it has encountered in its training corpus. Because the training corpus contains lots of facts and descriptions, ChatGPT is able to answer questions. (Health warning &#8211; because the corpus contains information that is not always correct, and because ChatGPT generates responses from different texts, in many cases the answers sound convincing but might not be 100% accurate.)<\/p>\n<p>This is great for questions about generally known concepts and ideas. But what about a specific company. Can we use ChatGPT to tell us about what an individual company does?<\/p>\n<ul>\n<li aria-level=\"1\">Can it immediately answer questions about a company, or does it need to be provided with more information? Can customers and clients use ChatGPT to find out more about an organisation?<\/li>\n<li aria-level=\"1\">If we give it specific texts about a company can it accurately answer questions about that company?<\/li>\n<\/ul>\n<p>Let&#8217;s look at the first question. We\u2019ll pretend I&#8217;m a potential customer who wants to find out about Equal Experts.<\/p>\n<img decoding=\"async\" src=\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPTScreenshot-02-1.png\" alt=\"\" width=\"758\" height=\"202\" \/>\n<p>That&#8217;s disappointing. Let&#8217;s try rephrasing:<\/p>\n<img decoding=\"async\" src=\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPTScreenshot-03-1.png\" alt=\"\" width=\"758\" height=\"262\" \/>\n<p>It&#8217;s still not the answer I was hoping for. Although I do now know that I need a diverse team with a range of skills!<\/p>\n<p>Clearly ChatGPT is great for general questions but won&#8217;t help potential customers find out about Equal Experts (or most other businesses.) So maybe I can improve things. ChatGPT has the ability to &#8216;fine-tune&#8217; models. You can provide additional data &#8211; extra documents which contain the information you want &#8211; and then retrain the model so it also uses this new information.<\/p>\n<p>So, can we fine-tune GPT to create a model which knows about Equal Experts? I found some available, good quality\u00a0 text on Equal Experts &#8211; <a href=\"https:\/\/www.equalexperts.com\/case-study\/\">the case-studies on our website<\/a> &#8211; and used it as training material.<\/p>\n<p>I wrote a small number of sample questions and answers for individual case-studies and submitted them for training. I used a simplified approach to the one given by <a href=\"https:\/\/github.com\/openai\/openai-cookbook\/blob\/main\/examples\/fine-tuned_qa\/olympics-3-train-qa.ipynb\">OpenAI<\/a>. (For those interested I didn&#8217;t use a discriminator because of the low training data volumes.) I then asked some questions for which I knew the answers were in the training data, and displayed the top 5 answers from our new model via the ChatGPT API:<\/p>\n<img decoding=\"async\" src=\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPTScreenshot-04-1.png\" alt=\"\" width=\"700\" height=\"241\" \/>\n<p>I think we can agree that these are not great results. I should caveat with the fact that creating training examples takes a lot of time. (It is often the biggest activity in an AI or machine learning initiative.) The recommendation is to use 100s of training examples for ChatGPT and I only created 12 training prompts. So results could well be improved with a bigger training set. On the other hand, one of the big selling points of GPT-based models is that they facilitate one-shot or few-shot learning (only needing a few examples to train the model on a new concept &#8211; in this case Equal Experts). So I&#8217;m disappointed that training has made no difference and that the answers are poor compared to the web interface.<\/p>\n<p>In fact the results are also affected by the training procedure. The training approach to using ChatGPT gives a context first (some text), then a question, then the answer. If I give context with the question (e.g. some relevant\u00a0 text such as an EE case study) and then ask a question, ChatGPT responds much better.<\/p>\n<img decoding=\"async\" src=\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPTScreenshot-05-1.png\" alt=\"\" width=\"783\" height=\"365\" \/>\n<p>These are much better answers (although far from perfect), but I have had to supply relevant text in the first place, which rather defeats the object of the exercise.<\/p>\n<p>So, could I get ChatGPT to identify the relevant text to use as part of the prompt? You can, in fact, use ChatGPT to generate embeddings &#8211; a representation of the document as a mathematical vector &#8211; which can be used to find similar documents. So this suggests a slightly different approach:<\/p>\n<ul>\n<li aria-level=\"1\">For each case-study &#8211; generate embeddings<\/li>\n<li aria-level=\"1\">For a given question &#8211; find the case-studies which are most similar to the question (using the embeddings)<\/li>\n<li aria-level=\"1\">Use the similar case-studies as part of the prompt<\/li>\n<\/ul>\n<p>This gives some pretty good responses; this image shows the top 5 responses for some questions about our case studies:<\/p>\n<img decoding=\"async\" src=\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPTScreenshot-06-1.png\" alt=\"\" width=\"788\" height=\"582\" \/>\n<p>These look like pretty relevant responses but they\u2019re a bit short, and they definitely don&#8217;t contain all the available information in the case-studies. It turned out that the default response size is 16 tokens (sort of related to word count). When I set it to 200 I get these results for what is a data health check:<\/p>\n<img decoding=\"async\" src=\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPTScreenshot-07-1.png\" alt=\"\" width=\"754\" height=\"410\" \/>\n<p>Well that\u2019s a much better summary, and it gave good results for other queries also:<\/p>\n<img decoding=\"async\" src=\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPTScreenshot-08-1.png\" alt=\"\" width=\"766\" height=\"409\" \/>\n<p>Throughout this activity, I found a number of other notable points:<\/p>\n<ul>\n<li aria-level=\"1\">Using the right model in ChatGPT is really important. I ended up using the latest model, which is tuned for\u00a0 instruction\/chatgpt type tasks (text-davinci-003), and got good results for most of the work. Base models (e.g. davinci) just didn&#8217;t seem to cut it. This matters when you are thinking of fine-tuning a model because you cannot use the specialised models as the basis of a new one.<\/li>\n<\/ul>\n<img decoding=\"async\" src=\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPTScreenshot-09-1.png\" alt=\"\" width=\"772\" height=\"108\" \/>\n<ul>\n<li aria-level=\"1\">The davinci series models used a lot of human feedback as part of their training, so they give the best results compared to simpler models. (Although I accept the need to experiment more.)<\/li>\n<li aria-level=\"1\">Quite often the model would become unavailable and I would get the following message. If you want to use the API in a live service, be aware that this can happen quite regularly.<\/li>\n<\/ul>\n<img decoding=\"async\" src=\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPTScreenshot-10-1.png\" alt=\"\" width=\"745\" height=\"86\" \/>\n<ul>\n<li aria-level=\"1\">Each question cost about 5-6 cents.<\/li>\n<\/ul>\n<p>I have noticed a wide range of reactions from people using ChatGPT, from &#8216;Wow- this will change the world!&#8217; to &#8216;It&#8217;s all nonsense &#8211; it&#8217;s not intelligent at all.&#8217; &#8211; even amongst people with AI backgrounds. Having played with it, I think there are lots of tasks it can help with; organisations that can figure out where it will help them and how to get the most out of it will really benefit. Watching how things play out with Chat GPT and its successors (hello GPT-4) is going to be a fascinating ride.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What\u2019s your take on ChatGPT, the newest AI chatbot everyone is talking about? Here\u2019s what happened when we used ChatGPT to answer questions about Equal Experts, and how we fine-tuned the results.<\/p>\n","protected":false},"author":133,"featured_media":11893,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","inline_featured_image":false,"footnotes":""},"categories":[412],"tags":[99,338,336],"location":[397],"class_list":["post-11890","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai","tag-ai","tag-chatgpt","tag-equalexperts"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v25.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Adventures in how to use ChatGPT - can it answer questions about my business? | Equal Experts<\/title>\n<meta name=\"description\" content=\"We ran some experiments on how to use ChatGPT. Here\u2019s what we found when we asked the newest AI chatbot to answer questions about our business, and how we fine-tuned its outputs.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Adventures in how to use ChatGPT - can it answer questions about my business?\" \/>\n<meta property=\"og:description\" content=\"What\u2019s your take on ChatGPT, the newest AI chatbot everyone is talking about? Here\u2019s what happened when we used ChatGPT to answer questions about Equal Experts, and how we fine-tuned the results.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/\" \/>\n<meta property=\"og:site_name\" content=\"Equal Experts\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-31T11:00:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-10T00:24:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPT1_FB.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Simon Case\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Adventures in how to use ChatGPT - can it answer questions about my business?\" \/>\n<meta name=\"twitter:description\" content=\"What\u2019s your take on ChatGPT, the newest AI chatbot everyone is talking about? Here\u2019s what happened when we used ChatGPT to answer questions about Equal Experts, and how we fine-tuned the results.\" \/>\n<meta name=\"twitter:creator\" content=\"@EqualExperts\" \/>\n<meta name=\"twitter:site\" content=\"@EqualExperts\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Simon Case\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/\"},\"author\":{\"name\":\"Simon Case\",\"@id\":\"https:\/\/www.equalexperts.com\/#\/schema\/person\/461daa125fcd274669eb26dfbef20369\"},\"headline\":\"Adventures in how to use ChatGPT &#8211; can it answer questions about my business?\",\"datePublished\":\"2023-01-31T11:00:06+00:00\",\"dateModified\":\"2024-12-10T00:24:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/\"},\"wordCount\":1230,\"publisher\":{\"@id\":\"https:\/\/www.equalexperts.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPT1_Lead.png\",\"keywords\":[\"AI\",\"chatGPT\",\"equalexperts\"],\"articleSection\":[\"AI\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/\",\"url\":\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/\",\"name\":\"Adventures in how to use ChatGPT - can it answer questions about my business? | Equal Experts\",\"isPartOf\":{\"@id\":\"https:\/\/www.equalexperts.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPT1_Lead.png\",\"datePublished\":\"2023-01-31T11:00:06+00:00\",\"dateModified\":\"2024-12-10T00:24:49+00:00\",\"description\":\"We ran some experiments on how to use ChatGPT. Here\u2019s what we found when we asked the newest AI chatbot to answer questions about our business, and how we fine-tuned its outputs.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#primaryimage\",\"url\":\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPT1_Lead.png\",\"contentUrl\":\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPT1_Lead.png\",\"width\":1200,\"height\":514},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.equalexperts.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Adventures in how to use ChatGPT &#8211; can it answer questions about my business?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.equalexperts.com\/#website\",\"url\":\"https:\/\/www.equalexperts.com\/\",\"name\":\"Equal Experts\",\"description\":\"Making Software. Better.\",\"publisher\":{\"@id\":\"https:\/\/www.equalexperts.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.equalexperts.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.equalexperts.com\/#organization\",\"name\":\"Equal Experts\",\"url\":\"https:\/\/www.equalexperts.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.equalexperts.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2018\/08\/Equal_Experts_Logo_CMYK_Colour.jpg\",\"contentUrl\":\"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2018\/08\/Equal_Experts_Logo_CMYK_Colour.jpg\",\"width\":719,\"height\":340,\"caption\":\"Equal Experts\"},\"image\":{\"@id\":\"https:\/\/www.equalexperts.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/EqualExperts\",\"https:\/\/www.linkedin.com\/company\/equal-experts\/?viewAsMember=true\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.equalexperts.com\/#\/schema\/person\/461daa125fcd274669eb26dfbef20369\",\"name\":\"Simon Case\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.equalexperts.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e197e1e0b9cc0e8781990d364393d74c819c76bdd8ca064ca08a79c4a897e0e3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e197e1e0b9cc0e8781990d364393d74c819c76bdd8ca064ca08a79c4a897e0e3?s=96&d=mm&r=g\",\"caption\":\"Simon Case\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Adventures in how to use ChatGPT - can it answer questions about my business? | Equal Experts","description":"We ran some experiments on how to use ChatGPT. Here\u2019s what we found when we asked the newest AI chatbot to answer questions about our business, and how we fine-tuned its outputs.","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:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/","og_locale":"en_GB","og_type":"article","og_title":"Adventures in how to use ChatGPT - can it answer questions about my business?","og_description":"What\u2019s your take on ChatGPT, the newest AI chatbot everyone is talking about? Here\u2019s what happened when we used ChatGPT to answer questions about Equal Experts, and how we fine-tuned the results.","og_url":"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/","og_site_name":"Equal Experts","article_published_time":"2023-01-31T11:00:06+00:00","article_modified_time":"2024-12-10T00:24:49+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPT1_FB.png","type":"image\/png"}],"author":"Simon Case","twitter_card":"summary_large_image","twitter_title":"Adventures in how to use ChatGPT - can it answer questions about my business?","twitter_description":"What\u2019s your take on ChatGPT, the newest AI chatbot everyone is talking about? Here\u2019s what happened when we used ChatGPT to answer questions about Equal Experts, and how we fine-tuned the results.","twitter_creator":"@EqualExperts","twitter_site":"@EqualExperts","twitter_misc":{"Written by":"Simon Case","Estimated reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#article","isPartOf":{"@id":"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/"},"author":{"name":"Simon Case","@id":"https:\/\/www.equalexperts.com\/#\/schema\/person\/461daa125fcd274669eb26dfbef20369"},"headline":"Adventures in how to use ChatGPT &#8211; can it answer questions about my business?","datePublished":"2023-01-31T11:00:06+00:00","dateModified":"2024-12-10T00:24:49+00:00","mainEntityOfPage":{"@id":"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/"},"wordCount":1230,"publisher":{"@id":"https:\/\/www.equalexperts.com\/#organization"},"image":{"@id":"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#primaryimage"},"thumbnailUrl":"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPT1_Lead.png","keywords":["AI","chatGPT","equalexperts"],"articleSection":["AI"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/","url":"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/","name":"Adventures in how to use ChatGPT - can it answer questions about my business? | Equal Experts","isPartOf":{"@id":"https:\/\/www.equalexperts.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#primaryimage"},"image":{"@id":"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#primaryimage"},"thumbnailUrl":"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPT1_Lead.png","datePublished":"2023-01-31T11:00:06+00:00","dateModified":"2024-12-10T00:24:49+00:00","description":"We ran some experiments on how to use ChatGPT. Here\u2019s what we found when we asked the newest AI chatbot to answer questions about our business, and how we fine-tuned its outputs.","breadcrumb":{"@id":"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#primaryimage","url":"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPT1_Lead.png","contentUrl":"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2023\/01\/ChatGPT1_Lead.png","width":1200,"height":514},{"@type":"BreadcrumbList","@id":"https:\/\/www.equalexperts.com\/blog\/ai\/adventures-in-how-to-use-chatgpt-can-it-answer-questions-about-my-business\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.equalexperts.com\/"},{"@type":"ListItem","position":2,"name":"Adventures in how to use ChatGPT &#8211; can it answer questions about my business?"}]},{"@type":"WebSite","@id":"https:\/\/www.equalexperts.com\/#website","url":"https:\/\/www.equalexperts.com\/","name":"Equal Experts","description":"Making Software. Better.","publisher":{"@id":"https:\/\/www.equalexperts.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.equalexperts.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/www.equalexperts.com\/#organization","name":"Equal Experts","url":"https:\/\/www.equalexperts.com\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.equalexperts.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2018\/08\/Equal_Experts_Logo_CMYK_Colour.jpg","contentUrl":"https:\/\/www.equalexperts.com\/wp-content\/uploads\/2018\/08\/Equal_Experts_Logo_CMYK_Colour.jpg","width":719,"height":340,"caption":"Equal Experts"},"image":{"@id":"https:\/\/www.equalexperts.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/EqualExperts","https:\/\/www.linkedin.com\/company\/equal-experts\/?viewAsMember=true"]},{"@type":"Person","@id":"https:\/\/www.equalexperts.com\/#\/schema\/person\/461daa125fcd274669eb26dfbef20369","name":"Simon Case","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.equalexperts.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e197e1e0b9cc0e8781990d364393d74c819c76bdd8ca064ca08a79c4a897e0e3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e197e1e0b9cc0e8781990d364393d74c819c76bdd8ca064ca08a79c4a897e0e3?s=96&d=mm&r=g","caption":"Simon Case"}}]}},"_links":{"self":[{"href":"https:\/\/www.equalexperts.com\/wp-json\/wp\/v2\/posts\/11890","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.equalexperts.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.equalexperts.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.equalexperts.com\/wp-json\/wp\/v2\/users\/133"}],"replies":[{"embeddable":true,"href":"https:\/\/www.equalexperts.com\/wp-json\/wp\/v2\/comments?post=11890"}],"version-history":[{"count":0,"href":"https:\/\/www.equalexperts.com\/wp-json\/wp\/v2\/posts\/11890\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.equalexperts.com\/wp-json\/wp\/v2\/media\/11893"}],"wp:attachment":[{"href":"https:\/\/www.equalexperts.com\/wp-json\/wp\/v2\/media?parent=11890"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.equalexperts.com\/wp-json\/wp\/v2\/categories?post=11890"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.equalexperts.com\/wp-json\/wp\/v2\/tags?post=11890"},{"taxonomy":"location","embeddable":true,"href":"https:\/\/www.equalexperts.com\/wp-json\/wp\/v2\/location?post=11890"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}