{"id":13020,"date":"2021-04-24T11:36:34","date_gmt":"2021-04-24T15:36:34","guid":{"rendered":"https:\/\/vernai.com\/?p=13020"},"modified":"2021-04-24T11:36:34","modified_gmt":"2021-04-24T15:36:34","slug":"howdy-from-the-tech-team","status":"publish","type":"post","link":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/","title":{"rendered":"Howdy from the Tech Team!"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-12749 alignright\" src=\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/04\/coding-computer-data-depth-of-field-577585-300x225.jpg\" alt=\"\" width=\"268\" height=\"201\" srcset=\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/04\/coding-computer-data-depth-of-field-577585-300x225.jpg 300w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/04\/coding-computer-data-depth-of-field-577585-600x450.jpg 600w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/04\/coding-computer-data-depth-of-field-577585-1024x767.jpg 1024w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/04\/coding-computer-data-depth-of-field-577585-768x575.jpg 768w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/04\/coding-computer-data-depth-of-field-577585.jpg 1280w\" sizes=\"auto, (max-width: 268px) 100vw, 268px\" \/>While the marketing folks and communications scientists are off doing their respective thing, we thought you might enjoy a brief behind-the-scenes peek at the sorts of things that we&#8217;re doing to make VERN awesome to use.<\/p>\n<p>Specifically, we&#8217;re going to talk about VERN integration, brag a bit about speed, and we&#8217;ll talk a bit about the system architecture.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<blockquote><p><em><strong>Fair warning:<\/strong><\/em>\u00a0This one is geared more towards folks that are nerds like us, so it might be a little dry if you&#8217;re not a nerd like us. That said, we do hope that you&#8217;ll still find it interesting and would love to hear any <a href=\"https:\/\/vernai.com\/frequently-aked-questions\/\">questions<\/a> you might have about the things that we <a href=\"https:\/\/vernai.com\/developers\/\">talk about here<\/a>.<\/p><\/blockquote>\n<h2><a id=\"user-content-integration\" class=\"anchor\" href=\"https:\/\/gist.github.com\/ess\/d28ff1f1b87d635895fe70a464528f9b#integration\" aria-hidden=\"true\"><\/a>Integration<\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-12661 alignleft\" src=\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback2-300x63.png\" alt=\"\" width=\"403\" height=\"84\" srcset=\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback2-300x63.png 300w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback2-600x125.png 600w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback2-1024x213.png 1024w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback2-768x160.png 768w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback2-1536x320.png 1536w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback2.png 1920w\" sizes=\"auto, (max-width: 403px) 100vw, 403px\" \/>When we started out on the project, we wanted to make VERN absolutely as easy to use as possible. While we considered a few ways to make this happen, we decided that the best solution for all sides of the equation would be to present it as a REST API that speaks JSON. This way, the only barriers to entry are the ability to create an account and subsequently make requests over the internet. The entire API is a single endpoint (<code>POST \/analyze<\/code>) for the time being, and there are only two known failure scenarios.<\/p>\n<p>To make things even easier, we&#8217;re definitely going to release client libraries for the various languages out there, but for those who use a language for which we haven&#8217;t released a client, integration is still pretty easy. For example, let&#8217;s say that we want to analyze the phrase &#8220;my sausages turned to gold.&#8221; Here&#8217;s how we&#8217;d make that request with\u00a0<code>curl<\/code>:<\/p>\n<p>&nbsp;<\/p>\n<pre style=\"padding-left: 40px;\"><code>curl -s -X POST \\\n  -H 'Authorization: my-vern-creds' \\\n  -H 'Accept: application\/json' \\\n  -H 'Content-Type: application\/json' \\\n  -d '{\"text\":\"my sausages turned to gold\"}' \\\n  https:\/\/vernapi.com\/analyze\n<\/code><\/pre>\n<p>&nbsp;<\/p>\n<p>In return, you get back a JSON response that contains both the text that was analyzed as well as a collection of confidence scores:<\/p>\n<p>&nbsp;<\/p>\n<div class=\"highlight highlight-source-json\">\n<pre style=\"padding-left: 40px;\">{\n  <span class=\"pl-s\"><span class=\"pl-pds\">\"<\/span>text<span class=\"pl-pds\">\"<\/span><\/span> : <span class=\"pl-s\"><span class=\"pl-pds\">\"<\/span>my sausages turned to gold<span class=\"pl-pds\">\"<\/span><\/span>,\n  <span class=\"pl-s\"><span class=\"pl-pds\">\"<\/span>scores<span class=\"pl-pds\">\"<\/span><\/span> : [\n    {<span class=\"pl-s\"><span class=\"pl-pds\">\"<\/span>name<span class=\"pl-pds\">\"<\/span><\/span> : <span class=\"pl-s\"><span class=\"pl-pds\">\"<\/span>sadness<span class=\"pl-pds\">\"<\/span><\/span>, <span class=\"pl-s\"><span class=\"pl-pds\">\"<\/span>value<span class=\"pl-pds\">\"<\/span><\/span> : <span class=\"pl-c1\">12.5<\/span>},\n    {<span class=\"pl-s\"><span class=\"pl-pds\">\"<\/span>name<span class=\"pl-pds\">\"<\/span><\/span> : <span class=\"pl-s\"><span class=\"pl-pds\">\"<\/span>anger<span class=\"pl-pds\">\"<\/span><\/span>, <span class=\"pl-s\"><span class=\"pl-pds\">\"<\/span>value<span class=\"pl-pds\">\"<\/span><\/span> : <span class=\"pl-c1\">12.5<\/span>},\n    {<span class=\"pl-s\"><span class=\"pl-pds\">\"<\/span>name<span class=\"pl-pds\">\"<\/span><\/span> : <span class=\"pl-s\"><span class=\"pl-pds\">\"<\/span>humor<span class=\"pl-pds\">\"<\/span><\/span>, <span class=\"pl-s\"><span class=\"pl-pds\">\"<\/span>value<span class=\"pl-pds\">\"<\/span><\/span> : <span class=\"pl-c1\">12.5<\/span>}\n  ]\n}<\/pre>\n<\/div>\n<p>&nbsp;<\/p>\n<p>So, it&#8217;s a run-of-the-mill REST API, and that means we&#8217;re drastically sacrificing performance, right?<\/p>\n<h2><a id=\"user-content-speed\" class=\"anchor\" href=\"https:\/\/gist.github.com\/ess\/d28ff1f1b87d635895fe70a464528f9b#speed\" aria-hidden=\"true\"><\/a>Speed<\/h2>\n<p>Not really. For various reasons, we chose\u00a0<a href=\"https:\/\/golang.org\/\" rel=\"nofollow\">Go<\/a>\u00a0as our implementation language for our API. We may do a piecemeal switch to\u00a0<a href=\"https:\/\/www.rust-lang.org\/\" rel=\"nofollow\">Rust<\/a>\u00a0at some point, but for now, Go is the sweet spot for our development style and performance needs.<\/p>\n<p>In our most recent round of stress testing, we used both\u00a0<a href=\"https:\/\/www.joedog.org\/siege-home\/\" rel=\"nofollow\">siege<\/a>\u00a0and\u00a0<a href=\"https:\/\/github.com\/rakyll\/hey\">hey<\/a>\u00a0to hit the production environment with a total of 25000\u00a0<code>analyze<\/code>\u00a0requests per run via either 100 or 200 emulated concurrent users (depending on our mood). Here&#8217;s what we know after multiple test runs with both tools over the last week:<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>We&#8217;re handling an average of just above 300 requests per second under load.<\/li>\n<li>The production infrastructure isn&#8217;t being bogged down by those requests at all, really.<\/li>\n<li>The request rate appears to be network and CPU bound &#8230; on the\u00a0<em>client<\/em>\u00a0side. Or it&#8217;s solar flares.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>At that rate, we&#8217;re pretty confident saying that so long as your internet connection is decent and the sun is behaving, you should see rather decent response times from VERN.<\/p>\n<h2><a id=\"user-content-architecture\" class=\"anchor\" href=\"https:\/\/gist.github.com\/ess\/d28ff1f1b87d635895fe70a464528f9b#architecture\" aria-hidden=\"true\"><\/a>Architecture<\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-12671 size-large\" src=\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback9-1024x213.png\" alt=\"\" width=\"891\" height=\"185\" srcset=\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback9-1024x213.png 1024w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback9-600x125.png 600w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback9-300x63.png 300w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback9-768x160.png 768w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback9-1536x320.png 1536w, https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2021\/02\/sliderback9.png 1920w\" sizes=\"auto, (max-width: 891px) 100vw, 891px\" \/><\/p>\n<p>Where would we be without our friends? Heck, it took two people to write this article!<\/p>\n<p>To stretch that metaphor a bit, VERN is a highly service-oriented system, he&#8217;s brought his friends along for the ride, and everybody in the clique has a single responsibility. That&#8217;s part of how we&#8217;ve managed to keep response times low while keeping the implementation maintainable. As a matter of fact, each of those services addresses its respective internal components as services as well to allow for the possibility that these parts may need to be moved out of main at some point.<\/p>\n<p>So, who are VERN&#8217;s friends? ARTHUR and HORACE:<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>VERN knows how to read people&#8217;s emotions, so that&#8217;s what he does.<\/li>\n<li>ARTHUR the Authenticator knows how to identify people, so he&#8217;s the door man.<\/li>\n<li>HORACE the Hoarder never loses anything, so he&#8217;s in charge of keeping records.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>When you make a request to VERN, he asks ARTHUR if the credentials that you&#8217;ve provided are valid. If ARTHUR says you&#8217;re cool, VERN does his thing, then leaves a note for HORACE (as a background job) to make sure that the fact that he&#8217;s talking to you is recorded.<\/p>\n<p>We&#8217;re running all of these (and a database) on the same server in our dev and staging environments, but they&#8217;re on separate servers in the production environment to prevent one service from impacting another. To sweeten the deal a bit, we&#8217;ve got a load balancer for each service for the sake of scale-out simplicity.<\/p>\n<h2>Wrapping Up<\/h2>\n<p>We&#8217;ll have many more technical blogs where we discuss the architecture, and take input from our community. VERN is designed to be a tech-first company so we&#8217;re focusing on the development and capabilities. It means we only roll out our emotions when the statistical data means it&#8217;s quite significant across multiple frames. It means we focus on the end user, and try to anticipate what your needs may be. If you have any suggestions, or would like to participate in upcoming chats and meetups, <a href=\"https:\/\/vernai.com\/sign-up-for-verns-newsletter\/\">sign up for our newsletter today.<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>While the marketing folks and communications scientists are off doing their respective thing, we thought you might enjoy a brief behind-the-scenes peek at the sorts of things that we&#8217;re doing to make VERN awesome to use. Specifically, we&#8217;re going to talk about VERN integration, brag a bit about speed, and we&#8217;ll talk a bit about [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":12385,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[73,76],"tags":[],"class_list":["post-13020","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-tech-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.13 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Howdy from the Tech Team! - VERN AI<\/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:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Howdy from the Tech Team! - VERN AI\" \/>\n<meta property=\"og:description\" content=\"While the marketing folks and communications scientists are off doing their respective thing, we thought you might enjoy a brief behind-the-scenes peek at the sorts of things that we&#8217;re doing to make VERN awesome to use. Specifically, we&#8217;re going to talk about VERN integration, brag a bit about speed, and we&#8217;ll talk a bit about [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/\" \/>\n<meta property=\"og:site_name\" content=\"VERN AI\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-24T15:36:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/vernai.com\/wp-content\/uploads\/2021\/04\/coding-computer-data-depth-of-field-577585-300x225.jpg\" \/>\n<meta name=\"author\" content=\"VERN Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"VERN Staff\" \/>\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:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/\"},\"author\":{\"name\":\"VERN Staff\",\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#\/schema\/person\/29d0db2f75840d08d3fd4d174e6e8c30\"},\"headline\":\"Howdy from the Tech Team!\",\"datePublished\":\"2021-04-24T15:36:34+00:00\",\"dateModified\":\"2021-04-24T15:36:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/\"},\"wordCount\":860,\"publisher\":{\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#organization\"},\"articleSection\":[\"Blog\",\"Tech Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/\",\"url\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/\",\"name\":\"Howdy from the Tech Team! - VERN AI\",\"isPartOf\":{\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#website\"},\"datePublished\":\"2021-04-24T15:36:34+00:00\",\"dateModified\":\"2021-04-24T15:36:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Howdy from the Tech Team!\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#website\",\"url\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/\",\"name\":\"VERN AI\",\"description\":\"Emotion Recognition\",\"publisher\":{\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#organization\",\"name\":\"VERN AI\",\"url\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2022\/09\/cropped-VERN-logo-MSTR.png\",\"contentUrl\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2022\/09\/cropped-VERN-logo-MSTR.png\",\"width\":2315,\"height\":1547,\"caption\":\"VERN AI\"},\"image\":{\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#\/schema\/person\/29d0db2f75840d08d3fd4d174e6e8c30\",\"name\":\"VERN Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"VERN Staff\"},\"url\":\"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/author\/vern-staff\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Howdy from the Tech Team! - VERN AI","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:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/","og_locale":"en_US","og_type":"article","og_title":"Howdy from the Tech Team! - VERN AI","og_description":"While the marketing folks and communications scientists are off doing their respective thing, we thought you might enjoy a brief behind-the-scenes peek at the sorts of things that we&#8217;re doing to make VERN awesome to use. Specifically, we&#8217;re going to talk about VERN integration, brag a bit about speed, and we&#8217;ll talk a bit about [&hellip;]","og_url":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/","og_site_name":"VERN AI","article_published_time":"2021-04-24T15:36:34+00:00","og_image":[{"url":"https:\/\/vernai.com\/wp-content\/uploads\/2021\/04\/coding-computer-data-depth-of-field-577585-300x225.jpg"}],"author":"VERN Staff","twitter_card":"summary_large_image","twitter_misc":{"Written by":"VERN Staff","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/#article","isPartOf":{"@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/"},"author":{"name":"VERN Staff","@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#\/schema\/person\/29d0db2f75840d08d3fd4d174e6e8c30"},"headline":"Howdy from the Tech Team!","datePublished":"2021-04-24T15:36:34+00:00","dateModified":"2021-04-24T15:36:34+00:00","mainEntityOfPage":{"@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/"},"wordCount":860,"publisher":{"@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#organization"},"articleSection":["Blog","Tech Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/","url":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/","name":"Howdy from the Tech Team! - VERN AI","isPartOf":{"@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#website"},"datePublished":"2021-04-24T15:36:34+00:00","dateModified":"2021-04-24T15:36:34+00:00","breadcrumb":{"@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/2021\/04\/24\/howdy-from-the-tech-team\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/"},{"@type":"ListItem","position":2,"name":"Howdy from the Tech Team!"}]},{"@type":"WebSite","@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#website","url":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/","name":"VERN AI","description":"Emotion Recognition","publisher":{"@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#organization","name":"VERN AI","url":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#\/schema\/logo\/image\/","url":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2022\/09\/cropped-VERN-logo-MSTR.png","contentUrl":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-content\/uploads\/2022\/09\/cropped-VERN-logo-MSTR.png","width":2315,"height":1547,"caption":"VERN AI"},"image":{"@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#\/schema\/person\/29d0db2f75840d08d3fd4d174e6e8c30","name":"VERN Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"VERN Staff"},"url":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/author\/vern-staff\/"}]}},"_links":{"self":[{"href":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-json\/wp\/v2\/posts\/13020","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-json\/wp\/v2\/comments?post=13020"}],"version-history":[{"count":0,"href":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-json\/wp\/v2\/posts\/13020\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-json\/wp\/v2\/media\/12385"}],"wp:attachment":[{"href":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-json\/wp\/v2\/media?parent=13020"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-json\/wp\/v2\/categories?post=13020"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/host.tucknologies.com\/~v3rn4dm1n\/wp-json\/wp\/v2\/tags?post=13020"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}