Langchain implementation for Guardrails: Nemo
Project description
Nemo Integration with LangChain
This package provides NeMo integration with LangChain, addressing a key limitation in existing NeMo runnables. Specifically, it enables configurable options for NeMo, offering greater control over what is generated. Additionally, it allows flexibility in using different LLMs for NeMo and text generation, enhancing adaptability for various use cases.
Features
- Customizable NeMo options: Control what NeMo generates by utilizing generation options described here
- Flexible LLM integration: Use different LLMs for NeMo and response generation. Utilize tools binding as needed.
- Guardrails integration: Ensure AI-generated responses adhere to predefined constraints.
Installation
Ensure you have the necessary dependencies installed:
pip install langchain_guardrails
NemoRails Initialization Parameters
The __init__ method initializes an instance of NemoRails with a given configuration and optional parameters.
| Parameter | Type | Default | Description |
|---|---|---|---|
config |
RailsConfig |
Required | Configuration object for NemoRails. |
llm |
Optional[Any] |
None |
Optional LLM instance used for processing. This must be available either in config or here. |
generator_llm |
Optional[Any] |
None |
Optional LLM instance for text generation. |
verbose |
bool |
True |
Enables verbose logging if True. |
options |
Optional[Dict[str, Any]] |
None |
Additional options, defaults to {"rails": ["input"]}. |
Behavior
- Initializes
LLMRailsusing the providedconfig,llm, andverboseflag. - If
generator_llmis provided, it sets upgenerate_or_exitusingRunnableLambda. optionsdefault behaviour is to execute only rails and generation is left for surround to handle i.e default for options is set to{"rails": ["input"]}. Read here
Output
Output from guarrail is a dictionary:
{"original": <original message", "stop": True/False}
Utilize stop signal to execute next steps.
Usage
Below is an example demonstrating how to integrate NeMo with LangChain and apply guardrails to control responses. Here we use custom generator function passthrough_or_exit
Inbuilt generator function
This package has inbuilt function for generation - generate_or_exit - which is enabled when generator_llm is passed. You can use that as well to complete your generation.
# Create the guardrail processing chain
guardrail_chain = nemorails.create_guardrail_chain()
res = ChatPromptTemplate.from_messages(test_input)
chain = res | guardrail_chain | nemorails.generate_or_exit
# Invoke the guardrail chain
response = [chain.invoke({})]
Custom generator function
from langchain_openai import ChatOpenAI
from nemoguardrails import RailsConfig
from langchain_guardrails import NemoRails
from langchain.schema import HumanMessage
from langchain_core.prompts import ChatPromptTemplate
from langchain_core.runnables import chain
# Initialize OpenAI model
llm = ChatOpenAI(model="gpt-3.5-turbo", temperature=0.7)
# Load RailsConfig (configure with the actual path to your NeMo guardrails config)
rails_config = RailsConfig.from_path("./tests/config")
# Instantiate NemoRails with configuration and LLM
nemorails = NemoRails(config=rails_config, llm=llm, options={"rails": ["input"]})
# Sample user input
user_input = [HumanMessage(content="Tell me about the Avengers movie")]
# Define a simple passthrough function with an exit condition
@chain
def passthrough_or_exit(message_dict):
if message_dict["stop"]:
return "I'm sorry, I can't respond to that."
return llm.invoke(message_dict["original"])
# Create the guardrail processing chain
guardrail_chain = nemorails.create_guardrail_chain()
response_chain = ChatPromptTemplate.from_messages(user_input) | guardrail_chain | passthrough_or_exit
# Invoke the chain and generate response
response = response_chain.invoke({})
# Print the output
print(response)
Notes
- The
RailsConfigmust be configured with the correct NeMo guardrails path. - Modify
optionsto customize how NeMo processes inputs. - Tools messages are not checked
Credits
This package uses code from nemoguardrails, licensed under [ Apache-2.0].
Project details
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 langchain_guardrails-0.0.6.tar.gz.
File metadata
- Download URL: langchain_guardrails-0.0.6.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f14d2ff0ae5d388e2f673de50a9ec5454d111d3ff65d0c927390ea48e2992a99
|
|
| MD5 |
20c74bf4ba8be681858a309fcc610d77
|
|
| BLAKE2b-256 |
15a405d2ee406894fec1890fdeaf57b61b69722cabb884e63c5f75745ad8cf0a
|
File details
Details for the file langchain_guardrails-0.0.6-py3-none-any.whl.
File metadata
- Download URL: langchain_guardrails-0.0.6-py3-none-any.whl
- Upload date:
- Size: 5.6 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 |
5df77e19450501b15f87b231b066ef4d3ba2146c10a8c5ee192438daf9eeaaaa
|
|
| MD5 |
6893cbfe651da1d8f5a77b14a1c4648a
|
|
| BLAKE2b-256 |
9cf278b39edb4aa5a7a86ed0ff06ad4e5680c75731ac433487991a22f5458665
|