a14f09bec2
New skills: - langgraph-workflow-creation (from LangGraphProjects) - agent-supervisor (from multi_agent_workflow_demo_in_langgraph) Fixes: - Publisher dedup: skip existing skills - Older repos: pushed_after 2024-06-01 (was 2026-05-01) - Lower stars: 10 (was 15)
26 lines
963 B
JSON
26 lines
963 B
JSON
{
|
|
"name": "langgraph-workflow-creation",
|
|
"version": "1.0.0",
|
|
"goal": "Create a LangGraph workflow to gather facts using SerperDevTool and process them with an AI agent.",
|
|
"inputs": [
|
|
"API Key for SerperDevTool",
|
|
"Search Query"
|
|
],
|
|
"steps": [
|
|
"Step 1: Import necessary modules from langgraph and langchain libraries",
|
|
"Step 2: Create a LangGraph agent using `langgraph.create_react_agent` function with SerperDevTool as the tool node",
|
|
"Step 3: Define the search query and pass it to the agent for fact gathering",
|
|
"Step 4: Process the gathered facts within the AI agent"
|
|
],
|
|
"outputs": [
|
|
"Processed Facts"
|
|
],
|
|
"failure_modes": [
|
|
"API Key not provided",
|
|
"Invalid Search Query"
|
|
],
|
|
"confidence": 0.95,
|
|
"explanation": "This workflow is specific to fact gathering and can be adapted for different search queries or tools.",
|
|
"source_repo": "https://github.com/jkmaina/LangGraphProjects.git",
|
|
"score": 1.0
|
|
} |