<?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: Bigyan Karki</title>
    <description>The latest articles on DEV Community by Bigyan Karki (@bigyankarki).</description>
    <link>https://dev.to/bigyankarki</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%2F1116011%2Faf44d7c2-6b38-4c16-9290-5d2a31462a1d.png</url>
      <title>DEV Community: Bigyan Karki</title>
      <link>https://dev.to/bigyankarki</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bigyankarki"/>
    <language>en</language>
    <item>
      <title>How to Add Link Previews to Any App in One Line of Code</title>
      <dc:creator>Bigyan Karki</dc:creator>
      <pubDate>Mon, 20 Apr 2026 20:46:07 +0000</pubDate>
      <link>https://dev.to/bigyankarki/how-to-add-link-previews-to-any-app-in-one-line-of-code-28l0</link>
      <guid>https://dev.to/bigyankarki/how-to-add-link-previews-to-any-app-in-one-line-of-code-28l0</guid>
      <description>&lt;p&gt;Ever needed to show a preview of a PDF, document, or website in your app? Setting up Puppeteer, LibreOffice, and ffmpeg is painful. Here's a simpler way.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;You have a list of file URLs — PDFs, DOCX, PPTX, videos, websites — and you want to show thumbnails. The usual approach:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Spin up a headless browser for website screenshots&lt;/li&gt;
&lt;li&gt;Install LibreOffice for document rendering&lt;/li&gt;
&lt;li&gt;Use ffmpeg for video thumbnails&lt;/li&gt;
&lt;li&gt;Handle caching, rate limiting, error handling...&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's a lot of infrastructure for thumbnails.&lt;/p&gt;

&lt;h2&gt;
  
  
  The solution
&lt;/h2&gt;

&lt;p&gt;Prepend &lt;code&gt;preview.thedrive.ai/&lt;/code&gt; to any URL. That's it.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://preview.thedrive.ai/arxiv.org/pdf/1706.03762"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This returns a JPEG thumbnail of the first page of that PDF. Works with 67+ file formats.&lt;/p&gt;

&lt;h2&gt;
  
  
  Examples
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;PDF preview:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fpreview.thedrive.ai%2Farxiv.org%2Fpdf%2F1706.03762" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fpreview.thedrive.ai%2Farxiv.org%2Fpdf%2F1706.03762" alt="PDF preview" width="600" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://preview.thedrive.ai/arxiv.org/pdf/1706.03762"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Website screenshot:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fpreview.thedrive.ai%2Fhttps%3A%2F%2Fdev.to%2F" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fpreview.thedrive.ai%2Fhttps%3A%2F%2Fdev.to%2F" alt="Website preview" width="600" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://preview.thedrive.ai/https://dev.to/"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;PowerPoint thumbnail:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fpreview.thedrive.ai%2Fwww.dickinson.edu%2Fdownload%2Fdownloads%2Fid%2F1076%2Fsample_powerpoint_slides.pptx" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fpreview.thedrive.ai%2Fwww.dickinson.edu%2Fdownload%2Fdownloads%2Fid%2F1076%2Fsample_powerpoint_slides.pptx" alt="PPTX preview" width="600" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://preview.thedrive.ai/example.com/slides.pptx"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Using with Next.js
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;Image&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;next/image&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;Link&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;next/link&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;

&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;Link&lt;/span&gt; &lt;span class="nx"&gt;href&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://example.com/report.pdf&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;Image&lt;/span&gt;
    &lt;span class="na"&gt;src&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"https://preview.thedrive.ai/example.com/report.pdf"&lt;/span&gt;
    &lt;span class="na"&gt;alt&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"preview"&lt;/span&gt;
    &lt;span class="na"&gt;width&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="mi"&gt;600&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;
    &lt;span class="na"&gt;height&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="mi"&gt;400&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;
  &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="err"&gt;/&lt;/span&gt;&lt;span class="na"&gt;Link&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Custom dimensions and quality
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight http"&gt;&lt;code&gt;&lt;span class="err"&gt;// 800x600 at 90% quality
preview.thedrive.ai/example.com/doc.pdf?w=800&amp;amp;h=600&amp;amp;q=90

