This project is a simple introduction to using Langchain with ArcGIS.
Created by Andrew Turner @ Esri for DevSummit 2024
- Copy
env.example
to.env.dev
- Add your relevant keys & URLs to the configuration
- Change to
cd langchain-py
- Install requirements in console
pip install -U -r requirements.txt
- Open
example_start.ipynb
- Run the cells
- Change to
cd langchain-js
- Install requirements in console
npm i
- Run the example
node example_start.js
You can make your agents more intelligent by adding structured tools. A Tool is simply a Python function that is included in the LLM prompt. The output may include calling the function, which Langchain will do and then include the response back to the LLM for final reasoning.
- Open
example_tools.ipynb
- Run the cells