Deploying Open Source Large Models Locally with Ollama

Deploying Open Source Large Models Locally with Ollama

ClickFollowWeChat Official Account, “Technical Insights” for Timely Updates! Introduction If you want to deploy and run an open-source large model on localhost, you can try Ollama. In this article, we will deploy Ollama and call the large model via API. Installation Ollama provides two development packages for Python and JavaScript, which are quite friendly for … Read more

Building a PDF Q&A Application Using OLLama and LangChain

Building a PDF Q&A Application Using OLLama and LangChain

Yesterday, I wrote about How OLLama Builds a Knowledge Base for Q&A Using Existing Documents? OLLama + LangChain to Assist You. There was a streamlit related to the graphical interface for the OLLama knowledge base Q&A that I didn’t write about because the code didn’t run, so today I will supplement that part. Finally, there … Read more

Phidata: 8.3K Stars! Create AI Agents with Long-Term Memory Using GPT-4o

Phidata: 8.3K Stars! Create AI Agents with Long-Term Memory Using GPT-4o

Project Overview Phidata is an open-source framework designed to build automated assistants (intelligent agents) with memory, knowledge, and tool capabilities. This framework addresses the limitations of existing large language models (LLMs) in terms of context and their inability to perform actions by adding a database to store chat history, a vector database to store business … Read more

Evaluate Stock Technical Indicators Using Ollama

Evaluate Stock Technical Indicators Using Ollama

This article has several interesting points: 1. Visualization using Streamlit. 2. Calculating rolling averages and momentum indicators to understand market trends. 3. Using Llama 3 to interpret the data. First, install and import the following packages: import yfinance as yf import pandas as pd import schedule import time import ollama from datetime import datetime, timedelta … Read more

First Experience With Windsurf: Surpassing Cursor

First Experience With Windsurf: Surpassing Cursor

This article was originally published at the end of November 2024, for everyone’s understanding. Many features have been upgraded in the latest version, and I will update the new experience when I have time. Windsurf has been released for several days now, and personally, I have been using Cursor and Bolt quite a bit. This … Read more