Skip to content

Commit abaa6d6

Browse files
committed
Fix format issue
1 parent a7f6cc7 commit abaa6d6

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

docs/docs/integrations/document_loaders/oracleadb_loader.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"outputs": [],
4444
"source": [
45-
"#python -m pip install -U langchain-oracledb"
45+
"# python -m pip install -U langchain-oracledb"
4646
]
4747
},
4848
{

docs/docs/integrations/vectorstores/oracle.ipynb

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -521,20 +521,20 @@
521521
" # This filter aims to include documents whose metadata 'id' is exactly '2'\n",
522522
" db_filter = {\n",
523523
" \"$and\": [\n",
524-
" {\"id\": \"101\"}, # FilterCondition\n",
525-
" {\n",
526-
" \"$or\": [ # FilterGroup\n",
527-
" {\"status\": \"approved\"},\n",
528-
" {\"link\": \"Document Example Test 2\"},\n",
524+
" {\"id\": \"101\"}, # FilterCondition\n",
529525
" {\n",
530-
" \"$and\": [ # Nested FilterGroup\n",
531-
" {\"status\": \"approved\"},\n",
532-
" {\"link\": \"Document Example Test 2\"},\n",
533-
" ]\n",
526+
" \"$or\": [ # FilterGroup\n",
527+
" {\"status\": \"approved\"},\n",
528+
" {\"link\": \"Document Example Test 2\"},\n",
529+
" {\n",
530+
" \"$and\": [ # Nested FilterGroup\n",
531+
" {\"status\": \"approved\"},\n",
532+
" {\"link\": \"Document Example Test 2\"},\n",
533+
" ]\n",
534+
" },\n",
535+
" ]\n",
534536
" },\n",
535-
" ]\n",
536-
" },\n",
537-
" ]\n",
537+
" ]\n",
538538
" }\n",
539539
"\n",
540540
" for i, vs in enumerate(vector_stores, start=1):\n",

0 commit comments

Comments
 (0)