mirror of
https://github.com/hwchase17/langchain
synced 2024-11-02 09:40:22 +00:00
ed58eeb9c5
Moved the following modules to new package langchain-community in a backwards compatible fashion: ``` mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community ``` Moved the following to core ``` mv langchain/langchain/utils/json_schema.py core/langchain_core/utils mv langchain/langchain/utils/html.py core/langchain_core/utils mv langchain/langchain/utils/strings.py core/langchain_core/utils cat langchain/langchain/utils/env.py >> core/langchain_core/utils/env.py rm langchain/langchain/utils/env.py ``` See .scripts/community_split/script_integrations.sh for all changes
61 lines
2.2 KiB
Python
61 lines
2.2 KiB
Python
"""From https://github.com/SidU/teams-langchain-js/wiki/Connecting-IFTTT-Services.
|
|
|
|
# Creating a webhook
|
|
- Go to https://ifttt.com/create
|
|
|
|
# Configuring the "If This"
|
|
- Click on the "If This" button in the IFTTT interface.
|
|
- Search for "Webhooks" in the search bar.
|
|
- Choose the first option for "Receive a web request with a JSON payload."
|
|
- Choose an Event Name that is specific to the service you plan to connect to.
|
|
This will make it easier for you to manage the webhook URL.
|
|
For example, if you're connecting to Spotify, you could use "Spotify" as your
|
|
Event Name.
|
|
- Click the "Create Trigger" button to save your settings and create your webhook.
|
|
|
|
# Configuring the "Then That"
|
|
- Tap on the "Then That" button in the IFTTT interface.
|
|
- Search for the service you want to connect, such as Spotify.
|
|
- Choose an action from the service, such as "Add track to a playlist".
|
|
- Configure the action by specifying the necessary details, such as the playlist name,
|
|
e.g., "Songs from AI".
|
|
- Reference the JSON Payload received by the Webhook in your action. For the Spotify
|
|
scenario, choose "{{JsonPayload}}" as your search query.
|
|
- Tap the "Create Action" button to save your action settings.
|
|
- Once you have finished configuring your action, click the "Finish" button to
|
|
complete the setup.
|
|
- Congratulations! You have successfully connected the Webhook to the desired
|
|
service, and you're ready to start receiving data and triggering actions 🎉
|
|
|
|
# Finishing up
|
|
- To get your webhook URL go to https://ifttt.com/maker_webhooks/settings
|
|
- Copy the IFTTT key value from there. The URL is of the form
|
|
https://maker.ifttt.com/use/YOUR_IFTTT_KEY. Grab the YOUR_IFTTT_KEY value.
|
|
"""
|
|
from typing import Optional
|
|
|
|
import requests
|
|
from langchain_core.callbacks import CallbackManagerForToolRun
|
|
from langchain_core.tools import BaseTool
|
|
|
|
|
|
class IFTTTWebhook(BaseTool):
|
|
"""IFTTT Webhook.
|
|
|
|
Args:
|
|
name: name of the tool
|
|
description: description of the tool
|
|
url: url to hit with the json event.
|
|
"""
|
|
|
|
url: str
|
|
|
|
def _run(
|
|
self,
|
|
tool_input: str,
|
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
body = {"this": tool_input}
|
|
response = requests.post(self.url, data=body)
|
|
return response.text
|