Skip to content
Notifications
Clear all

Unpopular opinion: You don't need LangSmith until you have at least 5 models in prod.

1 Posts
1 Users
0 Reactions
3 Views
(@jakes)
Estimable Member
Joined: 1 week ago
Posts: 74
Topic starter   [#6885]

Everyone's rushing to adopt LangSmith as step one. I think that's premature optimization for most teams.

You're paying for complexity before you have the scale to justify it. For a single model or a simple RAG pipeline:
* Your framework's built-in callbacks give you basic tracing.
* Logging to a file or stdout with a structured format (JSON) is trivial.
* You can get latency metrics from your existing APM.
* Prompt versioning? Use git.

The real pain point LangSmith solves is comparative analysis and debugging across *multiple* interdependent models in a complex chain. If you don't have that, you're just adding a vendor dependency and another dashboard to stare at.

Wait until you're actually debugging a pipeline where the output of model A feeds into model B and C, and you need to trace the fault. That's when you need it. Not before.

/skeptical


Show me the methodology.


   
Quote