Full-Time

Staff Platform Engineer

Service Infrastructure

Together AI

Together AI

201-500 employees

Open-source AI research via decentralized cloud

Compensation Overview

$240k - $280k/yr

+ Equity

San Francisco, CA, USA

In Person

Category
DevOps & Infrastructure (1)
Required Skills
Kubernetes
Python
Computer Networking
Argo CD
TypeScript
AWS
Go
Terraform
Observability
Route 53
Helm

Get referred to Together AI

See people who can refer or advise you

Requirements
  • 7+ years of professional experience in platform engineering, service infrastructure, SRE, distributed systems, cloud infrastructure, or related roles.
  • Deep production experience with Kubernetes, including EKS, Helm, ArgoCD/Argo Rollouts, ingress, autoscaling, secrets, service identity, networking, and progressive delivery.
  • Strong Terraform experience, including module design, infrastructure CI/CD, policy enforcement, production applies, and safe self-service workflows.
  • Experience operating networking and edge infrastructure such as CDNs, ALBs/NLBs, DNS, TLS, ingress/egress controls, and traffic management.
  • Proficiency in one or more programming languages used for infrastructure tooling and automation, such as Go, Python, TypeScript, or similar.
  • AWS experience, ideally including EKS, IAM, VPC networking, load balancing, Route 53, CloudFront, ECR, and related service infrastructure.
  • Direct experience with observability systems, including metrics, logs, traces, dashboards, alerting, SLOs, and incident response.
  • Proven ability to lead cross-functional technical initiatives across product engineering, infrastructure, networking, and security teams.
  • Strong written communication skills, with experience producing clear design docs, migration plans, operational guidance, and technical standards.
  • Staff-level judgment: you can define ambiguous problems, make pragmatic tradeoffs, influence without authority, and leave both systems and teams better than you found them.
Responsibilities
  • Own the technical direction for service infrastructure within Product Foundations, including Kubernetes, AWS, Terraform, CDNs, ALBs, DNS, IAM, service networking, and related operational patterns.
  • Up-level existing Product Foundations services by improving reliability, operability, deployment safety, infrastructure consistency, and production readiness.
  • Partner deeply with API Platform and UI Platform on networking, DNS, CDN, load balancing, delivery, and gateway patterns for critical customer-facing interfaces.
  • Work closely with Infrastructure, Networking, and Security teams to bring company-wide platform standards into Product Foundations and contribute PF requirements back into shared frameworks.
  • Help drive cross-company infrastructure initiatives that Product Foundations depend on or help maintain, including Terraform CI/CD, Kubernetes networking, zero-trust service communication, policy-as-code, and cross-DC/provider networking.
  • Build and evolve reusable service infrastructure primitives, including Helm charts, Terraform modules, GitHub Actions/GitOps workflows, service scaffolding, runbooks, and documentation.
  • Establish durable technical standards through design docs, architecture reviews, mentorship, and hands-on implementation that help Together scale services across teams, regions, and cloud environments.

Together AI provides open-source AI tools and decentralized cloud services to train, fine-tune, and deploy generative models for researchers, developers, and organizations. It runs tasks in the cloud where users run training jobs, manage model versions, and deploy applications via subscriptions and usage fees. It differentiates itself by prioritizing open-source, transparency, and a decentralized cloud approach instead of a proprietary stack. Its goal is to broaden access to powerful AI and build open, verifiable AI systems that benefit society through shared technology.

Company Size

201-500

Company Stage

Series C

Total Funding

$1.3B

Headquarters

Menlo Park, California

Founded

2022

Get referred to Together AI

See people who can refer or advise you

Simplify Jobs

Simplify's Take

What believers are saying

  • $800 million Series C supports aggressive infrastructure scaling.
  • Enterprise demand and annualized bookings exceed $1.15 billion.
  • Open-source model adoption tripling boosts inference demand.

What critics are saying

  • Hyperscalers and model labs can compress pricing and margin.
  • GPU scarcity can delay expansion and disrupt service levels.
  • Valuation at $8.3 billion leaves little room for execution misses.

What makes Together AI unique

  • Open-weight inference and training across 200+ models.
  • Token pricing mirrors developer workflows, not hourly GPU rentals.
  • Provisioned Throughput adds reserved capacity with 99% uptime SLA.

Help us improve and share your feedback! Did you find this helpful?

Benefits

