Retrieval Augmented Generation

Learn how to use retrieval augmented generation using the AI TOOLKIT and Node

2 min readnodeView source

Retrieval Augmented Generation (RAG) is a technique that enhances the capabilities of language models by providing them with relevant information from external sources during the generation process. This approach allows the model to access and incorporate up-to-date or specific knowledge that may not be present in its original training data. This example uses the following essay as an input (essay.txt). This example uses a simple in-memory vector database to store and retrieve relevant information. Alternatively, you can check out our Knowledge Base Agent example which uses Upstash Search to generate embeddings and manage the knowledge base. For a more in-depth guide, check out the RAG Chatbot Guide which will show you how to build a RAG chatbot with Next.js, Drizzle ORM and Postgres. import fs from 'fs'; import path from 'path'; import dotenv from 'dotenv'; import { cosineSimilarity, embed, embedMany, generateText } from 'ai-toolkit'; dotenv.config(); async function main() { const db: { embedding: number[]; value: string }[] = []; const essay = fs.readFileSync(path.join(__dirname, 'essay.txt'), 'utf8'); const chunks = essay .split('.') .map(chunk => chunk.trim()) .filter(chunk => chunk.length > 0 && chunk !== '\n'); const { embeddings } = await embedMany({ model: 'openai/text-embedding-3-small', values: chunks, }); embeddings.forEach((e, i) => { db.push({ embedding: e, value: chunks[i], }); }); const input = 'What were the two main things the author worked on before college?'; const { embedding } = await embed({ model: 'openai/text-embedding-3-small', value: input, }); const context = db .map(item => ({ document: item, similarity: cosineSimilarity(embedding, item.embedding), })) .sort((a, b) => b.similarity - a.similarity) .slice(0, 3) .map(r => r.document.value) .join('\n'); const { text } = await generateText({ model: 'openai/gpt-4o', prompt: Answer the following question based only on the provided context: ${context} Question: ${input}, }); console.log(text); } main().catch(console.error);

ts
  1. 1import fs from 'fs';
  2. 2import path from 'path';
  3. 3import dotenv from 'dotenv';
  4. 4import { cosineSimilarity, embed, embedMany, generateText } from 'ai-toolkit';
  5. 5dotenv.config();
  6. 6async function main() {
  7. 7const db: { embedding: number[]; value: string }[] = [];
  8. 8const essay = fs.readFileSync(path.join(__dirname, 'essay.txt'), 'utf8');
  9. 9const chunks = essay
  10. 10.split('.')
  11. 11.map(chunk => chunk.trim())
  12. 12.filter(chunk => chunk.length > 0 && chunk !== '\n');
  13. 13const { embeddings } = await embedMany({
  14. 14model: 'openai/text-embedding-3-small',
  15. 15values: chunks,
  16. 16});
  17. 17embeddings.forEach((e, i) => {
  18. 18db.push({
  19. 19embedding: e,
  20. 20value: chunks[i],
  21. 21});
  22. 22});
  23. 23const input =
  24. 24'What were the two main things the author worked on before college?';
  25. 25const { embedding } = await embed({
  26. 26model: 'openai/text-embedding-3-small',
  27. 27value: input,
  28. 28});
  29. 29const context = db
  30. 30.map(item => ({
  31. 31document: item,
  32. 32similarity: cosineSimilarity(embedding, item.embedding),
  33. 33}))
  34. 34.sort((a, b) => b.similarity - a.similarity)
  35. 35.slice(0, 3)
  36. 36.map(r => r.document.value)
  37. 37.join('\n');
  38. 38const { text } = await generateText({
  39. 39model: 'openai/gpt-4o',
  40. 40prompt: `Answer the following question based only on the provided context:
  41. 41${context}
  42. 42Question: ${input}`,
  43. 43});
  44. 44console.log(text);
  45. 45}
  46. 46main().catch(console.error);

Run it locally

$ npm install ai