Skip to content

Commit ee06827

Browse files
authored
Merge branch 'main' into PYTHON-4680-local-llama
2 parents 94ef833 + 8d42e48 commit ee06827

15 files changed

+99
-8
lines changed

.evergreen/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,8 @@ buildvariants:
142142
display_name: Langchain RHEL Python
143143
expansions:
144144
DIR: langchain-python
145-
REPO_NAME: langchain
146-
# TODO - Replace with upstream when closing PYTHON-4435
147-
CLONE_URL: -b PYTHON-4435-explicit-ids --single-branch https://github.com/caseyclements/langchain.git
145+
REPO_NAME: langchain # TODO [PYTHON-4679] Merge change in this branch
146+
CLONE_URL: -b ci-on-local-atlas --single-branch https://github.com/caseyclements/langchain.git
148147
DATABASE: langchain_test_db
149148
run_on:
150149
- rhel87-small

.evergreen/provision-atlas.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ PYTHON_BINARY=$(find_python3)
88
EVERGREEN_PATH=$(pwd)/.evergreen
99
TARGET_DIR=$(pwd)/$DIR
1010
PING_ATLAS=$EVERGREEN_PATH/ping_atlas.py
11+
SCAFFOLD_SCRIPT=$EVERGREEN_PATH/scaffold_atlas.py
1112
DEPLOYMENT_NAME=$DIR
1213

1314
set -ex

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,7 @@ mongo-c-driver-*
4646
# Benchmark and test output files
4747
results/*
4848
xunit-results/
49+
50+
# Miscellaneous
51+
.DS_Store
52+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"fields": [
3+
{
4+
"numDimensions": 1536,
5+
"path": "embedding",
6+
"similarity": "cosine",
7+
"type": "vector"
8+
}
9+
],
10+
"name": "langchain-test-chain-example-vector-index",
11+
"type": "vectorSearch",
12+
"database": "langchain_test_db",
13+
"collectionName": "langchain_test_chain_example"
14+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"fields": [
3+
{
4+
"numDimensions": 5,
5+
"path": "embedding",
6+
"similarity": "cosine",
7+
"type": "vector"
8+
}
9+
],
10+
"name": "langchain-test-index-from-documents",
11+
"type": "vectorSearch",
12+
"database": "langchain_test_db",
13+
"collectionName": "langchain_test_from_documents"
14+
}

langchain-python/indexes/langchain_test_index_vectorstores.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"fields": [
33
{
4-
"numDimensions": 1536,
4+
"numDimensions": 5,
55
"path": "embedding",
66
"similarity": "cosine",
77
"type": "vector"

0 commit comments

Comments
 (0)