groq-rag 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +15 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # groq-rag
2
2
 
3
- [![CI](https://github.com/mithun50/groq-rag/actions/workflows/ci.yml/badge.svg)](https://github.com/mithun50/groq-rag/actions/workflows/ci.yml)
4
3
  [![npm version](https://badge.fury.io/js/groq-rag.svg)](https://www.npmjs.com/package/groq-rag)
5
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.0-blue.svg)](https://www.typescriptlang.org/)
6
6
 
7
- Extended Groq SDK with RAG (Retrieval-Augmented Generation), web browsing, and agent capabilities.
7
+ Extended Groq SDK with RAG (Retrieval-Augmented Generation), web browsing, and agent capabilities. Build AI agents that can search the web, fetch URLs, query knowledge bases, and more.
8
8
 
9
9
  ## Features
10
10
 
@@ -16,6 +16,19 @@ Extended Groq SDK with RAG (Retrieval-Augmented Generation), web browsing, and a
16
16
  - **TypeScript**: Full type safety and IntelliSense support
17
17
  - **Zero Config**: Works out of the box with sensible defaults
18
18
 
19
+ ## Supported Models
20
+
21
+ This package works with all Groq-supported models. Recommended models:
22
+
23
+ | Model | Description | Best For |
24
+ |-------|-------------|----------|
25
+ | `llama-3.3-70b-versatile` | Latest Llama 3.3 70B | General purpose, best quality |
26
+ | `llama-3.1-8b-instant` | Fast Llama 3.1 8B | Quick responses, lower cost |
27
+ | `qwen/qwen3-32b` | Qwen 3 32B | Alternative, good reasoning |
28
+ | `meta-llama/llama-4-scout-17b-16e-instruct` | Llama 4 Scout | Vision tasks, newest |
29
+
30
+ See [Groq Models](https://console.groq.com/docs/models) for the full list.
31
+
19
32
  ## Installation
20
33
 
21
34
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "groq-rag",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Extended Groq SDK with RAG, web browsing, and agent capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",