together-install-auth
Install and configure Together AI SDK/CLI authentication. Use when setting up a new Together AI integration, configuring API keys, or initializing Together AI in your project. Trigger with phrases like "install together", "setup together", "together auth", "configure together API key".
claude-code
Allowed Tools
ReadWriteEditBash(npm:*)Bash(pip:*)Grep
Provided by Plugin
together-pack
Claude Code skill pack for Together AI (18 skills)
Installation
This skill is included in the together-pack plugin:
/plugin install together-pack@claude-code-plugins-plus
Click to copy
Instructions
Together AI Install & Auth
Overview
Set up Together AI SDK/CLI and configure authentication credentials.
Prerequisites
- Node.js 18+ or Python 3.10+
- Package manager (npm, pnpm, or pip)
- Together AI account with API access
- API key from Together AI dashboard
Instructions
Step 1: Install SDK
# Node.js
npm install @together/sdk
# Python
pip install together
Step 2: Configure Authentication
# Set environment variable
export TOGETHER_API_KEY="your-api-key"
# Or create .env file
echo 'TOGETHER_API_KEY=your-api-key' >> .env
Step 3: Verify Connection
// Test connection code here
Output
- Installed SDK package in node_modules or site-packages
- Environment variable or .env file with API key
- Successful connection verification output
Error Handling
| Error | Cause | Solution |
|---|---|---|
| Invalid API Key | Incorrect or expired key | Verify key in Together AI dashboard |
| Rate Limited | Exceeded quota | Check quota at https://docs.together.com |
| Network Error | Firewall blocking | Ensure outbound HTTPS allowed |
| Module Not Found | Installation failed | Run npm install or pip install again |
Examples
TypeScript Setup
import { TogetherAIClient } from '@together/sdk';
const client = new TogetherAIClient({
apiKey: process.env.TOGETHER_API_KEY,
});
Python Setup
from together import TogetherAIClient
client = TogetherAIClient(
api_key=os.environ.get('TOGETHER_API_KEY')
)
Resources
Next Steps
After successful auth, proceed to together-hello-world for your first API call.