AWS BedRock Claude API Tutorial

image

Amazon Bedrock is a fully managed service that offers a choice of high-performing foundation models, including Claude, via a single API, along with a broad set of capabilities you need to build generative AI applications with security, privacy, and responsible AI. Claude AI is a powerful large language model developed by Anthropic. With its impressive … Read more

Chat With YouTube Videos Using LlamaIndex

In this article, we are using the LlamaIndex to chat with YouTube videos. LlamaIndex is a data framework for Large Language Models (LLMs) based applications that allow users to ingest data from various sources such as APIs, databases, PDFs, and more via flexible data connectors. This data is indexed into intermediate representations, which are numerical … Read more

Chat With Your Website Using Langchain

image 8

Imagine chatting with a website to extract information, similar to conversing with a human. This is where LangChain comes into play. LangChain is a powerful tool for natural language processing (NLP), enabling AI-based conversational interfaces. In this article, we’ll explore how to use LangChain to create a chat interface that interacts with content extracted from … Read more

Exploring Sentiment Analysis with Nepali Text

image 4

Sentiment analysis, a crucial component of natural language processing (NLP), has seen exponential growth in its applications, spanning from understanding customer feedback to social media monitoring. In this blog, I delve into a project that tackled sentiment analysis of Nepali text, illustrating the process, challenges, and achievements along the way. Background Nepali, an Indo-Aryan language, … Read more

3D Blender Step-By-Step Tutorial: How to Create a Simple Vase in Blender?

BUILD A VASE IN BLENDER

Chapter 3: Want to make a simple vase? Welcome to the third chapter in the Blender Tutorial Series where we will learn to build a vase. Before you start reading, do check out other chapters as well. Chapter 1 talks about the basics of the Blender and its functionalities.  Chapter 1: Introduction to Blender Chapter 2 talks about … Read more

Flutter Error: The Android Gradle plugin supports only kotlin-android-extensions Gradle plugin version 1.6.20 and higher

image 2023 02 06 145353431

This is a new flutter error I recently came across and wasn’t able to find solutions in Stack Overflow or other forums and sites. What was the problem? As you can see above, the package info plus package have a Kotlin version 1.6.10, however, the required version for the program to run was 1.6.20 and … Read more

[Solved] Don’t use one refreshController to multiple SmartRefresher

SmartRefresher

Don’t use one refreshController to multiple SmartRefresher, It will cause some unexpected bugs mostly in TabBarView ‘package:pull_to_refresh/src/smart_refresher.dart’: package:pull_to_refresh/src/smart_refresher.dart:1 Failed assertion: line 608 pos 12: ‘_refresherState == null’ The issue was using one refreshController to multiple SmartRefresher. The solution was quite simple: i.e Define another instance for another smart refresher. However, my attention was focused on … Read more