langsmith 0.0.23 → 0.0.24

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.
@@ -6,8 +6,6 @@ services:
6
6
  image: langchain/${_LANGSMITH_IMAGE_PREFIX-}langchainplus-frontend:latest
7
7
  ports:
8
8
  - 80:80
9
- environment:
10
- - REACT_APP_BACKEND_URL=http://localhost:1984
11
9
  depends_on:
12
10
  - langchain-backend
13
11
  - langchain-playground
@@ -22,6 +20,13 @@ services:
22
20
  - 1984:1984
23
21
  depends_on:
24
22
  - langchain-db
23
+ - langchain-redis
24
+ langchain-queue:
25
+ image: langchain/${_LANGSMITH_IMAGE_PREFIX-}langchainplus-backend:latest
26
+ environment:
27
+ - LANGCHAIN_ENV=local_docker
28
+ - LOG_LEVEL=warning
29
+ entrypoint: "rq worker --with-scheduler -u redis://langchain-redis:6379 --serializer lc_database.queue.serializer.ORJSONSerializer --worker-class lc_database.queue.worker.Worker"
25
30
  langchain-db:
26
31
  image: postgres:14.7
27
32
  command:
@@ -40,5 +45,12 @@ services:
40
45
  - langchain-db-data:/var/lib/postgresql/data
41
46
  ports:
42
47
  - 5433:5432
48
+ langchain-redis:
49
+ image: redis:7
50
+ ports:
51
+ - 63791:6379
52
+ volumes:
53
+ - langchain-redis-data:/data
43
54
  volumes:
44
55
  langchain-db-data:
56
+ langchain-redis-data:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "langsmith",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "description": "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.",
5
5
  "files": [
6
6
  "dist/",