langsmith 0.0.6 → 0.0.7
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 +2 -0
- package/dist/cli/main.js +2 -0
- package/dist/cli/main.ts +4 -0
- package/package.json +1 -1
package/dist/cli/main.cjs
CHANGED
|
@@ -182,6 +182,8 @@ class SmithCommand {
|
|
|
182
182
|
return new SmithCommand({ dockerComposeCommand });
|
|
183
183
|
}
|
|
184
184
|
async start(args) {
|
|
185
|
+
console.info("BY USING THIS SOFTWARE YOU AGREE TO THE TERMS OF SERVICE AT:");
|
|
186
|
+
console.info("https://smith.langchain.com/terms-of-service.pdf");
|
|
185
187
|
if (args.dev) {
|
|
186
188
|
(0, env_js_1.setEnvironmentVariable)("_LANGSMITH_IMAGE_PREFIX", "rc-");
|
|
187
189
|
}
|
package/dist/cli/main.js
CHANGED
|
@@ -156,6 +156,8 @@ class SmithCommand {
|
|
|
156
156
|
return new SmithCommand({ dockerComposeCommand });
|
|
157
157
|
}
|
|
158
158
|
async start(args) {
|
|
159
|
+
console.info("BY USING THIS SOFTWARE YOU AGREE TO THE TERMS OF SERVICE AT:");
|
|
160
|
+
console.info("https://smith.langchain.com/terms-of-service.pdf");
|
|
159
161
|
if (args.dev) {
|
|
160
162
|
setEnvironmentVariable("_LANGSMITH_IMAGE_PREFIX", "rc-");
|
|
161
163
|
}
|
package/dist/cli/main.ts
CHANGED
|
@@ -169,6 +169,10 @@ class SmithCommand {
|
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
async start(args: any) {
|
|
172
|
+
console.info(
|
|
173
|
+
"BY USING THIS SOFTWARE YOU AGREE TO THE TERMS OF SERVICE AT:"
|
|
174
|
+
);
|
|
175
|
+
console.info("https://smith.langchain.com/terms-of-service.pdf");
|
|
172
176
|
if (args.dev) {
|
|
173
177
|
setEnvironmentVariable("_LANGSMITH_IMAGE_PREFIX", "rc-");
|
|
174
178
|
}
|