Spaces:
Sleeping
Sleeping
Langsmith Tracking
Browse files
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):
|