Skip to content

Commit 3502aae

Browse files
authored
fix clear index script (langchain-ai#206)
1 parent 766c0db commit 3502aae

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/clear-and-update-index.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Clear index
1+
name: Clear and update index
22

33
on:
44
workflow_dispatch:

_scripts/clear_index.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@
77
from langchain.indexes import SQLRecordManager, index
88
from langchain.vectorstores import Weaviate
99

10-
from constants import WEAVIATE_DOCS_INDEX_NAME
11-
1210
logger = logging.getLogger(__name__)
1311

1412
WEAVIATE_URL = os.environ["WEAVIATE_URL"]
1513
WEAVIATE_API_KEY = os.environ["WEAVIATE_API_KEY"]
1614
RECORD_MANAGER_DB_URL = os.environ["RECORD_MANAGER_DB_URL"]
15+
WEAVIATE_DOCS_INDEX_NAME = "LangChain_agent_docs"
1716

1817

1918
def clear():

0 commit comments

Comments
 (0)