Health Insurance

Company Equity

Growth & Insights and Company News

Headcount

6 month growth

0%

1 year growth

-1%

2 year growth

0%
Webhani Inc.
Jul 28th, 2026
Kimi K3 open weights: when self-hosting a frontier model actually makes sense.

Kimi K3 open weights: when self-hosting a frontier model actually makes sense. webhani · 2026-07-28 On July 26, 2026, Moonshot AI released Kimi K3 with full open weights - a day ahead of its announced July 27 target. At 2.8 trillion parameters with a 1,048,576-token (1 million) context window, it is now the largest open-weight model publicly available. The weight download is approximately 1.4TB using MXFP4 quantization. Within hours, Together AI and Modal announced day-zero hosted inference access. This is not just a release milestone; it signals a real shift in how teams evaluate where to run frontier LLM workloads. For years, the architecture decision was simpler: if you needed state-of-the-art reasoning, you used a closed API (OpenAI, Anthropic, etc.). If you self-hosted, you accepted a meaningful capability trade-off for control and data residency. Kimi K3 breaks that binary. It is a frontier model with capability metrics that compete with the best closed offerings, and it is available as downloadable weights. That opens a different decision tree for teams - especially in regulated industries, in Japan and Asia more broadly, and anywhere data sovereignty or latency isolation matter. But "it's available as open weights" does not mean "you should run it yourself." The distance between "weights available" and "running in production at scale" is measured in infrastructure complexity, operational burden, and total cost. This post walks through that distance. Moonshot has published technical claims about Kimi K3's design. Two aspects are worth isolating: Kimi Delta Attention is described as delivering up to 6.3x faster decoding at 1M token context compared to standard attention. For teams running inference workloads where latency is a hard constraint - real-time chat, live code completion, interactive search - this is material. However, this is Moonshot's own benchmark claim; it is not independently verified by third parties yet. Treat it as a signal to evaluate, not as a guaranteed specification. Attention Residuals reportedly improve training efficiency by approximately 25% at less than 2% additional computational cost. This matters if your team is fine-tuning Kimi K3 for a specialized domain. For inference-only deployment, it is less directly relevant, though the engineering rigor it signals might correlate with inference stability. The larger point is this: a 2.8T-parameter model at 1M context is not a lightweight undertaking. Running this in production requires: * Multi-GPU / multi-node infrastructure: A single GPU cannot hold the model. You need tensor parallelism or pipeline parallelism across multiple cards, often across multiple machines. This is not a "run it on a beefy server" problem; it is a distributed-systems problem. * Quantization trade-offs: The 1.4TB figure assumes MXFP4 quantization. Every quantization step trades some inference quality for memory footprint and speed. You must evaluate whether the quality loss affects your use case. * Ongoing operations: Load balancing, fault recovery, scaling to handle traffic spikes, monitoring for model drift or inference anomalies - these are not one-time setup tasks. They are continuous responsibilities. For comparison: a well-managed Llama 3.1 8B deployment (a decade older, far smaller) still requires careful infrastructure work. Kimi K3 is orders of magnitude larger. webhani inc. advise clients through a three-axis evaluation. Here is a simplified version you can adapt: This is illustrative, not prescriptive. The logic is: self-hosting Kimi K3 only makes sense if (1) you have the ops maturity to run a distributed system, (2) you actually save money after factoring in infrastructure and labor, and (3) you have a genuine constraint - data residency, latency isolation, or repeated fine-tuning - that API access cannot meet. If the cost analysis or data-residency requirement points toward self-hosting, walk through these before committing: 1. Do you have people who can build and maintain a distributed inference cluster? This is not a DevOps hire; it is a deep-ML-infrastructure hire. Autoscaling, fault recovery, load balancing across model shards - these require someone who has shipped this before. If you do not have that person, add 6-12 months and considerable cost to the timeline. 2. Have you quantified the quality drop from MXFP4 quantization? Run your critical workloads (e.g., code generation, summarization, retrieval-augmented generation) against both the full-precision and quantized versions. Measure the difference in your own metrics - not benchmark scores, but whether the output actually works for you. If quality drops 15%, and your application is latency-tolerant, that trade-off might be fine. If quality drops 40% and your application is mission-critical, it is not. 3. What is your fallback if the self-hosted cluster has a cascading failure? Stateless inference workloads can survive a node failure if you have redundancy and a good load balancer. But a 2.8T-parameter model split across 4 GPUs is not easily "redundant" - you cannot just add another replica with the flip of a switch. You need a pre-planned runbook. Often, the runbook is "fail over to a hosted API for 48 hours while we rebuild" - which means you need a contract with a hosted provider as a backup. 4. Is your codebase and workflow stack actually designed for a modular model provider? If your application is hardcoded to use Claude or OpenAI, swapping to Kimi K3 means refactoring your LLM integration layer. That is not a small task; it is architecture work. Do not underestimate it. 5. Have you tested the fine-tuning workflow if you plan to do it? Kimi K3 supports fine-tuning. The process is not the same as fine-tuning Llama 3.1. You need to work through Moonshot's fine-tuning infrastructure, validate that the resulting weights are compatible with your inference setup, and measure quality on your own data. This is a 4-8 week effort, not a weekend project. Most teams should start with hosted Kimi K3 API access - via Together AI, Modal, or directly via Kimi's API - unless they have very specific constraints: * Data residency: If your data cannot leave a specific geography or jurisdiction, self-hosting may be required. But verify that first; many hosted providers now offer regional deployments. * **Latency: **If your application requires sub-50ms end-to-end latency and network round trips to a remote API kill it, self-hosting in your own data center is justified. But quantify this carefully; most applications tolerate 200ms latency without users noticing. * Cost at massive scale: If you are processing billions of tokens per month, the math shifts. At that scale, infrastructure cost amortizes and self-hosting becomes cheaper. But at that scale, you already have the ops team to run it. * Fine-tuning at rapid iteration speed: If you are repeatedly fine-tuning Kimi K3 and pushing a new version to production daily, self-hosting lets you iterate without API latency. This is rare; most teams fine-tune quarterly or less often. For the majority of engineering teams - especially those not at trillion-token-per-month scale - hosted API access is simpler, lower-risk, and often cheaper once you factor in labor. * Kimi K3 open weights represents a real inflection: frontier-tier capability is now available outside of closed APIs. This is valuable for data sovereignty and latency-critical workloads, but does not mean "download it and run it in production." * Self-hosting Kimi K3 is a distributed-systems problem, not a model problem. You need deep infrastructure maturity, quantization evaluation, redundancy planning, and operational runbooks before committing. * The cost comparison is not "model weights are free" vs. "API is expensive." It is "self-hosting infrastructure + ongoing labor + risk of cascading failure" vs. "simple API call + predictable per-token cost." For most teams, the API wins. * If data residency or sub-50ms latency is a hard constraint, self-hosting is justified. Otherwise, start with hosted API access and migrate to self-hosting only if the token volume or iteration speed makes the cost-benefit clear. * Smaller open models (Llama 3.1 8B, Mistral 7B) are far easier to self-host and are sufficient for many workloads. Do not jump to Kimi K3 just because it exists. References: Moonshot AI's Kimi K3 announcement and technical documentation (July 26-27, 2026), public reporting on Together AI and Modal's hosted Kimi K3 offerings, Moonshot's published claims about Kimi Delta Attention and Attention Residuals efficiency.