// Skip cache for fresh render
preview.thedrive.ai/example.com/doc.pdf?nocache=true
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  What it supports
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Documents:&lt;/strong&gt; PDF, DOCX, PPTX, XLSX, ODT, RTF&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Images:&lt;/strong&gt; JPG, PNG, GIF, WebP, SVG, AVIF, HEIC&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Video:&lt;/strong&gt; MP4, MOV, WebM, AVI, MKV&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Code:&lt;/strong&gt; 30+ languages with syntax highlighting&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Markdown&lt;/strong&gt; with formatted rendering&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Any website&lt;/strong&gt; via headless browser screenshot&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;67+ formats total. Returns a JPEG thumbnail every time.&lt;/p&gt;

&lt;h2&gt;
  
  
  Social media previews for free
&lt;/h2&gt;

&lt;p&gt;When you share a preview.thedrive.ai link on Discord, Slack, or Twitter, it automatically generates rich preview cards with OG tags. No extra configuration needed.&lt;/p&gt;

&lt;h2&gt;
  
  
  API details
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Free tier:&lt;/strong&gt; 30 requests/min, no API key, no signup&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pro tier:&lt;/strong&gt; 120 requests/min with SLA ($19/mo)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Default output:&lt;/strong&gt; 600x400 JPEG, quality 95&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Caching:&lt;/strong&gt; 24-hour server cache + 7-day browser cache&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Use cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;File managers showing document thumbnails&lt;/li&gt;
&lt;li&gt;CMS/blog editors with link preview cards&lt;/li&gt;
&lt;li&gt;Search results with visual thumbnails&lt;/li&gt;
&lt;li&gt;Chat apps embedding file previews&lt;/li&gt;
&lt;li&gt;Emails with inline document previews (&lt;code&gt;&amp;lt;img&amp;gt;&lt;/code&gt; tags work in email)&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Try it out: &lt;a href="https://preview.thedrive.ai" rel="noopener noreferrer"&gt;preview.thedrive.ai&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>api</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>❤️ Date Me Docs</title>
      <dc:creator>Bigyan Karki</dc:creator>
      <pubDate>Sun, 10 Dec 2023 23:24:36 +0000</pubDate>
      <link>https://dev.to/bigyankarki/date-me-docs-53db</link>
      <guid>https://dev.to/bigyankarki/date-me-docs-53db</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is Date Me Doc?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;"Date-me docs” are both an emerging dating trend and a relic of a past era, more akin to newspaper personal ads than any bio posted on an algorithm-driven, swipe-based app. - NYT&lt;/p&gt;

&lt;p&gt;The "Date Me Doc" is a new feature inspired by a trend highlighted in The New York Times and Wired, where people use detailed, Google Docs-like documents to express their dating preferences. Unlike brief profiles on dating apps, these documents allow individuals to thoroughly describe themselves, their interests, and what they seek in a partner. Accessible at &lt;a href="https://thedrive.ai/date"&gt;https://thedrive.ai/date&lt;/a&gt;, this experimental feature aligns with the growing shift away from traditional dating apps, providing a more personal and comprehensive way for users to find romantic connections. This feature, however, does not mean we are shifting our focus to being a dating app or company.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How Do I Make My Date Me Doc?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The core of "Date Me Doc" is its format-free approach: it's simply a document about yourself and what you're looking for. For inspiration, Steve has a directory of such docs on Notion. On The Drive AI, you can set any document as your public profile, whether it's a PDF, a YouTube video, a website, or something created in our editor.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AI assistant&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;On your profile page, you have the option to turn on the assistant feature. This lets you choose how the assistant talks, kind of like setting its personality to match your style. You can also add extra details to make it more personal. Think of it as creating your own AI buddy that reflects who you are. The assistant only answers based on the contents of the profile page, and additional information provided to it.&lt;/p&gt;

