seansullivan commited on
Commit
a5622a1
·
verified ·
1 Parent(s): 75b08cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -10,6 +10,11 @@ from langchain_community.retrievers import PineconeHybridSearchRetriever
10
  from langchain.tools.retriever import create_retriever_tool
11
  from langgraph.prebuilt import create_react_agent
12
 
 
 
 
 
 
13
  # Download the NLTK tokenizer (if not already downloaded)
14
  nltk.download('punkt_tab')
15
 
 
10
  from langchain.tools.retriever import create_retriever_tool
11
  from langgraph.prebuilt import create_react_agent
12
 
13
+
14
+ os.environ['LANGCHAIN_TRACING_V2'] = "true"
15
+
16
+ os.environ['LANGCHAIN_ENDPOINT'] = "https://api.smith.langchain.com"
17
+
18
  # Download the NLTK tokenizer (if not already downloaded)
19
  nltk.download('punkt_tab')
20