community[patch]: Add Passio Nutrition AI Food Search Tool to Community Package (#18278)

## Add Passio Nutrition AI Food Search Tool to Community Package

### Description
We propose adding a new tool to the `community` package, enabling
integration with Passio Nutrition AI for food search functionality. This
tool will provide a simple interface for retrieving nutrition facts
through the Passio Nutrition AI API, simplifying user access to
nutrition data based on food search queries.

### Implementation Details
- **Class Structure:** Implement `NutritionAI`, extending `BaseTool`. It
includes an `_run` method that accepts a query string and, optionally, a
`CallbackManagerForToolRun`.
- **API Integration:** Use `NutritionAIAPI` for the API wrapper,
encapsulating all interactions with the Passio Nutrition AI and
providing a clean API interface.
- **Error Handling:** Implement comprehensive error handling for API
request failures.

### Expected Outcome
- **User Benefits:** Enable easy querying of nutrition facts from Passio
Nutrition AI, enhancing the utility of the `langchain_community` package
for nutrition-related projects.
- **Functionality:** Provide a straightforward method for integrating
nutrition information retrieval into users' applications.

### Dependencies
- `langchain_core` for base tooling support
- `pydantic` for data validation and settings management
- Consider `requests` or another HTTP client library if not covered by
`NutritionAIAPI`.

### Tests and Documentation
- **Unit Tests:** Include tests that mock network interactions to ensure
tool reliability without external API dependency.
- **Documentation:** Create an example notebook in
`docs/docs/integrations/tools/passio_nutrition_ai.ipynb` showing usage,
setup, and example queries.

### Contribution Guidelines Compliance
- Adhere to the project's linting and formatting standards (`make
format`, `make lint`, `make test`).
- Ensure compliance with LangChain's contribution guidelines,
particularly around dependency management and package modifications.

### Additional Notes
- Aim for the tool to be a lightweight, focused addition, not
introducing significant new dependencies or complexity.
- Potential future enhancements could include caching for common queries
to improve performance.

### Twitter Handle
- Here is our Passio AI [twitter handle](https://twitter.com/@passio_ai)
where we announce our products.


If no one reviews your PR within a few days, please @-mention one of
baskaryan, efriis, eyurtsev, hwchase17.
This commit is contained in:
Ishani Vyas
2024-03-08 12:33:22 -08:00
committed by GitHub
parent bd9f98a20b
commit 2b0cbd65ba
7 changed files with 2737 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
"""Integration test for Bing Search API Wrapper."""
from langchain_core.utils import get_from_env
from langchain_community.utilities.passio_nutrition_ai import (
ManagedPassioLifeAuth,
NutritionAIAPI,
)
def test_call() -> None:
"""Test that call gives the correct answer."""
api_key = get_from_env("", "NUTRITIONAI_SUBSCRIPTION_KEY")
search = NutritionAIAPI(
nutritionai_subscription_key=api_key, auth_=ManagedPassioLifeAuth(api_key)
)
output = search.run("Chicken tikka masala")
assert output is not None
assert "Chicken tikka masala" == output["results"][0]["displayName"]