63d645fc3b
Extracted from: https://github.com/jkmaina/LangGraphProjects.git Score: 1.0
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
|
|
} |