• AI Dev and Research News
  • Posts
  • ⏰ Featured AI: Together AI Released DeepCoder-14B-Preview and Nvidia Released Llama-3.1-Nemotron-Ultra-253B-v1

⏰ Featured AI: Together AI Released DeepCoder-14B-Preview and Nvidia Released Llama-3.1-Nemotron-Ultra-253B-v1

Hi There,

Dive into the hottest AI breakthroughs of the week—handpicked just for you!

Super Important AI News 🔥 🔥 🔥

💡💡 Nvidia Released Llama-3.1-Nemotron-Ultra-253B-v1: A State-of-the-Art AI Model Balancing Massive Scale, Reasoning Power, and Efficient Deployment for Enterprise Innovation

🧲 🧲  RoR-Bench: Revealing Recitation Over Reasoning in Large Language Models Through Subtle Context Shifts

Coding Tutorial </>

🖥️ A Code Implementation to Use Ollama through Google Colab and Building a Local RAG Pipeline on Using DeepSeek-R1 1.5B through Ollama, LangChain, FAISS, and ChromaDB for Q&As (</>Colab Notebook Included)

In this tutorial, we’ll build a fully functional Retrieval-Augmented Generation (RAG) pipeline using open-source tools that run seamlessly on Google Colab. First, we will look into how to set up Ollama and use models through Colab. Integrating the DeepSeek-R1 1.5B large language model served through Ollama, the modular orchestration of LangChain, and the high-performance ChromaDB vector store allows users to query real-time information extracted from uploaded PDFs. With a combination of local language model reasoning and retrieval of factual data from PDF documents, the pipeline demonstrates a powerful, private, and cost-effective alternative..….

from langchain_community.document_loaders import PyPDFLoader
from langchain.text_splitter import RecursiveCharacterTextSplitter
from langchain_community.vectorstores import Chroma
from langchain_community.embeddings import HuggingFaceEmbeddings
from langchain_community.llms import Ollama
from langchain.chains import RetrievalQA
from google.colab import files
import os
from langchain_core.prompts import ChatPromptTemplate
from langchain_ollama.llms import OllamaLLM

Other AI News 🎖️🎖️🎖️

🧵🧵 Memory in ChatGPT can now reference all of your past chats to provide more personalized responses

🚨 OpenAI Open Sources BrowseComp: A New Benchmark for Measuring the Ability for AI Agents to Browse the Web

🚨 Debug-gym: an environment for AI coding tools to learn how to debug code like programmers