@yamzzdev/aiyamz 1.0.3 → 1.0.4

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.
@@ -6,10 +6,11 @@ class GroqProvider {
6
6
  throw new Error('API Key is required. Get your API key at: https://console.groq.com/keys');
7
7
  }
8
8
  this.client = new Groq({ apiKey });
9
- this.model = "llama3-8b-8192";
9
+ this.model = "gpt-oss-120b";
10
10
  this.availableModels = [
11
- "llama3-8b-8192",
12
- "llama3-70b-8192",
11
+ "gpt-oss-120b",
12
+ "llama-3.1-8b-instant",
13
+ "llama-3.1-70b-versatile",
13
14
  "mixtral-8x7b-32768",
14
15
  "gemma2-9b-it"
15
16
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamzzdev/aiyamz",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "AI chat package by yamzzdev - powered by Groq (FREE)",
5
5
  "main": "lib/index.js",
6
6
  "bin": {