&lt;p&gt;Happy date-me-docing!!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>programming</category>
    </item>
    <item>
      <title>Why am I working on The Drive AI</title>
      <dc:creator>Bigyan Karki</dc:creator>
      <pubDate>Sun, 13 Aug 2023 18:23:21 +0000</pubDate>
      <link>https://dev.to/bigyankarki/why-am-i-working-on-the-drive-ai-3ad6</link>
      <guid>https://dev.to/bigyankarki/why-am-i-working-on-the-drive-ai-3ad6</guid>
      <description>&lt;p&gt;Before answering the question, let's start with the problem.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Our files are scattered everywhere.&lt;br&gt;
I send files via Gmail to friends, upload them to Slack and Discord for work, and store personal documents in Google Drive and on my local machine. I even have tons of notes in OneNote. Finding a specific file, like my 2 a.m. thoughts, becomes a challenge. Was it in OneNote or Google Docs? And if it's in Google Docs, which of the hundreds of folders? Maybe I sent it to a friend via email or even Discord?&lt;br&gt;
This problem is magnified in teams where files are constantly sent across members, making search and management a daunting task. In a large company, it's common to send the same file multiple times to the same employee simply because they couldn't find it.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Inefficient use of stored information.&lt;br&gt;
In one way or another, we all have a vast internal knowledge base. Most internet users store files in storage systems like Google Drive, Obsidian, or Notion. But we often don't make good use of these stored knowledge bases. Consider this scenario: I'm struggling to solve a complex Calculus question. I have my Calculus book, which contains information on how to solve such problems. Even if it doesn't have the answer to the specific question I'm working on, it has the steps, rules, and information needed to solve it. Why can't I simply ask my book for the steps that would lead me to the solution? Additionally, if I want to write an article about the Amazon forest and have related materials in my Google Drive, why can't I use them to help write the article?&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;These are the two main problems we are trying to solve at The Drive AI. First, we aim to be a Dropbox for your knowledge base. Users can simply upload or sync documents to create a structured repository of information. Currently, you must manually manage these documents into files and folders, but our goal is to automatically organize them by content. For example, all content related to music theory would be found in one specific folder.&lt;/p&gt;

&lt;p&gt;We treat each folder as a knowledge base, a single source of truth to draw information from. So, if you forgot what notes are in Misolydian mode, you can simply ask the music theory knowledge base. Sure you can search the internet for notes in Misolydian mode, but the core idea holds for internal teams and personal documents. Imagine an emergency at a company, and you need to find information on what protocols to follow in the face of an emergency.&lt;/p&gt;

&lt;p&gt;With access to this knowledge base, we can tackle the second problem. We can use those files while reading to understand concepts better, search over them to quickly find information, and write new content with sources drawn from them.&lt;/p&gt;

&lt;p&gt;This is what we are working on at &lt;a href="https://thedrive.ai"&gt;https://thedrive.ai&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Full article here: &lt;a href="https://thedrive.ai/publish/ebfb16a7d2cfde880df194bfd72178c2:9f7272e3919e859c34e796679a9206b896594e0834888db4a18ee7b50cda83407c011872e6dff7dae582bdc83996e386"&gt;https://thedrive.ai/publish/ebfb16a7d2cfde880df194bfd72178c2:9f7272e3919e859c34e796679a9206b896594e0834888db4a18ee7b50cda83407c011872e6dff7dae582bdc83996e386&lt;/a&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>ai</category>
      <category>webdev</category>
    </item>
    <item>
      <title>What the heck am I building?</title>
      <dc:creator>Bigyan Karki</dc:creator>
      <pubDate>Sun, 13 Aug 2023 07:32:48 +0000</pubDate>
      <link>https://dev.to/bigyankarki/what-the-heck-am-i-building-3bjc</link>
      <guid>https://dev.to/bigyankarki/what-the-heck-am-i-building-3bjc</guid>
      <description>&lt;p&gt;Before answering the question, let's start with the problem.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Our files are scattered everywhere.&lt;br&gt;