TEI
Apr 3rd, 2026
Together AI launches Wan 2.7 video suite at $0.10 per second.

Together AI launches Wan 2.7 video suite at $0.10 per second. Together AI has rolled out Alibaba's Wan 2.7 video generation model on its cloud platform, pricing the text-to-video capability at $0.10 per second of generated footage. The deployment marks the first major cloud availability for the four-model suite that Alibaba released in late March. The text-to-video model, accessible via the endpoint Wan-AI/wan2.7-t2v, supports 720p and 1080p resolution with outputs ranging from 2 to 15 seconds. Audio input can drive generation, and multi-shot narrative control works directly through prompt language - a meaningful upgrade over basic prompt-to-video systems that force creators into fragmented workflows. What's actually shipping. Right now, only text-to-video is live. Together AI says image-to-video and reference-to-video capabilities are "coming soon," with video editing tools to follow. The image-to-video model will support first-frame, first-and-last-frame, and continuation generation - useful for storyboarding workflows. A 3x3 grid-to-video feature targets teams building structured content from static assets. Reference-to-video gets more interesting for production work. It'll accept both reference images and reference videos as inputs, handling multi-character interactions and complex scene composition at up to 1080p for 10-second clips. The editing play. Video Edit, the fourth model in the suite, addresses what's arguably the biggest pain point in AI video: the inability to revise without starting from scratch. Together AI's implementation will support instruction-based editing via text, reference image-based modifications, style transfer, and temporal feature cloning - motion, camera work, effects lifted from source media. For creative teams, keeping these capabilities within one API surface eliminates the handoff chaos that currently plagues AI video production. Most workflows today involve generating in one tool, editing in another, and manually patching the results. Competitive positioning. The $0.10 per second pricing puts Together AI in striking distance of competitors, though direct comparisons depend heavily on resolution and duration parameters. Wan 2.7 itself has drawn attention since its March release - reviews have called it potentially the strongest AI video model of 2026, though some skepticism about the hype remains. Alibaba built Wan 2.7 within its Qwen ecosystem, and earlier versions (2.1 and 2.2) were open-sourced. Whether 2.7 follows that path hasn't been confirmed, but the model is now accessible through multiple cloud providers including Atlas Cloud and WaveSpeedAI alongside Together AI. Integration details. For developers already on Together AI's platform, adding video generation requires no new authentication or billing setup. The same SDKs work across text, image, and video inference. The company offers serverless endpoints for development with volume pricing available for production workloads. Teams evaluating the technology can test directly in Together AI's playground before committing to API integration. Full documentation covers parameters including audio inputs, resolution control, and the polling loop required for asynchronous video generation jobs.

