Skip to content

Instantly share code, notes, and snippets.

View scarnyc's full-sized avatar

Will Scardino scarnyc

View GitHub Profile
@scarnyc
scarnyc / agentic_bloggerGPT.ipynb
Created May 4, 2025 18:32
Agentic Blogger: This Jupyter notebook, defines an agentic workflow for writing blog posts using LangGraph and the GPT-4.1 language model. The script sets up a multi-agent graph where each node represents a stage in the blog post creation process. The workflow is managed by a supervisor agent that delegates tasks sequentially through the plannin…
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@scarnyc
scarnyc / agentic.py
Last active May 4, 2025 18:12
Agentic Workflow powered by Gemini 2.5 Flash & LangGraph
"""
Python-based agentic workflow powered by Gemini 2.5 Flash (experimental) & LangGraph.
This agent is capable of using Gemini's built-in tools like Google web search and code execution;
It also has access to Wikipedia info while incorporating memory.
"""
## Import Modules
# Standard library imports
import os
from typing import Annotated