groq-install-auth

Featured

Install and configure Groq SDK authentication for TypeScript or Python. Use when setting up a new Groq integration, configuring API keys, or initializing the groq-sdk in your project. Trigger with phrases like "install groq", "setup groq", "groq auth", "configure groq API key".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Groq Install & Auth ## Overview Install the official Groq SDK and configure API key authentication. Groq provides ultra-fast LLM inference on custom LPU hardware through an OpenAI-compatible REST API at `api.groq.com/openai/v1/`. ## Prerequisites - Node.js 18+ or Python 3.8+ - Package manager (npm, pnpm, or pip) - Groq account at [console.groq.com](https://console.groq.com) - API key from GroqCloud console (Settings > API Keys) ## Instructions ### Step 1: Install the SDK ```bash set -euo pipefail # TypeScript / JavaScript npm install groq-sdk # Python pip install groq ``` ### Step 2: Get Your API Key 1. Go to [console.groq.com/keys](https://console.groq.com/keys) 2. Click "Create API Key" 3. Copy the key (starts with `gsk_`) 4. Store it securely -- you cannot view it again ### Step 3: Configure Environment ```bash # Set environment variable (recommended) export GROQ_API_KEY="gsk_your_key_here" # Or create .env file (add .env to .gitignore first) echo 'GROQ_API_KEY=gsk_your_key_here' >> .env ``` ### Step 4: Verify Connection (TypeScript) ```typescript import Groq from "groq-sdk"; const groq = new Groq({ apiKey: process.env.GROQ_API_KEY, }); async function verify() { const models = await groq.models.list(); console.log("Connected! Available models:"); for (const model of models.data) { console.log(` ${model.id} (owned by ${model.owned_by})`); } } verify().catch(console.error); ``` ### Step 5: Verify Connection (Python) ```python import os from groq...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

groq-security-basics

Apply Groq security best practices for API key management and data protection. Use when securing API keys, implementing least privilege access, or auditing Groq security configuration. Trigger with phrases like "groq security", "groq secrets", "secure groq", "groq API key security".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-install-auth

Install and configure Klaviyo Node.js SDK with API key authentication. Use when setting up a new Klaviyo integration, configuring API keys, or initializing the klaviyo-api package in your project. Trigger with phrases like "install klaviyo", "setup klaviyo", "klaviyo auth", "configure klaviyo API key", "klaviyo SDK setup".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-install-auth

Install and configure Apollo.io API authentication. Use when setting up a new Apollo integration, configuring API keys, or initializing Apollo client in your project. Trigger with phrases like "install apollo", "setup apollo api", "apollo authentication", "configure apollo api key".

2,266 Updated today
jeremylongshore
AI & Automation Featured

assemblyai-install-auth

Install and configure AssemblyAI SDK authentication. Use when setting up a new AssemblyAI integration, configuring API keys, or initializing the assemblyai npm package in your project. Trigger with phrases like "install assemblyai", "setup assemblyai", "assemblyai auth", "configure assemblyai API key".

2,266 Updated today
jeremylongshore
AI & Automation Featured

groq-hello-world

Create a minimal working Groq chat completion example. Use when starting a new Groq integration, testing your setup, or learning basic Groq API patterns. Trigger with phrases like "groq hello world", "groq example", "groq quick start", "simple groq code".

2,266 Updated today
jeremylongshore