langsmith 0.0.1-0 → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli/main.cjs CHANGED
@@ -269,7 +269,6 @@ const statusCommand = new commander_1.Command("status")
269
269
  .description("Get the status of the LangSmith server")
270
270
  .action(async () => (await PlusCommand.create()).status());
271
271
  program
272
- .command("plus")
273
272
  .description("Manage the LangSmith server")
274
273
  .addCommand(startCommand)
275
274
  .addCommand(stopCommand)
package/dist/cli/main.js CHANGED
@@ -243,7 +243,6 @@ const statusCommand = new Command("status")
243
243
  .description("Get the status of the LangSmith server")
244
244
  .action(async () => (await PlusCommand.create()).status());
245
245
  program
246
- .command("plus")
247
246
  .description("Manage the LangSmith server")
248
247
  .addCommand(startCommand)
249
248
  .addCommand(stopCommand)
package/dist/cli/main.ts CHANGED
@@ -282,7 +282,6 @@ const statusCommand = new Command("status")
282
282
  .action(async () => (await PlusCommand.create()).status());
283
283
 
284
284
  program
285
- .command("plus")
286
285
  .description("Manage the LangSmith server")
287
286
  .addCommand(startCommand)
288
287
  .addCommand(stopCommand)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "langsmith",
3
- "version": "0.0.1-0",
3
+ "version": "0.0.1",
4
4
  "description": "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.",
5
5
  "files": [
6
6
  "dist/",
@@ -23,7 +23,7 @@
23
23
  "type": "module",
24
24
  "main": "./dist/index.js",
25
25
  "bin": {
26
- "langchain": "./dist/cli/main.cjs"
26
+ "langsmith": "./dist/cli/main.cjs"
27
27
  },
28
28
  "types": "./dist/index.d.ts",
29
29
  "scripts": {