We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dfb2e2 commit 7bad870Copy full SHA for 7bad870
2 files changed
README.md
@@ -42,11 +42,13 @@ uv add 'stackone-ai[mcp]'
42
# or
43
pip install 'stackone-ai[mcp]'
44
45
-# Install with CrewAI examples (requires Python 3.10+)
+# Install with CrewAI and LangGraph examples (requires Python 3.10+)
46
uv add 'stackone-ai[examples]'
47
48
pip install 'stackone-ai[examples]'
49
50
+# Note: the examples extra pulls in `langgraph[openai]` for OpenAI tool-calling support
51
+
52
# Install everything
53
uv add 'stackone-ai[mcp,examples]'
54
pyproject.toml
@@ -53,7 +53,7 @@ mcp = [
examples = [
"crewai>=0.102.0; python_version>='3.10'",
55
"langchain-openai>=0.3.6",
56
- "langgraph>=0.2.0",
+ "langgraph[openai]>=0.2.0",
57
"openai>=1.63.2",
58
"python-dotenv>=1.0.1",
59
]
0 commit comments