CoinsNews
Mar 17th, 2026
Mamba-3 SSM drops with inference-first design beating transformers at decode.

Mamba-3 SSM drops with inference-first design beating transformers at decode. Together.ai releases Mamba-3, an open-source state space model built for inference that outperforms Mamba-2 and matches Transformer decode speeds at 16K sequences. (Read More)

Together AI
Mar 16th, 2026
Together AI at NVIDIA GTC 2026: explore our latest innovations across research and products.

Together AI at NVIDIA GTC 2026: explore its latest innovations across research and products. Join Together Computer Inc from March 16-19 in San Jose as Together Computer Inc showcase the latest research breakthroughs and new platform capabilities across open source LLMs, voice AI, production-scale inference and AI factories. This year, Together AI is excited to be part of NVIDIA GTC with multiple major announcements and conversations shaping the AI ecosystem - from cutting-edge model releases to new voice AI capabilities, and technical sessions with its research and engineering leaders. If you're attending GTC, Together Computer Inc'd love to connect. Key announcements. At GTC 2026, several of the announcements Together Computer Inc is participating in highlight a core theme: AI systems are becoming more open, agentic, and production ready. Together AI, the AI Native Cloud, is designed to support this shift - helping developers train, shape, and deploy large-scale AI systems with the performance and cost-efficiency required for real-world applications. Together Computer Inc is making multiple announcements today at GTC. Use NVIDIA Dynamo 1.0 in Together AI. NVIDIA has launched NVIDIA Dynamo 1.0, an open-source software for generative and agentic inference at scale. Together Computer Inc is excited to work with NVIDIA on Dynamo 1.0 and have already been using Dynamo as part of its inference stack to deliver more optimized performance in production use cases. At Together AI, Together Computer Inc is committed to open innovation and are looking forward to exploring use cases that Dynamo 1.0 can be applied to. Connect to Together's high-performance inference through NVIDIA OpenShell. Together AI and NVIDIA are working together on NVIDIA NemoClaw - an open source stack that simplifies running OpenClaw always-on assistants, more safely, with a single command. As part of the NVIDIA Agent Toolkit, it installs the NVIDIA OpenShell runtime - a secure environment for running autonomous agents, and open source models like NVIDIA Nemotron. Together is excited to host NVIDIA OpenShell runtime created for customers who want high performance models to build agents. Together AI has a model library with over 150 optimized models that can now be easily accessed via NemoClaw. Paired with Together's dedicated endpoints, developers get the speed and cost efficiency of its inference engine at production scale. Leverage NVIDIA Nemotron 3 Super for multi-agent workflows. NVIDIA Nemotron 3 Super is a hybrid mixture-of-experts model designed for high-performance reasoning and multi-agent workflows. It combines a Mamba-Transformer architecture with a 1M-token context window to support long-horizon reasoning and complex agent interactions. With 120B total parameters (12B active per token), the model is optimized to run multiple collaborating agents efficiently - even on a single GPU - making it well suited for AI-native workflows like software development agents, financial analysis, and cybersecurity automation. Nemotron 3 Super can be deployed through its Dedicated Model Inference, providing developers with a simple and scalable way to run advanced reasoning models in production. Build voice agents with NVIDIA Parakeet TDT 0.6B V3. As part of its recent voice solutions launch, NVIDIA Parakeet TDT 0.6b V3 automatic speech recognition (ASR) model is now available in the Together AI Model Library, giving developers access to high-performance, low-latency transcription optimized for real-time voice applications. By combining Parakeet's ASR accuracy with Together's high-performance inference infrastructure, AI natives can build production-ready voice agents that deliver fast, reliable, and scalable transcription. Together sessions. The Together AI team, along with customers like Cursor and Decagon, will share insights across multiple GTC sessions, covering topics from production inference to open AI research. Sessions include: * Engineering real-world LLM inference: Bridging open-source and production systems March 17 - 2:00 PM Yineng Zhang - Principal AI Researcher, Together AI * Hard-Won Lessons From Production Inference at Scale March 17 - 4:00 PM Yuchen Wu, Engineer, Cursor | Ce Zhang - CTO, Together AI * Build Trust and Discovery Through Open-Source AI in Research March 18 - 2:00 PM Percy Liang - Co-Founder, Together AI * Under the Hood of Building and Scaling AI-Native Applications March 18 - 4:00 PM Alan Yiu, VP of Product, Decagon | Charles Zedlewski - Chief Product Officer, Together AI Visit Together Computer Inc at booth #1213. Beyond sessions, the Together team will be hosting booth activations and side events throughout the week, including curated executive meetups focused on next-generation AI infrastructure and AI-native applications. Stop by to: * See live demos of Together AI infrastructure and models * Learn how teams are scaling production inference and agentic systems * Meet researchers and engineers building the future of open AI models and infrastructure

