diff --git a/docs/docs/integrations/platforms/google.mdx b/docs/docs/integrations/platforms/google.mdx index bdb8f61e3d4..f7ae15b7925 100644 --- a/docs/docs/integrations/platforms/google.mdx +++ b/docs/docs/integrations/platforms/google.mdx @@ -140,6 +140,18 @@ See a [usage example](/docs/integrations/text_embedding/google_vertex_ai_palm). from langchain_google_vertexai import VertexAIEmbeddings ``` +### Palm Embedding + +We need to install `langchain-community` python package. + +```bash +pip install langchain-community +``` + +```python +from langchain_community.embeddings.google_palm import GooglePalmEmbeddings +``` + ## Document Loaders ### AlloyDB for PostgreSQL diff --git a/docs/docs/integrations/platforms/microsoft.mdx b/docs/docs/integrations/platforms/microsoft.mdx index 19a2df255ed..b1bb9768575 100644 --- a/docs/docs/integrations/platforms/microsoft.mdx +++ b/docs/docs/integrations/platforms/microsoft.mdx @@ -156,6 +156,20 @@ See a [usage example](/docs/integrations/document_loaders/microsoft_onedrive). from langchain_community.document_loaders import OneDriveLoader ``` +### Microsoft OneDrive File + +>[Microsoft OneDrive](https://en.wikipedia.org/wiki/OneDrive) (formerly `SkyDrive`) is a file-hosting service operated by Microsoft. + +First, you need to install a python package. + +```bash +pip install o365 +``` + +```python +from langchain_community.document_loaders import OneDriveFileLoader +``` + ### Microsoft Word @@ -338,7 +352,7 @@ Follow the documentation [here](/docs/integrations/tools/bing_search) to get a d The environment variable `BING_SUBSCRIPTION_KEY` and `BING_SEARCH_URL` are required from Bing Search resource. -```bash +```python from langchain_community.tools.bing_search import BingSearchResults from langchain_community.utilities import BingSearchAPIWrapper diff --git a/docs/docs/integrations/providers/robocorp.mdx b/docs/docs/integrations/providers/robocorp.mdx index ef38ae24240..7684af0f630 100644 --- a/docs/docs/integrations/providers/robocorp.mdx +++ b/docs/docs/integrations/providers/robocorp.mdx @@ -11,7 +11,8 @@ You need to install `langchain-robocorp` python package: pip install langchain-robocorp ``` -You will need a running instance of Action Server to communicate with from your agent application. See the [Robocorp Quickstart](https://github.com/robocorp/robocorp#quickstart) on how to setup Action Server and create your Actions. +You will need a running instance of `Action Server` to communicate with from your agent application. +See the [Robocorp Quickstart](https://github.com/robocorp/robocorp#quickstart) on how to setup Action Server and create your Actions. You can bootstrap a new project using Action Server `new` command. @@ -21,6 +22,12 @@ cd ./your-project-name action-server start ``` +## Tool + +```python +from langchain_robocorp.toolkits import ActionServerRequestTool +``` + ## Toolkit See a [usage example](/docs/integrations/toolkits/robocorp). diff --git a/docs/docs/integrations/providers/sap.mdx b/docs/docs/integrations/providers/sap.mdx new file mode 100644 index 00000000000..97cf2649b6e --- /dev/null +++ b/docs/docs/integrations/providers/sap.mdx @@ -0,0 +1,25 @@ +# SAP + +>[SAP SE(Wikipedia)](https://www.sap.com/about/company.html) is a German multinational +> software company. It develops enterprise software to manage business operation and +> customer relations. The company is the world's leading +> `enterprise resource planning (ERP)` software vendor. + +## Installation and Setup + +We need to install the `hdbcli` python package. + +```bash +pip install hdbcli +``` + +## Vectorstore + +>[SAP HANA Cloud Vector Engine](https://www.sap.com/events/teched/news-guide/ai.html#article8) is +> a vector store fully integrated into the `SAP HANA Cloud` database. + +See a [usage example](/docs/integrations/vectorstores/sap_hanavector). + +```python +from langchain_community.vectorstores.hanavector import HanaDB +``` diff --git a/docs/docs/integrations/toolkits/robocorp.ipynb b/docs/docs/integrations/toolkits/robocorp.ipynb index a5ba7b3fb49..cad0738c34d 100644 --- a/docs/docs/integrations/toolkits/robocorp.ipynb +++ b/docs/docs/integrations/toolkits/robocorp.ipynb @@ -44,7 +44,7 @@ "\n", "Let's add a dummy function to `action.py`.\n", "\n", - "```\n", + "```python\n", "@action\n", "def get_weather_forecast(city: str, days: int, scale: str = \"celsius\") -> str:\n", " \"\"\"\n", @@ -63,7 +63,7 @@ "\n", "We then start the server:\n", "\n", - "```\n", + "```bash\n", "action-server start\n", "```\n", "\n", @@ -193,7 +193,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.16" + "version": "3.10.12" } }, "nbformat": 4,