Skip to content
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

feat: add tutorial notebook for chainguard #78

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.vscode
.idea/
.venv/
.env
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added some notes about using a .env file for the relevant environment variables, so I thought it was pertinent to add .env to the .gitignore, too.


**/.ipynb_checkpoints
**/.DS_Store
2 changes: 2 additions & 0 deletions notebooks/en/_toctree.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
title: Advanced RAG on HuggingFace documentation using LangChain
- local: rag_evaluation
title: RAG Evaluation
- local: rag_prompt_injection_defense_with_chainguard
title: Protect your LangChain RAG Apps with ChainGuard
- local: prompt_tuning_peft
title: Prompt tuning with PEFT
- local: labelling_feedback_setfit
Expand Down
1 change: 1 addition & 0 deletions notebooks/en/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Check out the recently added notebooks:
- [Advanced RAG on HuggingFace documentation using LangChain](advanced_rag)
- [Detecting Issues in a Text Dataset with Cleanlab](issues_in_text_dataset)
- [Annotate text data using Active Learning with Cleanlab](annotate_text_data_transformers_via_active_learning)
- [Protect your LangChain RAG Apps with ChainGuard](protect_langchain_apps_with_chainguard)

You can also check out the notebooks in the cookbook's [GitHub repo](https://github.com/huggingface/cookbook).

Expand Down
Loading