docs: integrations missed links (#24681)

Added missed links; missed provider page
This commit is contained in:
Leonid Ganeline 2024-07-25 20:38:25 -07:00 committed by GitHub
parent 59880a9147
commit 148766ddc1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 63 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -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).

View File

@ -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
```

View File

@ -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,