camel-ai 0.1.5.6__py3-none-any.whl → 0.1.5.7__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of camel-ai might be problematic. Click here for more details.

Files changed (61) hide show
  1. camel/__init__.py +1 -1
  2. camel/agents/chat_agent.py +1 -1
  3. camel/configs/gemini_config.py +15 -14
  4. camel/configs/litellm_config.py +1 -1
  5. camel/configs/openai_config.py +1 -1
  6. camel/configs/zhipuai_config.py +1 -1
  7. camel/models/base_model.py +4 -1
  8. camel/models/litellm_model.py +16 -0
  9. camel/models/ollama_model.py +16 -0
  10. camel/models/zhipuai_model.py +0 -1
  11. camel/toolkits/__init__.py +36 -0
  12. camel/toolkits/base.py +1 -1
  13. camel/toolkits/code_execution.py +1 -1
  14. camel/toolkits/github_toolkit.py +3 -2
  15. camel/toolkits/google_maps_toolkit.py +367 -0
  16. camel/toolkits/math_toolkit.py +79 -0
  17. camel/toolkits/open_api_toolkit.py +548 -0
  18. camel/toolkits/retrieval_toolkit.py +76 -0
  19. camel/toolkits/search_toolkit.py +326 -0
  20. camel/toolkits/slack_toolkit.py +308 -0
  21. camel/toolkits/twitter_toolkit.py +522 -0
  22. camel/toolkits/weather_toolkit.py +173 -0
  23. camel/utils/async_func.py +1 -1
  24. {camel_ai-0.1.5.6.dist-info → camel_ai-0.1.5.7.dist-info}/METADATA +2 -2
  25. {camel_ai-0.1.5.6.dist-info → camel_ai-0.1.5.7.dist-info}/RECORD +52 -53
  26. camel/functions/__init__.py +0 -51
  27. camel/functions/google_maps_function.py +0 -335
  28. camel/functions/math_functions.py +0 -61
  29. camel/functions/open_api_function.py +0 -508
  30. camel/functions/retrieval_functions.py +0 -61
  31. camel/functions/search_functions.py +0 -298
  32. camel/functions/slack_functions.py +0 -286
  33. camel/functions/twitter_function.py +0 -479
  34. camel/functions/weather_functions.py +0 -144
  35. /camel/{functions → toolkits}/open_api_specs/biztoc/__init__.py +0 -0
  36. /camel/{functions → toolkits}/open_api_specs/biztoc/ai-plugin.json +0 -0
  37. /camel/{functions → toolkits}/open_api_specs/biztoc/openapi.yaml +0 -0
  38. /camel/{functions → toolkits}/open_api_specs/coursera/__init__.py +0 -0
  39. /camel/{functions → toolkits}/open_api_specs/coursera/openapi.yaml +0 -0
  40. /camel/{functions → toolkits}/open_api_specs/create_qr_code/__init__.py +0 -0
  41. /camel/{functions → toolkits}/open_api_specs/create_qr_code/openapi.yaml +0 -0
  42. /camel/{functions → toolkits}/open_api_specs/klarna/__init__.py +0 -0
  43. /camel/{functions → toolkits}/open_api_specs/klarna/openapi.yaml +0 -0
  44. /camel/{functions → toolkits}/open_api_specs/nasa_apod/__init__.py +0 -0
  45. /camel/{functions → toolkits}/open_api_specs/nasa_apod/openapi.yaml +0 -0
  46. /camel/{functions → toolkits}/open_api_specs/outschool/__init__.py +0 -0
  47. /camel/{functions → toolkits}/open_api_specs/outschool/ai-plugin.json +0 -0
  48. /camel/{functions → toolkits}/open_api_specs/outschool/openapi.yaml +0 -0
  49. /camel/{functions → toolkits}/open_api_specs/outschool/paths/__init__.py +0 -0
  50. /camel/{functions → toolkits}/open_api_specs/outschool/paths/get_classes.py +0 -0
  51. /camel/{functions → toolkits}/open_api_specs/outschool/paths/search_teachers.py +0 -0
  52. /camel/{functions → toolkits}/open_api_specs/security_config.py +0 -0
  53. /camel/{functions → toolkits}/open_api_specs/speak/__init__.py +0 -0
  54. /camel/{functions → toolkits}/open_api_specs/speak/openapi.yaml +0 -0
  55. /camel/{functions → toolkits}/open_api_specs/web_scraper/__init__.py +0 -0
  56. /camel/{functions → toolkits}/open_api_specs/web_scraper/ai-plugin.json +0 -0
  57. /camel/{functions → toolkits}/open_api_specs/web_scraper/openapi.yaml +0 -0
  58. /camel/{functions → toolkits}/open_api_specs/web_scraper/paths/__init__.py +0 -0
  59. /camel/{functions → toolkits}/open_api_specs/web_scraper/paths/scraper.py +0 -0
  60. /camel/{functions → toolkits}/openai_function.py +0 -0
  61. {camel_ai-0.1.5.6.dist-info → camel_ai-0.1.5.7.dist-info}/WHEEL +0 -0