Asia Token Fund
Mar 13th, 2026
Together AI Launches Voice Agent Platform With Sub-700ms Latency

Together AI launches voice agent platform with sub-700ms latency. Together AI rolled out a unified voice agent platform that keeps speech-to-text, language models, and text-to-speech processing on the same infrastructure cluster. The $3.3 billion AI cloud startup claims the setup delivers end-to-end latency under 700 milliseconds - fast enough for natural conversation flow. The platform integrates natively with Deepgram for transcription and Cartesia for voice synthesis, both running on Together's co-located servers rather than bouncing audio across multiple cloud providers. Why co-location matters for voice. Most production voice systems stitch together separate vendors for each pipeline stage. Audio hits one provider for transcription, routes to another for the LLM response, then bounces to a third for speech synthesis. Each handoff adds network latency and failure points. Together's pitch: keep everything in the same datacenter. The company reports sub-500ms latency in optimal conditions, though the 700ms figure represents their stated ceiling for end-to-end processing. "Voice agents live or die by latency, and every network hop between providers is a place where the experience breaks down," said Abe Pursell, Deepgram's VP of Partnerships. Model flexibility without the patchwork. The platform supports Whisper Large v3, Minimax Speech 2.6 Turbo, Rime Arcana, and Kokoro alongside Together's full LLM catalog. Developers can swap components without rebuilding integrations - useful for teams testing different voice characteristics or transcription accuracy for specific use cases. Cartesia brings its Sonic-3 and Sonic-2 TTS models to the platform. Deepgram contributes Nova-3, Nova-3 Multilingual for transcription, Flux for conversational STT, and Aura-2 for synthesis. Unlike opaque speech-to-speech systems, Together's modular approach preserves access to intermediate transcripts and response text. Teams can inspect, modify, and route data mid-stream - a requirement for many enterprise compliance workflows. Enterprise requirements and production use. The platform targets regulated industries with zero data retention options, SOC 2 Type II certification, HIPAA compliance, and dedicated data residency. Decagon, which runs customer support voice agents handling billing inquiries and technical troubleshooting, already operates on the stack. Together AI raised $305 million in February 2025 at a $3.3 billion valuation, with reports suggesting the company is now in talks to raise at $7.5 billion. The company has surpassed 450,000 developers and crossed $100 million in annualized revenue. The voice platform launch represents Together's expansion beyond its core LLM inference business into the growing voice AI market, where latency and reliability remain persistent pain points for production deployments.