File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ test_client_faas
26
26
test_client_cloudevents
27
27
test_client_fastify
28
28
test_client_pino
29
- test_client_langchain
29
+ test_client_langchainjs
30
30
"
31
31
32
32
readonly EXPRESS_REVISION=" ${EXPRESS_REVISION:- $(docker run --rm " ${IMAGE_NAME} " -- npm show express version)} "
@@ -45,8 +45,8 @@ readonly CLOUDEVENTS_REVISION="v${CLOUDEVENTS_REVISION:-$(docker run --rm "${IMA
45
45
readonly CLOUDEVENTS_REPO=" https://github.com/cloudevents/sdk-javascript.git"
46
46
readonly FASTIFY_REVISION=" v${FASTIFY_REVISION:- $(docker run --rm " ${IMAGE_NAME} " -- npm show fastify version)} "
47
47
readonly FASTIFY_REPO=" https://github.com/fastify/fastify.git"
48
- readonly LANGCHAIN_REVISION=v " ${LANGCHAIN_REVISION :- $(docker run --rm " ${IMAGE_NAME} " -- npm show langchain version)} "
49
- readonly LANGCHAIN_REPO =" https://github.com/langchain-ai/langchainjs"
48
+ readonly LANGCHAINJS_REVISION= " ${LANGCHAINJS_REVISION :- $(docker run --rm " ${IMAGE_NAME} " -- npm show langchain version)} "
49
+ readonly LANGCHAINJS_REPO =" https://github.com/langchain-ai/langchainjs.git "
50
50
51
51
# Since we built the candidate image locally, we don't want S2I attempt to pull
52
52
# it from a registry
Original file line number Diff line number Diff line change @@ -448,6 +448,12 @@ function test_client_cloudevents() {
448
448
echo " Running CloudEvents client test"
449
449
test_running_client_js cloudevents
450
450
}
451
+
452
+ function test_client_langchainjs() {
453
+ echo " Running langchainjs client test"
454
+ test_running_client_js langchainjs
455
+ }
456
+
451
457
function test_client_fastify() {
452
458
if [[ " ${VERSION} " == * " minimal" * ]]; then
453
459
VERSION=$( echo " ${VERSION} " | cut -d " -" -f 1)
You can’t perform that action at this time.
0 commit comments