@@ -1,298 +0,0 @@
1
- # =========== Copyright 2023 @ CAMEL-AI.org. All Rights Reserved. ===========
2
- # Licensed under the Apache License, Version 2.0 (the “License”);
3
- # you may not use this file except in compliance with the License.
4
- # You may obtain a copy of the License at
5
- #
6
- # http://www.apache.org/licenses/LICENSE-2.0
7
- #
8
- # Unless required by applicable law or agreed to in writing, software
9
- # distributed under the License is distributed on an “AS IS” BASIS,
10
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
- # See the License for the specific language governing permissions and
12
- # limitations under the License.
13
- # =========== Copyright 2023 @ CAMEL-AI.org. All Rights Reserved. ===========
14
- import os
15
- from typing import Any, Dict, List
16
-
17
- from camel.functions.openai_function import OpenAIFunction
18
- from camel.utils import dependencies_required
19
-
20
-
21
- @dependencies_required('wikipedia')
22
- def search_wiki(entity: str) -> str:
23
- r"""Search the entity in WikiPedia and return the summary of the required
24
- page, containing factual information about the given entity.
25
-
26
- Args:
27
- entity (str): The entity to be searched.
28
-
29
- Returns:
30
- str: The search result. If the page corresponding to the entity
31
- exists, return the summary of this entity in a string.
32
- """
33
- import wikipedia
34
-
35
- result: str
36
-
37
- try:
38
- result = wikipedia.summary(entity, sentences=5, auto_suggest=False)
39
- except wikipedia.exceptions.DisambiguationError as e:
40
- result = wikipedia.summary(
41
- e.options[0], sentences=5, auto_suggest=False
42
- )
43
- except wikipedia.exceptions.PageError:
44
- result = (
45
- "There is no page in Wikipedia corresponding to entity "
46
- f"{entity}, please specify another word to describe the"
47
- " entity to be searched."
48
- )
49
- except wikipedia.exceptions.WikipediaException as e:
50
- result = f"An exception occurred during the search: {e}"
51
-
52
- return result
53
-
54
-
55
- def search_duckduckgo(
56
- query: str, source: str = "text", max_results: int = 10
57
- ) -> List[Dict[str, Any]]:
58
- r"""Use DuckDuckGo search engine to search information for the given query.
59
-
60
- This function queries the DuckDuckGo API for related topics to the given
61
- search term. The results are formatted into a list of dictionaries, each
62
- representing a search result.
63
-
64
- Args:
65
- query (str): The query to be searched.
66
- source (str): The type of information to query (e.g., "text",
67
- "images", "videos"). Defaults to "text".
68
- max_results (int): Max number of results, defaults to `10`.
69
-
70
- Returns:
71
- List[Dict[str, Any]]: A list of dictionaries where each dictionary
72
- represents a search result.
73
- """
74
- from duckduckgo_search import DDGS
75
- from requests.exceptions import RequestException
76
-
77
- ddgs = DDGS()
78
- responses: List[Dict[str, Any]] = []
79
-
80
- if source == "text":
81
- try:
82
- results = ddgs.text(keywords=query, max_results=max_results)
83
- except RequestException as e:
84
- # Handle specific exceptions or general request exceptions
85
- responses.append({"error": f"duckduckgo search failed.{e}"})
86
-
87
- # Iterate over results found
88
- for i, result in enumerate(results, start=1):
89
- # Creating a response object with a similar structure
90
- response = {
91
- "result_id": i,
92
- "title": result["title"],
93
- "description": result["body"],
94
- "url": result["href"],
95
- }
96
- responses.append(response)
97
-
98
- elif source == "images":
99
- try:
100
- results = ddgs.images(keywords=query, max_results=max_results)
101
- except RequestException as e:
102
- # Handle specific exceptions or general request exceptions
103
- responses.append({"error": f"duckduckgo search failed.{e}"})
104
-
105
- # Iterate over results found
106
- for i, result in enumerate(results, start=1):
107
- # Creating a response object with a similar structure
108
- response = {
109
- "result_id": i,
110
- "title": result["title"],
111
- "image": result["image"],
112
- "url": result["url"],
113
- "source": result["source"],
114
- }
115
- responses.append(response)
116
-
117
- elif source == "videos":
118
- try:
119
- results = ddgs.videos(keywords=query, max_results=max_results)
120
- except RequestException as e:
121
- # Handle specific exceptions or general request exceptions
122
- responses.append({"error": f"duckduckgo search failed.{e}"})
123
-
124
- # Iterate over results found
125
- for i, result in enumerate(results, start=1):
126
- # Creating a response object with a similar structure
127
- response = {
128
- "result_id": i,
129
- "title": result["title"],
130
- "description": result["description"],
131
- "embed_url": result["embed_url"],
132
- "publisher": result["publisher"],
133
- "duration": result["duration"],
134
- "published": result["published"],
135
- }
136
- responses.append(response)
137
-
138
- # If no answer found, return an empty list
139
- return responses
140
-
141
-
142
- def search_google(
143
- query: str, num_result_pages: int = 10
144
- ) -> List[Dict[str, Any]]:
145
- r"""Use Google search engine to search information for the given query.
146
-
147
- Args:
148
- query (str): The query to be searched.
149
- num_result_pages (int): The number of result pages to retrieve.
150
-
151
- Returns:
152
- List[Dict[str, Any]]: A list of dictionaries where each dictionary
153
- represents a website.
154
- Each dictionary contains the following keys:
155
- - 'result_id': A number in order.
156
- - 'title': The title of the website.
157
- - 'description': A brief description of the website.
158
- - 'long_description': More detail of the website.
159
- - 'url': The URL of the website.
160
-
161
- Example:
162
- {
163
- 'result_id': 1,
164
- 'title': 'OpenAI',
165
- 'description': 'An organization focused on ensuring that
166
- artificial general intelligence benefits all of humanity.',
167
- 'long_description': 'OpenAI is a non-profit artificial
168
- intelligence research company. Our goal is to advance digital
169
- intelligence in the way that is most likely to benefit humanity
170
- as a whole',
171
- 'url': 'https://www.openai.com'
172
- }
173
- title, description, url of a website.
174
- """
175
- import requests
176
-
177
- # https://developers.google.com/custom-search/v1/overview
178
- GOOGLE_API_KEY = os.getenv("GOOGLE_API_KEY")
179
- # https://cse.google.com/cse/all
180
- SEARCH_ENGINE_ID = os.getenv("SEARCH_ENGINE_ID")
181
-
182
- # Using the first page
183
- start_page_idx = 1
184
- # Different language may get different result
185
- search_language = "en"
186
- # How many pages to return
187
- num_result_pages = 10
188
- # Constructing the URL
189
- # Doc: https://developers.google.com/custom-search/v1/using_rest
190
- url = (
191
- f"https://www.googleapis.com/customsearch/v1?"
192
- f"key={GOOGLE_API_KEY}&cx={SEARCH_ENGINE_ID}&q={query}&start="
193
- f"{start_page_idx}&lr={search_language}&num={num_result_pages}"
194
- )
195
-
196
- responses = []
197
- # Fetch the results given the URL
198
- try:
199
- # Make the get
200
- result = requests.get(url)
201
- data = result.json()
202
-
203
- # Get the result items
204
- if "items" in data:
205
- search_items = data.get("items")
206
-
207
- # Iterate over 10 results found
208
- for i, search_item in enumerate(search_items, start=1):
209
- if "og:description" in search_item["pagemap"]["metatags"][0]:
210
- long_description = search_item["pagemap"]["metatags"][0][
211
- "og:description"
212
- ]
213
- else:
214
- long_description = "N/A"
215
- # Get the page title
216
- title = search_item.get("title")
217
- # Page snippet
218
- snippet = search_item.get("snippet")
219
-
220
- # Extract the page url
221
- link = search_item.get("link")
222
- response = {
223
- "result_id": i,
224
- "title": title,
225
- "description": snippet,
226
- "long_description": long_description,
227
- "url": link,
228
- }
229
- responses.append(response)
230
- else:
231
- responses.append({"error": "google search failed."})
232
-
233
- except requests.RequestException:
234
- # Handle specific exceptions or general request exceptions
235
- responses.append({"error": "google search failed."})
236
- # If no answer found, return an empty list
237
- return responses
238
-
239
-
240
- @dependencies_required('wolframalpha')
241
- def query_wolfram_alpha(query: str, is_detailed: bool) -> str:
242
- r"""Queries Wolfram|Alpha and returns the result. Wolfram|Alpha is an
243
- answer engine developed by Wolfram Research. It is offered as an online
244
- service that answers factual queries by computing answers from externally
245
- sourced data.
246
-
247
- Args:
248
- query (str): The query to send to Wolfram Alpha.
249
- is_detailed (bool): Whether to include additional details in the
250
- result.
251
-
252
- Returns:
253
- str: The result from Wolfram Alpha, formatted as a string.
254
- """
255
- import wolframalpha
256
-
257
- WOLFRAMALPHA_APP_ID = os.environ.get('WOLFRAMALPHA_APP_ID')
258
- if not WOLFRAMALPHA_APP_ID:
259
- raise ValueError(
260
- "`WOLFRAMALPHA_APP_ID` not found in environment "
261
- "variables. Get `WOLFRAMALPHA_APP_ID` here: "
262
- "`https://products.wolframalpha.com/api/`."
263
- )
264
-
265
- try:
266
- client = wolframalpha.Client(WOLFRAMALPHA_APP_ID)
267
- res = client.query(query)
268
- assumption = next(res.pods).text or "No assumption made."
269
- answer = next(res.results).text or "No answer found."
270
- except Exception as e:
271
- if isinstance(e, StopIteration):
272
- return "Wolfram Alpha wasn't able to answer it"
273
- else:
274
- error_message = f"Wolfram Alpha wasn't able to answer it" f"{e!s}."
275
- return error_message
276
-
277
- result = f"Assumption:\n{assumption}\n\nAnswer:\n{answer}"
278
-
279
- # Add additional details in the result
280
- if is_detailed:
281
- result += '\n'
282
- for pod in res.pods:
283
- result += '\n' + pod['@title'] + ':\n'
284
- for sub in pod.subpods:
285
- result += (sub.plaintext or "None") + '\n'
286
-
287
- return result.rstrip() # Remove trailing whitespace
288
-
289
-
290
- SEARCH_FUNCS: List[OpenAIFunction] = [
291
- OpenAIFunction(func) # type: ignore[arg-type]
292
- for func in [
293
- search_wiki,
294
- search_google,
295
- search_duckduckgo,
296
- query_wolfram_alpha,
297
- ]
298
- ]
@@ -1,286 +0,0 @@
1
- # =========== Copyright 2023 @ CAMEL-AI.org. All Rights Reserved. ===========
2
- # Licensed under the Apache License, Version 2.0 (the “License”);
3
- # you may not use this file except in compliance with the License.
4
- # You may obtain a copy of the License at
5
- #
6
- # http://www.apache.org/licenses/LICENSE-2.0
7
- #
8
- # Unless required by applicable law or agreed to in writing, software
9
- # distributed under the License is distributed on an “AS IS” BASIS,
10
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
- # See the License for the specific language governing permissions and
12
- # limitations under the License.
13
- # =========== Copyright 2023 @ CAMEL-AI.org. All Rights Reserved. ===========
14
-
15
- from __future__ import annotations
16
-
17
- import json
18
- import logging
19
- import os
20
- from typing import TYPE_CHECKING, List, Optional
21
-
22
- from camel.utils import dependencies_required
23
-
24
- if TYPE_CHECKING:
25
- from ssl import SSLContext
26
-
27
- from slack_sdk import WebClient
28
-
29
- from camel.functions import OpenAIFunction
30
-
31
- logger = logging.getLogger(__name__)
32
-
33
-
34
- @dependencies_required('slack_sdk')
35
- def _login_slack(
36
- slack_token: Optional[str] = None,
37
- ssl: Optional[SSLContext] = None,
38
- ) -> WebClient:
39
- r"""Authenticate using the Slack API.
40
-
41
- Args:
42
- slack_token (str, optional): The Slack API token. If not provided, it
43
- attempts to retrieve the token from the environment variable
44
- SLACK_BOT_TOKEN or SLACK_USER_TOKEN.
45
- ssl (SSLContext, optional): SSL context for secure connections.
46
- Defaults to `None`.
47
-
48
- Returns:
49
- WebClient: A WebClient object for interacting with Slack API.
50
-
51
- Raises:
52
- ImportError: If slack_sdk package is not installed.
53
- KeyError: If SLACK_BOT_TOKEN or SLACK_USER_TOKEN environment variables
54
- are not set.
55
- """
56
- from slack_sdk import WebClient
57
-
58
- if not slack_token:
59
- slack_token = os.environ.get("SLACK_BOT_TOKEN") or os.environ.get(
60
- "SLACK_USER_TOKEN"
61
- )
62
- if not slack_token:
63
- raise KeyError(
64
- "SLACK_BOT_TOKEN or SLACK_USER_TOKEN environment variable not "
65
- "set."
66
- )
67
-
68
- client = WebClient(token=slack_token, ssl=ssl)
69
- logger.info("Slack login successful.")
70
- return client
71
-
72
-
73
- def create_slack_channel(name: str, is_private: Optional[bool] = True) -> str:
74
- r"""Creates a new slack channel, either public or private.
75
-
76
- Args:
77
- name (str): Name of the public or private channel to create.
78
- is_private (bool, optional): Whether to create a private channel
79
- instead of a public one. Defaults to `True`.
80
-
81
- Returns:
82
- str: JSON string containing information about Slack channel created.
83
-
84
- Raises:
85
- SlackApiError: If there is an error during get slack channel
86
- information.
87
- """
88
- from slack_sdk.errors import SlackApiError
89
-
90
- try:
91
- slack_client = _login_slack()
92
- response = slack_client.conversations_create(
93
- name=name, is_private=is_private
94
- )
95
- channel_id = response["channel"]["id"]
96
- response = slack_client.conversations_archive(channel=channel_id)
97
- return str(response)
98
- except SlackApiError as e:
99
- return f"Error creating conversation: {e.response['error']}"
100
-
101
-
102
- def join_slack_channel(channel_id: str) -> str:
103
- r"""Joins an existing Slack channel.
104
-
105
- Args:
106
- channel_id (str): The ID of the Slack channel to join.
107
-
108
- Returns:
109
- str: A confirmation message indicating whether join successfully or an
110
- error message.
111
-
112
- Raises:
113
- SlackApiError: If there is an error during get slack channel
114
- information.
115
- """
116
- from slack_sdk.errors import SlackApiError
117
-
118
- try:
119
- slack_client = _login_slack()
120
- response = slack_client.conversations_join(channel=channel_id)
121
- return str(response)
122
- except SlackApiError as e:
123
- return f"Error creating conversation: {e.response['error']}"
124
-
125
-
126
- def leave_slack_channel(channel_id: str) -> str:
127
- r"""Leaves an existing Slack channel.
128
-
129
- Args:
130
- channel_id (str): The ID of the Slack channel to leave.
131
-
132
- Returns:
133
- str: A confirmation message indicating whether leave successfully or an
134
- error message.
135
-
136
- Raises:
137
- SlackApiError: If there is an error during get slack channel
138
- information.
139
- """
140
- from slack_sdk.errors import SlackApiError
141
-
142
- try:
143
- slack_client = _login_slack()
144
- response = slack_client.conversations_leave(channel=channel_id)
145
- return str(response)
146
- except SlackApiError as e:
147
- return f"Error creating conversation: {e.response['error']}"
148
-
149
-
150
- def get_slack_channel_information() -> str:
151
- r"""Retrieve Slack channels and return relevant information in JSON format.
152
-
153
- Returns:
154
- str: JSON string containing information about Slack channels.
155
-
156
- Raises:
157
- SlackApiError: If there is an error during get slack channel
158
- information.
159
- """
160
- from slack_sdk.errors import SlackApiError
161
-
162
- try:
163
- slack_client = _login_slack()
164
- response = slack_client.conversations_list()
165
- conversations = response["channels"]
166
- # Filtering conversations and extracting required information
167
- filtered_result = [
168
- {
169
- key: conversation[key]
170
- for key in ("id", "name", "created", "num_members")
171
- }
172
- for conversation in conversations
173
- if all(
174
- key in conversation
175
- for key in ("id", "name", "created", "num_members")
176
- )
177
- ]
178
- return json.dumps(filtered_result, ensure_ascii=False)
179
- except SlackApiError as e:
180
- return f"Error creating conversation: {e.response['error']}"
181
-
182
-
183
- def get_slack_channel_message(channel_id: str) -> str:
184
- r"""Retrieve messages from a Slack channel.
185
-
186
- Args:
187
- channel_id (str): The ID of the Slack channel to retrieve messages
188
- from.
189
-
190
- Returns:
191
- str: JSON string containing filtered message data.
192
-
193
- Raises:
194
- SlackApiError: If there is an error during get slack channel message.
195
- """
196
- from slack_sdk.errors import SlackApiError
197
-
198
- try:
199
- slack_client = _login_slack()
200
- result = slack_client.conversations_history(channel=channel_id)
201
- messages = result["messages"]
202
- filtered_messages = [
203
- {key: message[key] for key in ("user", "text", "ts")}
204
- for message in messages
205
- if all(key in message for key in ("user", "text", "ts"))
206
- ]
207
- return json.dumps(filtered_messages, ensure_ascii=False)
208
- except SlackApiError as e:
209
- return f"Error retrieving messages: {e.response['error']}"
210
-
211
-
212
- def send_slack_message(
213
- message: str,
214
- channel_id: str,
215
- user: Optional[str] = None,
216
- ) -> str:
217
- r"""Send a message to a Slack channel.
218
-
219
- Args:
220
- message (str): The message to send.
221
- channel_id (str): The ID of the Slack channel to send message.
222
- user (Optional[str]): The user ID of the recipient. Defaults to `None`.
223
-
224
- Returns:
225
- str: A confirmation message indicating whether the message was sent
226
- successfully or an error message.
227
-
228
- Raises:
229
- SlackApiError: If an error occurs while sending the message.
230
- """
231
- from slack_sdk.errors import SlackApiError
232
-
233
- try:
234
- slack_client = _login_slack()
235
- if user:
236
- response = slack_client.chat_postEphemeral(
237
- channel=channel_id, text=message, user=user
238
- )
239
- else:
240
- response = slack_client.chat_postMessage(
241
- channel=channel_id, text=message
242
- )
243
- return str(response)
244
- except SlackApiError as e:
245
- return f"Error creating conversation: {e.response['error']}"
246
-
247
-
248
- def delete_slack_message(
249
- time_stamp: str,
250
- channel_id: str,
251
- ) -> str:
252
- r"""Delete a message to a Slack channel.
253
-
254
- Args:
255
- time_stamp (str): Timestamp of the message to be deleted.
256
- channel_id (str): The ID of the Slack channel to delete message.
257
-
258
- Returns:
259
- str: A confirmation message indicating whether the message was delete
260
- successfully or an error message.
261
-
262
- Raises:
263
- SlackApiError: If an error occurs while sending the message.
264
- """
265
- from slack_sdk.errors import SlackApiError
266
-
267
- try:
268
- slack_client = _login_slack()
269
- response = slack_client.chat_delete(channel=channel_id, ts=time_stamp)
270
- return str(response)
271
- except SlackApiError as e:
272
- return f"Error creating conversation: {e.response['error']}"
273
-
274
-
275
- SLACK_FUNCS: List[OpenAIFunction] = [
276
- OpenAIFunction(func) # type: ignore[arg-type]
277
- for func in [
278
- create_slack_channel,
279
- join_slack_channel,
280
- leave_slack_channel,
281
- get_slack_channel_information,
282
- get_slack_channel_message,
283
- send_slack_message,
284
- delete_slack_message,
285
- ]
286
- ]