> ## Documentation Index
> Fetch the complete documentation index at: https://docs.together.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# How to use Qwen Code with Together AI for enhanced development workflow

> Learn how to configure Qwen Code, a powerful AI-powered command-line workflow tool, with Together AI models to supercharge your coding workflow with advanced code understanding and automation.

# How to use Qwen Code with Together AI for enhanced development workflow

Qwen Code is a powerful command-line AI workflow tool specifically optimized for code understanding, automated tasks, and intelligent development assistance. While it comes with built-in Qwen OAuth support, you can also configure it to use Together AI's extensive model selection for even more flexibility and control over your AI coding experience.

In this guide, we'll show you how to set up Qwen Code with Together AI's powerful models like DeepSeek V3, Llama 3.3 70B, and specialized coding models to enhance your development workflow beyond traditional context window limits.

## Why Use Qwen Code with Together AI?

* **Model Choice**: Access to a wide variety of models beyond just Qwen models
* **Transparent Pricing**: Clear token-based pricing with no surprises
* **Enterprise Control**: Use your own API keys and have full control over usage
* **Specialized Models**: Access to coding-specific models like Qwen3-Coder and DeepSeek variants

## 1. Install Qwen Code

Install Qwen Code globally via npm:

```bash theme={null}
npm install -g @qwen-code/qwen-code@latest
```

Verify the installation:

```bash theme={null}
qwen --version
```

**Prerequisites**: Ensure you have Node.js version 20 or higher installed.

## 2. Configure Together AI

Instead of using the default Qwen OAuth, you'll configure Qwen Code to use Together AI's OpenAI-compatible API.

### Method 1: Environment Variables (Recommended)

Set up your environment variables:

```bash theme={null}
export OPENAI_API_KEY="your_together_api_key_here"
export OPENAI_BASE_URL="https://api.together.ai/v1"
export OPENAI_MODEL="your_chosen_model"
```

### Method 2: Project .env File

Create a `.env` file in your project root:

```env theme={null}
OPENAI_API_KEY=your_together_api_key_here
OPENAI_BASE_URL=https://api.together.ai/v1
OPENAI_MODEL=your_chosen_model
```

### Get Your Together AI Credentials

1. **API Key**: Get your [Together AI API key](https://api.together.ai/settings/projects/~current/api-keys)
2. **Base URL**: Use `https://api.together.ai/v1` for Together AI
3. **Model**: Choose from [Together AI's model catalog](https://www.together.ai/models)

## 3. Choose Your Model

Select from Together AI's powerful model selection:

### Recommended Models for Coding

**For General Development:**

* `deepseek-ai/DeepSeek-V3` - Excellent balance of performance and cost (\$1.25/M tokens)
* `meta-llama/Llama-3.3-70B-Instruct-Turbo` - Fast and cost-effective (\$0.88/M tokens)

**For Advanced Coding Tasks:**

* `Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8` - Specialized for complex coding (\$2.00/M tokens)
* `deepseek-ai/DeepSeek-R1` - Advanced reasoning capabilities ($3.00-$7.00/M tokens)

### Example Configuration

```bash theme={null}
export OPENAI_API_KEY="your_together_api_key"
export OPENAI_BASE_URL="https://api.together.ai/v1"
export OPENAI_MODEL="deepseek-ai/DeepSeek-V3"
```

## 4. Launch and Use Qwen Code

Navigate to your project and start Qwen Code:

```bash theme={null}
cd your-project/
qwen
```

You're now ready to use Qwen Code with Together AI models!

## Advanced Tips

### Token Optimization

* Use `/compress` to maintain context while reducing token usage
* Set appropriate session limits based on your Together AI plan
* Monitor usage with `/stats` command

### Model Selection Strategy

* Use **DeepSeek V3** for general coding tasks
* Switch to **Qwen3-Coder** for complex code generation
* Use **Llama 3.3 70B** for faster, cost-effective operations

### Context Window Management

Qwen Code is designed to handle large codebases beyond traditional context limits:

* Automatically chunks and processes large files
* Maintains conversation context across multiple API calls
* Optimizes token usage through intelligent compression

## Troubleshooting

### Common Issues

**Authentication Errors:**

* Verify your Together AI API key is correct
* Ensure `OPENAI_BASE_URL` is set to `https://api.together.ai/v1`
* Check that your API key has sufficient credits

**Model Not Found:**

* Verify the model name exists in [Together AI's catalog](https://www.together.ai/models)
* Ensure the model name is exactly as listed (case-sensitive)

## Getting Started Checklist

1. ✅ Install Node.js 20+ and Qwen Code
2. ✅ Get your Together AI API key
3. ✅ Set environment variables or create `.env` file
4. ✅ Choose your preferred model from Together AI
5. ✅ Launch Qwen Code in your project directory
6. ✅ Start coding with AI assistance!

That's it! You now have Qwen Code powered by Together AI's advanced models, giving you unprecedented control over your AI-assisted development workflow with transparent pricing and model flexibility.
