Skip to content

Commit 5b40518

Browse files
srilaasyaDwij1704claude
authored
Add video embeds to docs (#1189)
* xpander instrumentation * add xpander docs * update graph view * cleanup instrumentation, updated xpandercontext * update instrumentor.py * fix ruff import err * Update Xpander documentation and example * Update CrewAI example documentation - Fix installation commands (correct uv pip install syntax) - Move AgentOps benefits explanation to Step 1 - Use proper crewai create workflow with YAML configs - Remove redundant installation steps - Show real project structure and file editing - Add clear AgentOps integration points 🤖 Generated with Claude Code Co-Authored-By: Claude <[email protected]> * Update Google ADK example documentation - Fix installation commands (correct uv pip install syntax) - Use proper Google ADK project structure with mkdir/touch commands - Show real file creation and module setup - Add step-by-step build process with actual file contents - Include multiple execution options (adk web, adk run, programmatic) - Move AgentOps benefits explanation to Step 1 - Add clear AgentOps integration points throughout workflow - Remove old notebook-style code and scripts 🤖 Generated with Claude Code Co-Authored-By: Claude <[email protected]> * Update LangGraph example documentation - Follow official LangGraph basic chatbot tutorial structure - Use proper StateGraph with START/END pattern - Show real project creation with mkdir/touch commands - Fix installation commands (correct uv pip install syntax) - Add step-by-step build process with complete chatbot.py file - Include interactive chat interface with streaming responses - Move AgentOps benefits explanation to Step 1 - Add clear AgentOps session management throughout - Remove old tool-based complexity, focus on basic chatbot - Show proper State definition with add_messages reducer 🤖 Generated with Claude Code Co-Authored-By: Claude <[email protected]> * Fix uv installation commands across all documentation - Replace 'uv add' with 'uv pip install' in all examples and integrations - Affects 32 documentation files across v2/examples and v2/integrations - Ensures proper uv usage when no pyproject.toml exists yet - Fixes installation workflow for new users following documentation * Add YouTube video embeds to integration documentation - Add CrewAI integration tutorial video (t9YRRd2-wus) to CrewAI docs - Add OpenAI Agents SDK tutorial video (9FH-BYqYYrQ) to OpenAI Agents Python docs - Add Agno integration tutorial video (M4e1Ybkn_K0) to Agno docs Videos are embedded at the top of each integration page under "Video Tutorial" section to help users get started quickly. --------- Co-authored-by: Dwij <[email protected]> Co-authored-by: Claude <[email protected]>
1 parent 3ec4218 commit 5b40518

33 files changed

+815
-500
lines changed

docs/v2/examples/agno.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ By using async operations, you can run multiple AI queries simultaneously instea
3232
poetry add agentops agno python-dotenv
3333
```
3434
```bash uv
35-
uv add agentops agno python-dotenv
35+
uv pip install agentops agno python-dotenv
3636
```
3737
</CodeGroup>
3838

docs/v2/examples/anthropic.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ To get started, we will import Agentops and Anthropic.
2121
poetry add agentops anthropic python-dotenv
2222
```
2323
```bash uv
24-
uv add agentops anthropic python-dotenv
24+
uv pip install agentops anthropic python-dotenv
2525
```
2626
</CodeGroup>
2727

docs/v2/examples/autogen.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ First let's install the required packages
2323
poetry add "autogen-ext[openai]" -U agentops autogen-agentchat python-dotenv
2424
```
2525
```bash uv
26-
uv add "autogen-ext[openai]" -U agentops autogen-agentchat python-dotenv
26+
uv pip install "autogen-ext[openai]" -U agentops autogen-agentchat python-dotenv
2727
```
2828
</CodeGroup>
2929

docs/v2/examples/crewai.mdx

Lines changed: 341 additions & 169 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)