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

docs(notebook): Sparse threshold optimization with Pydantic AI notebook #568

Merged
merged 7 commits into from
Mar 25, 2025

Conversation

Joshua-Briggs
Copy link
Member

@Joshua-Briggs Joshua-Briggs commented Mar 21, 2025

User description

notebook includes hybrid router with sparse encoder using threshold optimization. This then feeds into Pydantic AI graph to use as a guardrail in a EV chatbot example.


PR Type

  • Enhancement

Description

  • Introduce a notebook for sparse threshold optimization.

  • Demonstrate hybrid router with sparse encoder integration.

  • Showcase guardrail usage within an EV chatbot example.


Changes walkthrough 📝

Relevant files
Enhancement
10-sparse-threshold-optimization-guardrails.ipynb
Add sparse threshold optimization notebook.                           

docs/10-sparse-threshold-optimization-guardrails.ipynb

  • New Jupyter notebook added.
  • Implements sparse threshold optimization.
  • Integrates hybrid router and sparse encoder.
  • Provides guardrail for EV chatbot via Pydantic AI graph.
  • +1493/-0

    Need help?
  • Type /help how to ... in the comments thread for any questions about PR-Agent usage.
  • Check out the documentation for more information.
  • notebook includes hybrid router with sparse encoder using threshold optimization. This then feeds into Pydantic AI graph to use as a guardrail in a EV chatbot example.
    Copy link

    PR Reviewer Guide 🔍

    Here are some key observations to aid the review process:

    ⏱️ Estimated effort to review: 1 🔵⚪⚪⚪⚪
    🧪 No relevant tests
    🔒 No security concerns identified
    ⚡ Recommended focus areas for review

    Documentation

    Ensure the notebook is clear, reproducible, and well documented, including the sparse encoding and guardrail integration features.

    {
    

    Copy link

    PR Code Suggestions ✨

    Explore these optional code suggestions:

    CategorySuggestion                                                                                                                                    Impact
    Possible issue
    Safely retrieve environment keys

    Use os.environ.get to safely retrieve API keys and avoid runtime KeyError when the
    keys aren’t already set.

    docs/10-sparse-threshold-optimization-guardrails.ipynb [121-145]

    -os.environ["AURELIO_API_KEY"] = os.environ["AURELIO_API_KEY"] or getpass("Enter your Aurelio API key: ")
    -os.environ["OPENAI_API_KEY"] = os.environ["OPENAI_API_KEY"] or getpass("Enter your OpenAI API key: ")
    +os.environ["AURELIO_API_KEY"] = os.environ.get("AURELIO_API_KEY") or getpass("Enter your Aurelio API key: ")
    +os.environ["OPENAI_API_KEY"] = os.environ.get("OPENAI_API_KEY") or getpass("Enter your OpenAI API key: ")
    Suggestion importance[1-10]: 7

    __

    Why: The suggestion improves robustness by using os.environ.get to avoid potential KeyErrors when API keys are missing. However, since the modification spans two separate code cells merged in the snippet, the impact is moderate.

    Medium

    @Joshua-Briggs Joshua-Briggs changed the title Sparse Threshold Optimization Notebook Sparse-Threshold-Optimization-Notebook Mar 21, 2025
    @Joshua-Briggs Joshua-Briggs changed the title Sparse-Threshold-Optimization-Notebook docs(notebook): Sparse threshold optimization notebook Mar 21, 2025
    @Joshua-Briggs Joshua-Briggs changed the title docs(notebook): Sparse threshold optimization notebook docs(notebook): Sparse threshold optimization with Pydantic AI notebook Mar 23, 2025
    @jamescalam jamescalam merged commit a5a547a into main Mar 25, 2025
    5 checks passed
    @jamescalam jamescalam deleted the josh/sparse-threshold-notebook branch March 25, 2025 08:26
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    2 participants