You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For more details, refer to the [data retention conceptual docs](/langsmith/administration-overview#data-retention).
113
+
For more details on traces, refer to the [data retention conceptual docs](/langsmith/administration-overview#data-retention). For more details on Agent Runs, refer to [LangSmith Deployment billing](#langsmith-deployment-billing).
113
114
114
115
115
116
#### Invoices
@@ -179,6 +180,14 @@ For example, this is the expected configuration to keep 10% of all traces for ex
179
180
180
181
If you want to keep a subset of traces for **longer than 400 days** for data collection purposes, you can create another run rule that sends some runs to a dataset of your choosing. A dataset allows you to store the trace inputs and outputs (e.g., as a key-value dataset), and will persist indefinitely, even after the trace gets deleted.
181
182
183
+
### LangSmith Deployment billing
184
+
185
+
In addition to traces, LangSmith charges for deployed agents via LangSmith Deployment (formerly LangGraph Platform).
186
+
187
+
-**Agent Runs**: An Agent Run is one end-to-end invocation of a deployed LangGraph agent and is billed at $0.005 each. Nodes and subgraphs within a single agent execution are not charged separately. Calls to other LangGraph agents are charged separately to the deployment hosting the called agent. When using human-in-the-loop with interrupts, resuming after an interrupt creates a separate Agent Run.
188
+
-**Deployment Uptime**: You are also charged for the time your deployment's database is live and persisting state. See the [pricing page](https://www.langchain.com/pricing) for uptime costs by deployment type (Development vs Production).
189
+
190
+
For high-volume deployment usage, please [contact our sales team](https://www.langchain.com/contact-sales) to discuss custom pricing options.
Copy file name to clipboardExpand all lines: src/langsmith/faq.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,6 +151,6 @@ Yes! You can use the [development version of Agent Server](/langsmith/local-serv
151
151
This will connect to the Studio frontend hosted as part of LangSmith.
152
152
If you set an environment variable of `LANGSMITH_TRACING=false`, then no traces will be sent to LangSmith.
153
153
154
-
### What does "nodes executed" mean for LangSmith usage?
154
+
### What is an Agent Run?
155
155
156
-
**Nodes Executed**is the aggregate number of nodes in a LangGraph application that are called and completed successfully during an invocation of the application. If a node in the graph is not called during execution or ends in an error state, these nodes will not be counted. If a node is called and completes successfully multiple times, each occurrence will be counted.
156
+
An Agent Run is one end-to-end invocation of a LangGraph agent deployed via LangSmith Deployment. Nodes and subgraphs are not charged separately. Calls to other LangGraph agents (through RemoteGraph or the LangGraph SDK or the API directly) are charged separately, to the deployment that hosts the agent being called. An interrupt for human-in-the-loop creates a separate Agent Run when resuming.
Copy file name to clipboardExpand all lines: src/langsmith/pricing-faq.mdx
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,12 @@ A seat is a distinct user inside your organization. We consider the total number
25
25
26
26
A trace is one complete invocation of your application chain or agent, evaluator run, or playground run. Here is an [example](https://smith.langchain.com/public/17c24270-9f74-47e7-b70c-d508afc448fa/r) of a single trace.
27
27
28
+
### What is an Agent Run?
29
+
30
+
An Agent Run is one end-to-end invocation of a LangGraph agent deployed via LangSmith Deployment. Nodes and subgraphs within a single agent execution are not charged separately. Calls to other LangGraph agents (through RemoteGraph or the LangGraph SDK or the API directly) are charged separately, to the deployment that hosts the agent being called. An interrupt for human-in-the-loop creates a separate Agent Run when resuming.
31
+
32
+
Agent Runs are billed at $0.005 each. For high-volume usage, please [contact our sales team](https://www.langchain.com/contact-sales) to discuss custom pricing options.
33
+
28
34
### What is an ingested event?
29
35
30
36
An ingested event is any distinct, trace-related data sent to LangSmith. This includes:
0 commit comments