Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 1.06 KB

File metadata and controls

41 lines (31 loc) · 1.06 KB

Welcome to LangGraph Tools Applications Setup 🚀

This guide is a beginner-friendly introduction to setting up your Python environment and using tools with LangGraph. We'll walk you through each step to ensure you have everything ready for a smooth start!

🛠 Setting Up the Environment

Follow these steps to set up your environment:

  1. Navigate to the Project Directory:

    cd example-chapter
  2. Install Python 3.12.7 (skip if already installed):

    uv python install 3.12.7
  3. Create a Virtual Environment:

    uv venv --python 3.12.7
  4. Activate the Virtual Environment: For Windows:

    .\venv\Scripts\activate

    For macOS and Linux:

    source venv/bin/activate
  5. Install Dependencies:

    uv sync

Now, you are ready to run the project within this environment. Let's dive into the world of Tool Calling configurations! 🌐🔧

Feel free to reach out if you encounter any issues or have questions as you proceed. Happy coding! 😊