msaifee commited on
Commit
0914d48
·
1 Parent(s): 309ec75

Langsmith Tracking

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -7,6 +7,9 @@ from langgraph.graph import add_messages, StateGraph, END, START
7
  from langchain_core.messages import AIMessage, HumanMessage
8
  from typing import Annotated, List
9
 
 
 
 
10
 
11
  # Define BlogState TypedDict
12
  class BlogState(TypedDict):
 
7
  from langchain_core.messages import AIMessage, HumanMessage
8
  from typing import Annotated, List
9
 
10
+ ## Langsmith Tracking
11
+ os.environ["LANGCHAIN_TRACING_V2"] = "true"
12
+ os.environ["LANGCHAIN_PROJECT"]="Blog Generator Agent"
13
 
14
  # Define BlogState TypedDict
15
  class BlogState(TypedDict):