Phoenix21 commited on
Commit
9431669
·
verified ·
1 Parent(s): 0cdf9fb

Update pipeline.py

Browse files
Files changed (1) hide show
  1. 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["LANGCHAIN_TRACING_V2"] = "true"
 
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