NeMo-Guardrails icon indicating copy to clipboard operation
NeMo-Guardrails copied to clipboard

NeMo Guardrails is an open-source toolkit for easily adding programmable guardrails to LLM-based conversational systems.

Results 351 NeMo-Guardrails issues
Sort by recently updated
recently updated
newest added

When I ask the bot a question in Japanese, it responds with "I'm sorry, I don't know the answer to that question.". I want to be able to converse with...

Thanks so much for making this awesome project open-source! Here is a small pet peeve about the current design: at the moment `from_content` [always loads](https://github.com/NVIDIA/NeMo-Guardrails/blob/9dc5d35b846443a8ea45d32d4c335e58863471be/nemoguardrails/rails/llm/config.py#LL200C3-L200C3) the default instructions, together with...

I've run the demo py file. It can return the message I want correctly, but always raises a RuntimeError: "Event loop is closed". How dose it happen and what can...

This PR updates `langchain` to 0.0.141 which makes sure `chain.arun()` works!

I am using langchain (`^0.0.141`) and it works perfectly for our see needs by creating a `asyncio.create_task` and a asyncio.Queue() to listen from. But `NeMo-Guardrails==0.1.0` requires `langchain==0.0.137` which throws an...

Can long flows be recognized now? I have noticed that when the flow is Q->A->Q->A->Q->A->Bey, it always gets stuck in a QA loop and never triggers the Bey intent.

Hello guys, I get this error when trying to do a super simple hello-world example on a Mac: `INFO:nemoguardrails.actions.action_dispatcher:Error type object 'Completion' has no attribute 'acreate' while execution generate_user_intent` Bot...

**What is this PR:** - [ ] Bug fix - [x] Feature - [ ] Chore **Description:** In this PR, it is possible to insert instruction at the stage where...

Hello Guys, I'm trying to add a custom action to a custom flow. Lets say i want to extract some fulfilment-table like information from the user interaction. While this table...

The examples show a q/a chain that finds answers over docs. I want to use an **Agent Chain** as described [here](https://python.langchain.com/en/latest/modules/agents/agents/examples/chat_conversation_agent.html) to run google searches given a user query. However,...