Utilities for Langchain and langgraph
Project description
LangChain Tools JSON Converter
This module provides utility functions to convert LangChain tool objects into JSON format and vice versa. It helps serialize and deserialize structured tool definitions for easier storage and transport.
Features
create_tools_json: Converts a list of LangChain tool objects into a JSON string.json_to_structured_tools: Converts a JSON representation of LangChain tools back intoStructuredToolobjects.
Installation
Ensure you have langchain_core installed before using this module:
pip install langchain-core
Usage
Converting Tools to JSON
from langchain_core.tools import StructuredTool
# Example tool
example_tool = StructuredTool(
name="example_tool",
description="An example tool",
func=None,
args_schema={}
)
# Convert to JSON
json_output = create_tools_json([example_tool])
print(json_output)
Converting JSON to Structured Tools
json_tools = [
{
"name": "example_tool",
"description": "An example tool",
"args_schema": {}
}
]
structured_tools = json_to_structured_tools(json_tools)
print(structured_tools)
Function Details
create_tools_json(tools)
Description: Converts a list of LangChain tool objects into a JSON string.
Parameters:
tools(List ofStructuredToolobjects): List of tool objects to be serialized.
Returns:
str: JSON string representation of the tools.
json_to_structured_tools(json_tools)
Description: Converts JSON-formatted LangChain tools into StructuredTool objects.
Parameters:
json_tools(list or dict): A list or single JSON object representing tools.
Returns:
StructuredToolor List ofStructuredToolobjects.
Notes
- The
funcattribute is set toNonewhen reconstructingStructuredToolobjects from JSON. - Ensure that the
args_schemamatches the expected schema format for LangChain.
License
This module is open-source and can be modified as needed.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file langgraph_utils-0.0.7.4.tar.gz.
File metadata
- Download URL: langgraph_utils-0.0.7.4.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec11dd1e0edf71f5ffafc985051605fdbb44d0abe47c66f396ffae0aebbbeb5e
|
|
| MD5 |
e41ba9628de3f933b5a378a201502dac
|
|
| BLAKE2b-256 |
71e09923e4556eaeed652d62df0321c474d4f53de92871c2ed794055f274069a
|
File details
Details for the file langgraph_utils-0.0.7.4-py3-none-any.whl.
File metadata
- Download URL: langgraph_utils-0.0.7.4-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26139c28f443e7296630342e62292976b7decd11073ac7ca5486f68bbe9e4143
|
|
| MD5 |
9ee3300f5df383fa200ad741ed68d46d
|
|
| BLAKE2b-256 |
fbfdde4b2c6f2db906a68b1fb503e050700957a7c54f20455cc25b042e975c00
|