I send files via Gmail to friends, upload them to Slack and Discord for work, and store personal documents in Google Drive and on my local machine. I even have tons of notes in OneNote. Finding a specific file, like my 2 a.m. thoughts, becomes a challenge. Was it in OneNote or Google Docs? And if it's in Google Docs, which of the hundreds of folders? Maybe I sent it to a friend via email or even Discord?&lt;br&gt;
This problem is magnified in teams where files are constantly sent across members, making search and management a daunting task. In a large company, it's common to send the same file multiple times to the same employee simply because they couldn't find it.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Inefficient use of stored information.&lt;br&gt;
In one way or another, we all have a vast internal knowledge base. Most internet users store files in storage systems like Google Drive, Obsidian, or Notion. But we often don't make good use of these stored knowledge bases. Consider this scenario: I'm struggling to solve a complex Calculus question. I have my Calculus book, which contains information on how to solve such problems. Even if it doesn't have the answer to the specific question I'm working on, it has the steps, rules, and information needed to solve it. Why can't I simply ask my book for the steps that would lead me to the solution? Additionally, if I want to write an article about the Amazon forest and have related materials in my Google Drive, why can't I use them to help write the article?&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;These are the two main problems we are trying to solve at The Drive AI. First, we aim to be a Dropbox for your knowledge base. Users can simply upload or sync documents to create a structured repository of information. Currently, you must manually manage these documents into files and folders, but our goal is to automatically organize them by content. For example, all content related to music theory would be found in one specific folder.&lt;/p&gt;

&lt;p&gt;We treat each folder as a knowledge base, a single source of truth to draw information from. So, if you forgot what notes are in Misolydian mode, you can simply ask the music theory knowledge base. Sure you can search the internet for notes in Misolydian mode, but the core idea holds for internal teams and personal documents. Imagine an emergency at a company, and you need to find information on what protocols to follow in the face of an emergency.&lt;/p&gt;

&lt;p&gt;With access to this knowledge base, we can tackle the second problem. We can use those files while reading to understand concepts better, search over them to quickly find information, and write new content with sources drawn from them.&lt;/p&gt;

&lt;p&gt;This is what we are working on at &lt;a href="https://thedrive.ai"&gt;https://thedrive.ai&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Full article here: &lt;a href="https://thedrive.ai/publish/ebfb16a7d2cfde880df194bfd72178c2:9f7272e3919e859c34e796679a9206b896594e0834888db4a18ee7b50cda83407c011872e6dff7dae582bdc83996e386"&gt;https://thedrive.ai/publish/ebfb16a7d2cfde880df194bfd72178c2:9f7272e3919e859c34e796679a9206b896594e0834888db4a18ee7b50cda83407c011872e6dff7dae582bdc83996e386&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I am working on a context-aware storage/knowledge base platform called The Drive AI.</title>
      <dc:creator>Bigyan Karki</dc:creator>
      <pubDate>Sat, 08 Jul 2023 23:09:07 +0000</pubDate>
      <link>https://dev.to/bigyankarki/i-am-working-on-a-context-aware-storageknowledge-base-platform-called-the-drive-ai-4aa0</link>
      <guid>https://dev.to/bigyankarki/i-am-working-on-a-context-aware-storageknowledge-base-platform-called-the-drive-ai-4aa0</guid>
      <description>&lt;p&gt;I recently launched an MVP of a context-aware storage/knowledge base platform called &lt;a href="https://thedrive.ai"&gt;The Drive AI&lt;/a&gt;. The crux of the app is to let you build your knowledge base by either uploading, importing or syncing your files across existing storage systems. &lt;/p&gt;

&lt;p&gt;After you build your knowledge base, you can easily search over them, ask ChatGPT-like questions, and get answers from your knowledge base. Additionally, you can write new content with sources drawn from your knowledge base. &lt;/p&gt;

&lt;p&gt;We also want to integrate a team chat feature, so that your team would have storage and communication in a single place. I would love to hear your feedback. :)&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>webdev</category>
      <category>discuss</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
