File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
template_langgraph/services/streamlits Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 6
6
PROJECT_NAME = template-langgraph
7
7
8
8
# # LangSmith Settings
9
+ LANGSMITH_TRACING = " false" # Options: "true", "false"
9
10
LANGSMITH_API_KEY = " lsv2_xxx"
10
11
11
12
# ---------
Original file line number Diff line number Diff line change 49
49
- [ Jaeger / Minimal deployment example (Elasticsearch backend)] ( https://www.jaegertracing.io/docs/1.72/deployment/#minimal-deployment-example-elasticsearch-backend )
50
50
- [ Prometheus] ( https://prometheus.io/ )
51
51
- [ Prometheus / Getting Started] ( https://prometheus.io/docs/prometheus/latest/getting_started/ )
52
+ - [ Trace with LangGraph] ( https://docs.langchain.com/langsmith/trace-with-langgraph )
52
53
53
54
### n8n
54
55
Original file line number Diff line number Diff line change 1
1
import streamlit as st
2
+ from dotenv import load_dotenv
2
3
4
+ load_dotenv (
5
+ override = True ,
6
+ verbose = True ,
7
+ )
3
8
st .title ("template-streamlit" )
4
9
st .info ("Select a code sample from the sidebar to run it" )
You can’t perform that action at this time.
0 commit comments