mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
docs: integrations
missed links (#24681)
Added missed links; missed provider page
This commit is contained in:
parent
59880a9147
commit
148766ddc1
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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).
|
||||
|
25
docs/docs/integrations/providers/sap.mdx
Normal file
25
docs/docs/integrations/providers/sap.mdx
Normal 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
|
||||
```
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user