<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Kevin</title>
    <description>The latest articles on DEV Community by Kevin (@conanskyforce).</description>
    <link>https://dev.to/conanskyforce</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F97691%2Ff15d1a9b-3c02-4f2e-81d3-f8aa63ec407a.png</url>
      <title>DEV Community: Kevin</title>
      <link>https://dev.to/conanskyforce</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/conanskyforce"/>
    <language>en</language>
    <item>
      <title>I Have Open-sourced Chaty, a Single Line of Code That Provides Multiple ChatGPT Services.</title>
      <dc:creator>Kevin</dc:creator>
      <pubDate>Fri, 10 Mar 2023 10:37:15 +0000</pubDate>
      <link>https://dev.to/conanskyforce/i-have-open-sourced-chaty-a-single-line-of-code-that-provides-multiple-chatgpt-services-48fb</link>
      <guid>https://dev.to/conanskyforce/i-have-open-sourced-chaty-a-single-line-of-code-that-provides-multiple-chatgpt-services-48fb</guid>
      <description>&lt;p&gt;The impact of chatGPT is undeniable.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--2uHbzi9i--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/yrxi4mro6s530o43dunc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--2uHbzi9i--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/yrxi4mro6s530o43dunc.png" alt="what chatGPT can do" width="880" height="595"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Although it may not replace programmers entirely, chatGPT can help us become better ones.&lt;/p&gt;

&lt;p&gt;With the ability to answer our questions, provide code suggestions, and offer technical support, chatGPT is becoming an indispensable part of our programming career.&lt;/p&gt;

&lt;p&gt;Through interaction with chatGPT, we can better understand programming concepts and problem-solving methods, thereby continuously improving our skills and knowledge.&lt;/p&gt;

&lt;p&gt;During the process of tinkering with chatGPT, I came across various plans for building chatGPT, all of which were messy and in different languages.&lt;/p&gt;

&lt;p&gt;As someone who writes TypeScript, React/Vue, and Node, I created chaty.&lt;/p&gt;

&lt;p&gt;I summarized the common scenarios for using chatGPT and implemented the following features in a week:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;chaty run &lt;span class="nb"&gt;command&lt;/span&gt; // terminal chatbot

chaty run web // private chatGPT web service

chaty run node // chatGPT API based on Node

chaty run wechat // chatGPT WeChat bot

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--C9bO5AGf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wsomior8vkrrkk8hefqs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--C9bO5AGf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wsomior8vkrrkk8hefqs.png" alt="chatGPT command-line bot" width="880" height="481"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--yGXqbRqx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/gpuz59opos0glc8d60h1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--yGXqbRqx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/gpuz59opos0glc8d60h1.png" alt="chatGPT web service" width="880" height="742"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;and&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;chaty run discord
chaty run telegram
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;are under coding &lt;/p&gt;

&lt;p&gt;Of course, the functionalities currently implemented are still relatively simple, and there is a lot of work to be done in the future for improvement.&lt;/p&gt;

&lt;p&gt;For more details, please refer to the &lt;a href="https://github.com/cosin2077/chaty#readme"&gt;readme&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Project link: &lt;a href="https://github.com/cosin2077/chaty"&gt;https://github.com/cosin2077/chaty&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feedback and contributions  are welcome through PRs and issues.&lt;/p&gt;

&lt;p&gt;Thank you for reading.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
