Update app.py
Browse files
app.py
CHANGED
@@ -26,10 +26,11 @@ from pinecone import Pinecone
|
|
26 |
# PINECONE_API_KEY = "555c0e70-331d-4b43-aac7-5b3aac5078d6"
|
27 |
pc = Pinecone(api_key=PINECONE_API_KEY)
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
|
|
33 |
|
34 |
client = Client() #langsmith client
|
35 |
|
|
|
26 |
# PINECONE_API_KEY = "555c0e70-331d-4b43-aac7-5b3aac5078d6"
|
27 |
pc = Pinecone(api_key=PINECONE_API_KEY)
|
28 |
|
29 |
+
LANGCHAIN_API_KEY = st.secrets["LANGCHAIN_API_KEY"]
|
30 |
+
LANGCHAIN_API_KEY = st.secrets["langchain"]["api_key"]
|
31 |
+
LANGCHAIN_TRACING_V2 = "true"
|
32 |
+
LANGCHAIN_ENDPOINT = "https://api.smith.langchain.com"
|
33 |
+
LANGCHAIN_PROJECT = "Inkqa"
|
34 |
|
35 |
client = Client() #langsmith client
|
36 |
|