together-core-workflow-b

Solid

Together AI core workflow b for inference, fine-tuning, and model deployment. Use when working with Together AI's OpenAI-compatible API. Trigger: "together core workflow b".

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

# Together AI — Fine-Tuning & Model Management ## Overview Create fine-tuning jobs, monitor training runs, and deploy custom models on Together AI's infrastructure. Use this workflow when you need to customize an open-source model on your own data, track training metrics, manage model versions, or set up dedicated inference endpoints for production. This is the secondary workflow — for basic inference and chat completions, see `together-core-workflow-a`. ## Instructions ### Step 1: Upload Training Data and Create a Fine-Tune Job ```typescript import Together from 'together-ai'; const client = new Together({ apiKey: process.env.TOGETHER_API_KEY }); const file = await client.files.upload({ file: fs.createReadStream('training.jsonl'), purpose: 'fine-tune', }); const job = await client.fineTuning.create({ training_file: file.id, model: 'meta-llama/Llama-3.3-70B-Instruct-Turbo', n_epochs: 3, learning_rate: 1e-5, batch_size: 4, suffix: 'support-agent-v2', }); console.log(`Fine-tune job ${job.id} — status: ${job.status}`); ``` ### Step 2: Monitor Training Progress ```typescript let status = await client.fineTuning.retrieve(job.id); while (!['completed', 'failed', 'cancelled'].includes(status.status)) { console.log(`Status: ${status.status} — ${status.training_steps_completed}/${status.total_steps} steps`); if (status.metrics) console.log(` Loss: ${status.metrics.training_loss.toFixed(4)}`); await new Promise(r => setTimeout(r, 30_000)); status = awa...

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