Anto Subash
Anto Subash
  • 62
  • 181 232
Ollama Semantic Kernel Connector With C#: Console App & API Guide
In this post, we'll explore how to integrate the Ollama Semantic Kernel Connector with C#, demonstrating two practical implementations: a Console Application and a Minimal API using ASP.NET Core. This integration allows developers to leverage the power of large language models (LLMs) in their C# applications with ease.
Blog post: blog.antosubash.com/posts/ollama-semantic-kernal-connector
Microsoft blog: devblogs.microsoft.com/semantic-kernel/introducing-new-ollama-connector-for-local-models/
#csharp #ollama #dotnet #api
มุมมอง: 467

วีดีโอ

ABP-Powered .Net Web App with Inertia.js, React, and Vite
มุมมอง 2802 หลายเดือนก่อน
Building a web application with ABP Framework, Inertia.js, React, and Vite. Blogpost : blog.antosubash.com/posts/abp-with-inertia-and-react Repo: github.com/antosubash/abp-inertiajs-react #csharp #dotnet #abpframework #react #vite #inertiajs
Ollama and Semantic Kernel with C#
มุมมอง 2.6K3 หลายเดือนก่อน
#programming #ollama #semantic-kernel #csharp In this post, we will learn how to get started with Ollama and Semantic Kernel. We will learn how to install Ollama and get the LLM running on your machine and then we will learn how to use the Semantic Kernel with C# to interact with the LLM. Blog Post: blog.antosubash.com/posts/ollama-with-semantic-kernel
Migrating from Tye to .Net Aspire
มุมมอง 5764 หลายเดือนก่อน
This is the part 14 of the series: .NET Microservice with ABP. When I started this series I used Tye to manage the run the services because that was the only viable option at that time but Tye is abandoned by Microsoft and it is not recommended to use it for the new projects. The recommended migration path from Tye is to use Aspire. In this post, we will see how to migrate the Tye to Aspire. Bl...
Abp React V2
มุมมอง 7675 หลายเดือนก่อน
V2 of the React Starter Template for ABP application with Next.js, Tailwind CSS, and shadcn-ui is ready to use. You can use this template to start your next project. This template uses the Next.js App Directory Structure. It is easy to use and extend. Blog Post: blog.antosubash.com/posts/abp-react-v2
OpenID Connect (OIDC) with Next.js
มุมมอง 1.1K5 หลายเดือนก่อน
Most of the time, I use next-auth for authentication in my Next.js apps. But the problem with next-auth is that it does not support Multitenancy for self-hosted apps. So I thought it would be a good idea to write a post on how to implement OpenID Connect with Next.js. if you have only one tenant or you are hosting your app on Vercel, you can use Next-auth. But if you have multiple tenants or yo...
Abp CLI Template
มุมมอง 663ปีที่แล้ว
In this post, we will see how to create a CLI for your ABP application. Blog Post: blog.antosubash.com/posts/abp-cli-template Repo: github.com/antosubash/abp-cli-template #abpframework #dotnet #cli
ABP React Template
มุมมอง 1.6Kปีที่แล้ว
React Starter Template for ABP application with Next.js and Tailwind CSS is ready to use. You can use this template to start your next project. #react #nextjs #abpframework Blog Post: blog.antosubash.com/posts/abp-react-template
.Net Microservice template
มุมมอง 1.2Kปีที่แล้ว
In this video, I will show you how to create ABP microservice using a dotnet new template. #multitenant #saas #abpframework #dotnet #.net Blog Post: blog.antosubash.com/posts/dotnet-microservice-template-with-abp Series : blog.antosubash.com/posts/abp-microservice-series 00:00 Intro 01:11 Status 01:46 Prerequisites 02:22 Install template 03:17 Create microservice 06:30 Migrations 07:21 Running ...
Migrating Identity Service to OpenIddict Module - Part 13
มุมมอง 4.8Kปีที่แล้ว
This post will show how to replace the Identity server with OpenIddict in our microservice. We will use the same microservice we created in the previous posts. Blog post: blog.antosubash.com/posts/migrating-identity-service-to-open-iddict-module #abp #openiddict
Automatically version and release .Net Application
มุมมอง 9312 ปีที่แล้ว
In this post we will see how to automatically version and release a .Net Application using GitHub Actions. We will use the conventional commits specification to automatically version and release our application. Blog post: blog.antosubash.com/posts/automatic-version-and-release Repo: github.com/antosubash/dotnet-version-and-release #version #git #release #dotnet
MicroK8s - Hassle-free Kubernetes - Full Series
มุมมอง 2.4K2 ปีที่แล้ว
In this video, we will see how to get started with the microk8s and deploy a simple service. We will see how to access the service from outside the cluster using ingress controller. We will also see how to use the cert-manager to get a valid SSL certificate for the service and then how to use the docker registry to store the docker images and how to use the Postgres database in the microk8s clu...
Deploy Registry and Postgres database in MicroK8s - Part 3
มุมมอง 1.4K2 ปีที่แล้ว
In this post, we will see how to deploy and secure the registry along with deploying a Postgres database in microk8s. We will also see how to connect to the created registry. We will also see how to create a secret in Kubernetes and use it in the deployment. We will also see how to create a persistent volume and use it in the deployment. Post: blog.antosubash.com/posts/deploy-docker-registry-an...
MicroK8s - Hassle-free Kubernetes - Intro
มุมมอง 2.7K2 ปีที่แล้ว
MicroK8s - Hassle-free Kubernetes - Intro
Setup MicroK8s With Ubuntu - Part 1
มุมมอง 3.3K2 ปีที่แล้ว
In this post we will see how to create a single node kubernetes cluster using microk8s. We will use hetzner cloud to create the server and install ubuntu server on it. We will then install microk8s and connect to the cluster using kubectl. Post: blog.antosubash.com/posts/setup-micro-k8s-with-ubuntu Hetzner: hetzner.cloud/?ref=ENhA4rCZ5JUM Repo: github.com/antosubash/microk8s-hetzner-deployment ...
Setup Nginx and cert-manager in MicroK8s - Part 2
มุมมอง 2.5K2 ปีที่แล้ว
In this post we will see how to setup nginx reverse proxy and cert-manager in microk8s. We will use the nginx ingress controller to create a reverse proxy for our applications. We will also use cert-manager to create and manage SSL certificates for our applications. Post: blog.antosubash.com/posts/setup-nginx-and-cert-manager-in-micro-k8s Hetzner: hetzner.cloud/?ref=ENhA4rCZ5JUM Repo: github.co...
Create and deploy .Net application in MicroK8s - Part 4
มุมมอง 1K2 ปีที่แล้ว
Create and deploy .Net application in MicroK8s - Part 4
Docker Deployment from start to finish using docker swarm
มุมมอง 2.6K2 ปีที่แล้ว
Docker Deployment from start to finish using docker swarm
Prepare and Deploy abp microservice - Docker Deployment - Part 4
มุมมอง 1.1K2 ปีที่แล้ว
Prepare and Deploy abp microservice - Docker Deployment - Part 4
Redis, Rabbitmq, Seq, Registry and Postgres in Docker Swarm - Docker Deployment - Part 3
มุมมอง 2.1K2 ปีที่แล้ว
Redis, Rabbitmq, Seq, Registry and Postgres in Docker Swarm - Docker Deployment - Part 3
Traefik and Portainer in Docker Swarm - Docker Deployment - Part 2
มุมมอง 13K2 ปีที่แล้ว
Traefik and Portainer in Docker Swarm - Docker Deployment - Part 2
Ubuntu Server with docker in Hetzner - Docker Deployment - Part 1
มุมมอง 4.5K2 ปีที่แล้ว
Ubuntu Server with docker in Hetzner - Docker Deployment - Part 1
Blazor state management with Fluxor
มุมมอง 5K2 ปีที่แล้ว
Blazor state management with Fluxor
.Net Microservice with ABP - Full Series
มุมมอง 7K2 ปีที่แล้ว
.Net Microservice with ABP - Full Series
Logging with Seq - .NET Microservice with ABP - Part 12
มุมมอง 1.8K2 ปีที่แล้ว
Logging with Seq - .NET Microservice with ABP - Part 12
Add New Service - .NET Microservice with ABP - Part 11
มุมมอง 1.8K2 ปีที่แล้ว
Add New Service - .NET Microservice with ABP - Part 11
Docker and CI/CD - .NET Microservice with ABP - Part 10
มุมมอง 1.9K2 ปีที่แล้ว
Docker and CI/CD - .NET Microservice with ABP - Part 10
Distributed Event Bus (RabbitMQ) - .NET Microservice with ABP - Part 9
มุมมอง 3.2K2 ปีที่แล้ว
Distributed Event Bus (RabbitMQ) - .NET Microservice with ABP - Part 9
IdentityServer and Angular - .NET Microservice with ABP - Part 8
มุมมอง 2.2K2 ปีที่แล้ว
IdentityServer and Angular - .NET Microservice with ABP - Part 8
Yarp and Tye - .NET Microservice with ABP - Part 7
มุมมอง 1.4K2 ปีที่แล้ว
Yarp and Tye - .NET Microservice with ABP - Part 7