Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      How To Prevent WordPress SQL Injection Attacks

      June 14, 2025

      This week in AI dev tools: Apple’s Foundations Model framework, Mistral’s first reasoning model, and more (June 13, 2025)

      June 13, 2025

      Open Talent platforms emerging to match skilled workers to needs, study finds

      June 13, 2025

      Java never goes out of style: Celebrating 30 years of the language

      June 12, 2025

      6 registry tweaks every tech-savvy user must apply on Windows 11

      June 14, 2025

      Here’s why network infrastructure is vital to maximizing your company’s AI adoption

      June 14, 2025

      The AI video tool behind the most viral social trends right now

      June 14, 2025

      Got a new password manager? How to clean up the password mess you left in the cloud

      June 14, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      Right Invoicing App for iPhone: InvoiceTemple

      June 14, 2025
      Recent

      Right Invoicing App for iPhone: InvoiceTemple

      June 14, 2025

      Tunnel Run game in 170 lines of pure JS

      June 14, 2025

      Integrating Drupal with Salesforce SSO via SAML and Dynamic User Sync

      June 14, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      6 registry tweaks every tech-savvy user must apply on Windows 11

      June 14, 2025
      Recent

      6 registry tweaks every tech-savvy user must apply on Windows 11

      June 14, 2025

      Is Chrome Copying Edge? ‘Omnibox Tools’ Bring Edge-Style Address Bar Shortcuts

      June 14, 2025

      Windows 11 24H2’s new Start Menu auto-changes size based on screen resolution

      June 14, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Operating Systems»Linux»Obsidian: Best Open Source AI-powered Note-taking App

    Obsidian: Best Open Source AI-powered Note-taking App

    August 7, 2024

    You must have used many note-taking apps before, like Evernote or Microsoft’s OneNote. But the note-taking app I am going to tell you about in this article is, in my opinion, the best note-taking app to date.

    And it’s Obsidian.

    Obsidian – An Open Source Note taking App

    Obsidian is an open-source note-taking app, which means it is completely free, and if you are a programmer, you can improve this note-taking app with your code contributions.

    But if you are looking for an all-in-one note-taking app that can serve your personal or business purposes, then Obsidian might be the best app.

    Obsidian’s core functionalities are so robust that it can easily compete with any premium app. For example, it has a feature-rich, friendly editor with multiple editing modes, Right-to-Left support, and it even automatically links connections between your notes.

    Obsidian Canvas

    And Obsidian is not just a simple note-taking app. If you create diagrams or charts, or need to do simple brainstorming, it has Canvas. In this canvas, you can perform tasks ranging from simple graphs to complex wireframing.

    There are many more core functionalities in Obsidian. But one of the reasons Obsidian is my favorite is because it supports hundreds of plugins. If you think a certain feature is missing in the app, you can find and install community plugins.

    For example, if you watched my last video where I explained how to set up Ollama to use open-source AI models on your laptop or desktop, we can use the same Ollama in Obsidian through a community plugin. You don’t even need to leave your editor to use AI, and you don’t have to be connected to the internet.

    Yes, it’s completely free and don’t even require an Internet connection.

    Installing Copilot Plugin in Obsidian

    To install Copilot, plugin that provides AI chat functionality in the app, click on the settings icon and go to the Community Plugins tab. By default, Obsidian keeps community plugins disabled, so to enable it, click on the “Turn off and reload” button in front of restricted mode.

    Now that you have turned off restricted mode, you can click on Browse in the Community Plugins tab.

    Here you will see hundreds of plugins listed. You can easily install and activate any plugin.

    To install the AI plugin, search for “copilot”. This copilot is not Microsoft’s copilot or GitHub copilot. This plugin is developed and maintained by Obsidian community developers.

    When you search, you will find the copilot plugin, and you can install it. After installing, activate it, and now this plugin has become part of your note-taking app.

    The next step is to connect it to Ollama. For this, we will go to Obsidian settings again, scroll down, and click on copilot in the community plugins section. Here all the copilot settings are available.

    In the copilot settings, we only need to change two settings. First, in the default model setting, we will select “OLLAMA (LOCAL)” and then scroll down to the very last section of Ollama settings, where we will configure which model Ollama should use to process prompts.

    As we saw in the last video, we can install and set up many open-source models through Ollama. I recommend you select an AI model according to your device; for example, if you have an old laptop, you can use Phi3.

    ChatGPT Alternatives: Exploring Free, Open-Source and Affordable AI Models
    Ever since the introduction of OpenAI’s ChatGPT, it’s AI everywhere. From writing emails to developing software, this AI technology has truly sparked a big revolution in technology. While ChatGPT was the first to allow people to communicate with the computer in human language, it’s for sure not the only one.
    LinuxAndUbuntuSohail

    Here I will use the llama 3.1 model with 8B parameters, which is currently the best open-source LLM.

    For this, open the terminal, or if you are on Windows, type “CMD” in the menu and open the command prompt. Here type –

    ollama pull llama3.1:latest

    ollama pull nomic-embed-text

    Depending on your internet speed, it might a few minutes.

    Once the download is over, go back to the Obsidian settings. In the Ollama settings section, type llama3.1:latest in the Ollama model field. Don’t forget to mention the model tag, i.e., latest in my case.

    Now scroll back to the top of the settings page and click “Save and reload”. This will save all the settings and reload the app.

    Now we can easily use AI chat in Obsidian. Click on the ‘chat’ icon in the left sidebar to open the copilot window. Here you can type any prompt, and the model will respond like ChatGPT.

    Automatic Notes Analysis

    You can even give the note you are working on as a prompt to the model, and after that, you can ask any specific questions regarding your note.

    The plugin supports three modes, with chat mode being the default mode. Besides this, there is “Long Note QA” which allows you to use the currently opened note as context, and in Vault QA mode, the plugin will send all the notes in the vault to the AI model, and then you can ask any questions about your saved notes in the vault.

    You can also adjust the model’s temperature and other settings from the copilot settings.

    Source: Read More

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleExperimenting with Llama 3.1 – 405B Model with 128k window size (8B and 7B)
    Next Article Internxt – Zero-knowledge, secure Cloud storage with Linux Client

    Related Posts

    News & Updates

    6 registry tweaks every tech-savvy user must apply on Windows 11

    June 14, 2025
    Operating Systems

    Is Chrome Copying Edge? ‘Omnibox Tools’ Bring Edge-Style Address Bar Shortcuts

    June 14, 2025
    Leave A Reply Cancel Reply

    For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

    Continue Reading

    How to Add Live Chat to Your Applications with Rocket.chat

    Development
    Microsoft Patches 126 Flaws Including Actively Exploited Windows CLFS Vulnerability

    Microsoft Patches 126 Flaws Including Actively Exploited Windows CLFS Vulnerability

    Development

    Phishing Campaigns Use Real-Time Checks to Validate Victim Emails Before Credential Theft

    Development

    CVE-2025-48143 – SalesUp! Cross-site Scripting (XSS)

    Common Vulnerabilities and Exposures (CVEs)

    Highlights

    Linux

    Linus Torvalds torna alla tastiera meccanica: il valore del feedback nella digitazione per chi sviluppa

    May 14, 2025

    Linus Torvalds, figura centrale nello sviluppo del kernel Linux e punto di riferimento per la…

    Microsoft Patch Tuesday May 2025: 5 Zero Days, 8 High-Risk Vulnerabilities

    May 14, 2025

    Kodeco Podcast: Mastering Multiplatform: Flutter vs KMP – Podcast V2, S3 E5 [FREE]

    May 15, 2025

    Google Releases 76-Page Whitepaper on AI Agents: A Deep Technical Dive into Agentic RAG, Evaluation Frameworks, and Real-World Architectures

    May 6, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.