2bd56fb1bcb7a6b71fd63f3e5d6857af22b3c979
Self‑Correcting Agent
This repository demonstrates a minimal setup for a self‑correcting agent using langgraph and langchain‑openai.
The project includes:
package.json– declares the required dependencies and a start script.src/index.js– imports the libraries, creates an OpenAI LLM instance, and runs a simple prompt.
Setup
# Install dependencies
npm install
# Run the example
npm start
Note
: To get a real response from the OpenAI API, set the
OPENAI_API_KEYenvironment variable before running the script.
export OPENAI_API_KEY=your_api_key_here
npm start
The script will log the loaded modules and the response from the LLM.
Languages
Python
63.5%
JavaScript
22%
TypeScript
14.5%