-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Notebook for Integrating Llama Guard in LLM Workflow #74
Conversation
@Sakalya100 looks good, but the notebook does not contain all the output. also "What is sleep?" still marked as "unsafe" here is a simplified version with correct outputs (editable) : link |
@AhmedIssa11 Thanks for this version. I have made the changes and updated the notebook! |
Great work guys! @Sakalya100 @AhmedIssa11 |
The idea of returning the category is nice. That would indeed help the user.
Could you elaborate on this? |
So in Llama guard basically what we do is first check the safety of the prompt and then the output that the model generates but we don't check the safety of third party data sent along with the prompt to the model for inference. Now this third party data could be a pdf or any web fetched data from api, so do we need to make sure the safety of that data as well. |
The suggestions looks really good. I have made the following changes and added to the notebook:
Here is the update notebook: Link Let me know your thoughts! |
nice work guys, i think the next step is to showcase how to do the same but with the vision models |
Hey everyone, would love to contribute on this issue, as far as I've understood by reading the comments, we are only left with using llama guard for the vision models right? |
@PraNavKumAr01 Yes correct. We are left with the vision use-case. I am already working on adding the relevant code but due to some personal work, it is getting a little delayed. I will finish and share the notebook for that soon. |
I like the current implementation! Do you all want me to give it a review? |
@ariG23498 Yes if you can review the current implementation it will be great. |
@ariG23498 Yes It will be great to get a review. Also what can be the next steps in updating the notebook. |
This is a very nicely done notebook 🔥 Some suggestions:
I really liked the bit on regex to search for the actual category, that was really well done. |
@ariG23498 Thanks for the review! Based on your suggestions modified the notebook:
For the third point you mentioned, we are already doing this in the Let me know if the notebook looks good now! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to merge! We will wait for a review from @Vaibhavs10 and then merge it.
Good job folks! 🤗
@ariG23498 So this notebook is for 1b model. Do we have to create a different notebooks for the implementation of 8b model and vision model respectively? |
@harshaharod21 I think we will require a different notebook for adding Llama Guard vision model in LLM Workflow. But for the 8B model I think its a simple change in the existing 1B notebook that will allow to use the 8B model. Would we require a separate notebook for that? |
@Sakalya100 ill start working on the vision notebook, already have it setup |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for all the hardwork everyone! This is looking great. It might be a good idea to add a line about the license for PromptGuard as well.
Good for me to merge.
@Sakalya100 @harshaharod21 could you please add a line about the license as @Vaibhavs10 suggested? Once that is taken care of I will merge this. We are so close! 🤟 |
@ariG23498 Can you guide me on how to add a license for Prompt Guard? I have added the license for both Prompt Guard and Llama Guard as below in the notebook: Prompt Guard and Llama Guard is licensed under LLAMA 3.1 COMMUNITY LICENSE AGREEMENT I hope this works!! |
great work guys, lets move to the next PR |
This pull request introduces a new notebook demonstrating the Integration of Llama Guard into LLM Workflows.
This is a collaboration between @harshaharod21, @AhmedIssa11 and me. This PR fixes #53