A minimal LangGraph research graph. Clone, set your key, deploy — done.
git clone https://github.com/Crewship/langgraph-quickstart.git
cd langgraph-quickstart
# install Crewship CLI tool
curl -fsSL crewship.dev/install | bash
pip install -e .crewship env set OPENAI_API_KEY=sk-...Using a different provider? Swap the
ChatOpenAIimport ingraph.pyand set the matching key — e.g.ANTHROPIC_API_KEYfor Claude,GROQ_API_KEYfor Groq (free tier).
crewship deployThat's it. Your research graph is live.
cp .env.example .env # add your OPENAI_API_KEY
python main.pyA two-node graph powered by GPT-4o mini:
- researcher — finds 5 key points about a topic
- reporter — turns them into a short markdown report
Change the topic in main.py.
- Graph logic →
graph.py - Entry point →
main.py