langsmith 0.0.11 → 0.0.13

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.
@@ -11,8 +11,6 @@ services:
11
11
  depends_on:
12
12
  - langchain-backend
13
13
  - langchain-playground
14
- volumes:
15
- - ./conf/nginx.conf:/etc/nginx/default.conf:ro
16
14
  langchain-backend:
17
15
  image: langchain/${_LANGSMITH_IMAGE_PREFIX-}langchainplus-backend:latest
18
16
  environment:
package/dist/cli/main.cjs CHANGED
@@ -221,7 +221,11 @@ class SmithCommand {
221
221
  }
222
222
  command.push("up", "--quiet-pull", "--wait");
223
223
  await this.executeCommand(command);
224
- console.info("LangSmith server is running at http://localhost:1984. To connect locally, set the following environment variable when running your LangChain application.");
224
+ console.info("LangSmith server is running at http://localhost:1984.\n" +
225
+ "To view the app, navigate your browser to http://localhost:80" +
226
+ "\n\nTo connect your LangChain application to the server" +
227
+ " locally, set the following environment variable" +
228
+ " when running your LangChain application.");
225
229
  console.info("\tLANGCHAIN_TRACING_V2=true");
226
230
  }
227
231
  async startAndExpose(ngrokAuthToken, dev) {
@@ -240,7 +244,11 @@ class SmithCommand {
240
244
  await this.executeCommand(command);
241
245
  console.info("ngrok is running. You can view the dashboard at http://0.0.0.0:4040");
242
246
  const ngrokUrl = await getNgrokUrl();
243
- console.info("LangSmith server is running at http://localhost:1984. To connect remotely, set the following environment variable when running your LangChain application.");
247
+ console.info("LangSmith server is running at http://localhost:1984." +
248
+ "To view the app, navigate your browser to http://localhost:80" +
249
+ "\n\nTo connect your LangChain application to the server" +
250
+ " remotely, set the following environment variable" +
251
+ " when running your LangChain application.");
244
252
  console.info("\tLANGCHAIN_TRACING_V2=true");
245
253
  console.info(`\tLANGCHAIN_ENDPOINT=${ngrokUrl}`);
246
254
  fs.unlinkSync(configPath);
package/dist/cli/main.js CHANGED
@@ -195,7 +195,11 @@ class SmithCommand {
195
195
  }
196
196
  command.push("up", "--quiet-pull", "--wait");
197
197
  await this.executeCommand(command);
198
- console.info("LangSmith server is running at http://localhost:1984. To connect locally, set the following environment variable when running your LangChain application.");
198
+ console.info("LangSmith server is running at http://localhost:1984.\n" +
199
+ "To view the app, navigate your browser to http://localhost:80" +
200
+ "\n\nTo connect your LangChain application to the server" +
201
+ " locally, set the following environment variable" +
202
+ " when running your LangChain application.");
199
203
  console.info("\tLANGCHAIN_TRACING_V2=true");
200
204
  }
201
205
  async startAndExpose(ngrokAuthToken, dev) {
@@ -214,7 +218,11 @@ class SmithCommand {
214
218
  await this.executeCommand(command);
215
219
  console.info("ngrok is running. You can view the dashboard at http://0.0.0.0:4040");
216
220
  const ngrokUrl = await getNgrokUrl();
217
- console.info("LangSmith server is running at http://localhost:1984. To connect remotely, set the following environment variable when running your LangChain application.");
221
+ console.info("LangSmith server is running at http://localhost:1984." +
222
+ "To view the app, navigate your browser to http://localhost:80" +
223
+ "\n\nTo connect your LangChain application to the server" +
224
+ " remotely, set the following environment variable" +
225
+ " when running your LangChain application.");
218
226
  console.info("\tLANGCHAIN_TRACING_V2=true");
219
227
  console.info(`\tLANGCHAIN_ENDPOINT=${ngrokUrl}`);
220
228
  fs.unlinkSync(configPath);
package/dist/cli/main.ts CHANGED
@@ -213,7 +213,11 @@ class SmithCommand {
213
213
  command.push("up", "--quiet-pull", "--wait");
214
214
  await this.executeCommand(command);
215
215
  console.info(
216
- "LangSmith server is running at http://localhost:1984. To connect locally, set the following environment variable when running your LangChain application."
216
+ "LangSmith server is running at http://localhost:1984.\n" +
217
+ "To view the app, navigate your browser to http://localhost:80" +
218
+ "\n\nTo connect your LangChain application to the server" +
219
+ " locally, set the following environment variable" +
220
+ " when running your LangChain application."
217
221
  );
218
222
  console.info("\tLANGCHAIN_TRACING_V2=true");
219
223
  }
@@ -237,7 +241,11 @@ class SmithCommand {
237
241
  );
238
242
  const ngrokUrl = await getNgrokUrl();
239
243
  console.info(
240
- "LangSmith server is running at http://localhost:1984. To connect remotely, set the following environment variable when running your LangChain application."
244
+ "LangSmith server is running at http://localhost:1984." +
245
+ "To view the app, navigate your browser to http://localhost:80" +
246
+ "\n\nTo connect your LangChain application to the server" +
247
+ " remotely, set the following environment variable" +
248
+ " when running your LangChain application."
241
249
  );
242
250
  console.info("\tLANGCHAIN_TRACING_V2=true");
243
251
  console.info(`\tLANGCHAIN_ENDPOINT=${ngrokUrl}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "langsmith",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "description": "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.",
5
5
  "files": [
6
6
  "dist/",