Spaces:
Build error
Build error
Update pipeline.py
Browse files- pipeline.py +3 -1
pipeline.py
CHANGED
|
@@ -77,8 +77,10 @@ logger = logging.getLogger(__name__)
|
|
| 77 |
from langchain_core.tracers import LangChainTracer
|
| 78 |
from langsmith import Client
|
| 79 |
|
| 80 |
-
os.environ["
|
|
|
|
| 81 |
langsmith_client = Client()
|
|
|
|
| 82 |
tracer = LangChainTracer(project_name=os.environ.get("LANGCHAIN_PROJECT", "healthy_ai_expert"))
|
| 83 |
|
| 84 |
|
|
|
|
| 77 |
from langchain_core.tracers import LangChainTracer
|
| 78 |
from langsmith import Client
|
| 79 |
|
| 80 |
+
os.environ["LANGCHAIN_TRACING"] = "true"
|
| 81 |
+
os.environ["LANGSMITH_ENDPOINT"]="https://api.smith.langchain.com"
|
| 82 |
langsmith_client = Client()
|
| 83 |
+
os.environ["LANGSMITH_PROJECT"]="Healthy_ai_expert"
|
| 84 |
tracer = LangChainTracer(project_name=os.environ.get("LANGCHAIN_PROJECT", "healthy_ai_expert"))
|
| 85 |
|
| 86 |
|