camel-ai 0.1.5.5__py3-none-any.whl → 0.1.5.9__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.
- camel/__init__.py +1 -1
- camel/agents/chat_agent.py +3 -3
- camel/agents/critic_agent.py +1 -1
- camel/agents/deductive_reasoner_agent.py +4 -4
- camel/agents/embodied_agent.py +1 -1
- camel/agents/knowledge_graph_agent.py +13 -17
- camel/agents/role_assignment_agent.py +1 -1
- camel/agents/search_agent.py +4 -5
- camel/agents/task_agent.py +5 -6
- camel/configs/__init__.py +15 -0
- camel/configs/gemini_config.py +98 -0
- camel/configs/groq_config.py +119 -0
- camel/configs/litellm_config.py +1 -1
- camel/configs/mistral_config.py +81 -0
- camel/configs/ollama_config.py +1 -1
- camel/configs/openai_config.py +1 -1
- camel/configs/vllm_config.py +103 -0
- camel/configs/zhipuai_config.py +1 -1
- camel/embeddings/__init__.py +2 -0
- camel/embeddings/mistral_embedding.py +89 -0
- camel/interpreters/__init__.py +2 -0
- camel/interpreters/ipython_interpreter.py +167 -0
- camel/models/__init__.py +10 -0
- camel/models/anthropic_model.py +7 -2
- camel/models/azure_openai_model.py +152 -0
- camel/models/base_model.py +9 -2
- camel/models/gemini_model.py +215 -0
- camel/models/groq_model.py +131 -0
- camel/models/litellm_model.py +26 -4
- camel/models/mistral_model.py +169 -0
- camel/models/model_factory.py +33 -5
- camel/models/ollama_model.py +21 -2
- camel/models/open_source_model.py +11 -3
- camel/models/openai_model.py +7 -2
- camel/models/stub_model.py +4 -4
- camel/models/vllm_model.py +138 -0
- camel/models/zhipuai_model.py +7 -4
- camel/prompts/__init__.py +2 -2
- camel/prompts/task_prompt_template.py +4 -4
- camel/prompts/{descripte_video_prompt.py → video_description_prompt.py} +1 -1
- camel/retrievers/auto_retriever.py +2 -0
- camel/storages/graph_storages/neo4j_graph.py +5 -0
- camel/toolkits/__init__.py +36 -0
- camel/toolkits/base.py +1 -1
- camel/toolkits/code_execution.py +1 -1
- camel/toolkits/github_toolkit.py +3 -2
- camel/toolkits/google_maps_toolkit.py +367 -0
- camel/toolkits/math_toolkit.py +79 -0
- camel/toolkits/open_api_toolkit.py +548 -0
- camel/toolkits/retrieval_toolkit.py +76 -0
- camel/toolkits/search_toolkit.py +326 -0
- camel/toolkits/slack_toolkit.py +308 -0
- camel/toolkits/twitter_toolkit.py +522 -0
- camel/toolkits/weather_toolkit.py +173 -0
- camel/types/enums.py +163 -30
- camel/utils/__init__.py +4 -0
- camel/utils/async_func.py +1 -1
- camel/utils/token_counting.py +182 -40
- {camel_ai-0.1.5.5.dist-info → camel_ai-0.1.5.9.dist-info}/METADATA +43 -3
- camel_ai-0.1.5.9.dist-info/RECORD +165 -0
- camel/functions/__init__.py +0 -51
- camel/functions/google_maps_function.py +0 -335
- camel/functions/math_functions.py +0 -61
- camel/functions/open_api_function.py +0 -508
- camel/functions/retrieval_functions.py +0 -61
- camel/functions/search_functions.py +0 -298
- camel/functions/slack_functions.py +0 -286
- camel/functions/twitter_function.py +0 -479
- camel/functions/weather_functions.py +0 -144
- camel_ai-0.1.5.5.dist-info/RECORD +0 -155
- /camel/{functions → toolkits}/open_api_specs/biztoc/__init__.py +0 -0
- /camel/{functions → toolkits}/open_api_specs/biztoc/ai-plugin.json +0 -0
- /camel/{functions → toolkits}/open_api_specs/biztoc/openapi.yaml +0 -0
- /camel/{functions → toolkits}/open_api_specs/coursera/__init__.py +0 -0
- /camel/{functions → toolkits}/open_api_specs/coursera/openapi.yaml +0 -0
- /camel/{functions → toolkits}/open_api_specs/create_qr_code/__init__.py +0 -0
- /camel/{functions → toolkits}/open_api_specs/create_qr_code/openapi.yaml +0 -0
- /camel/{functions → toolkits}/open_api_specs/klarna/__init__.py +0 -0
- /camel/{functions → toolkits}/open_api_specs/klarna/openapi.yaml +0 -0
- /camel/{functions → toolkits}/open_api_specs/nasa_apod/__init__.py +0 -0
- /camel/{functions → toolkits}/open_api_specs/nasa_apod/openapi.yaml +0 -0
- /camel/{functions → toolkits}/open_api_specs/outschool/__init__.py +0 -0
- /camel/{functions → toolkits}/open_api_specs/outschool/ai-plugin.json +0 -0
- /camel/{functions → toolkits}/open_api_specs/outschool/openapi.yaml +0 -0
- /camel/{functions → toolkits}/open_api_specs/outschool/paths/__init__.py +0 -0
- /camel/{functions → toolkits}/open_api_specs/outschool/paths/get_classes.py +0 -0
- /camel/{functions → toolkits}/open_api_specs/outschool/paths/search_teachers.py +0 -0
- /camel/{functions → toolkits}/open_api_specs/security_config.py +0 -0
- /camel/{functions → toolkits}/open_api_specs/speak/__init__.py +0 -0
- /camel/{functions → toolkits}/open_api_specs/speak/openapi.yaml +0 -0
- /camel/{functions → toolkits}/open_api_specs/web_scraper/__init__.py +0 -0
- /camel/{functions → toolkits}/open_api_specs/web_scraper/ai-plugin.json +0 -0
- /camel/{functions → toolkits}/open_api_specs/web_scraper/openapi.yaml +0 -0
- /camel/{functions → toolkits}/open_api_specs/web_scraper/paths/__init__.py +0 -0
- /camel/{functions → toolkits}/open_api_specs/web_scraper/paths/scraper.py +0 -0
- /camel/{functions → toolkits}/openai_function.py +0 -0
- {camel_ai-0.1.5.5.dist-info → camel_ai-0.1.5.9.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,367 @@
|
|
|
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 functools import wraps
|
|
16
|
+
from typing import Any, Callable, List, Optional, Tuple, Union
|
|
17
|
+
|
|
18
|
+
from camel.toolkits.base import BaseToolkit
|
|
19
|
+
from camel.toolkits.openai_function import OpenAIFunction
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def handle_googlemaps_exceptions(
|
|
23
|
+
func: Callable[..., Any],
|
|
24
|
+
) -> Callable[..., Any]:
|
|
25
|
+
r"""Decorator to catch and handle exceptions raised by Google Maps API
|
|
26
|
+
calls.
|
|
27
|
+
|
|
28
|
+
Args:
|
|
29
|
+
func (Callable): The function to be wrapped by the decorator.
|
|
30
|
+
|
|
31
|
+
Returns:
|
|
32
|
+
Callable: A wrapper function that calls the wrapped function and
|
|
33
|
+
handles exceptions.
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
@wraps(func)
|
|
37
|
+
def wrapper(*args: Any, **kwargs: Any) -> Any:
|
|
38
|
+
try:
|
|
39
|
+
from googlemaps.exceptions import ( # type: ignore[import-untyped] # isort: skip
|
|
40
|
+
ApiError,
|
|
41
|
+
HTTPError,
|
|
42
|
+
Timeout,
|
|
43
|
+
TransportError,
|
|
44
|
+
)
|
|
45
|
+
except ImportError:
|
|
46
|
+
raise ImportError(
|
|
47
|
+
"Please install `googlemaps` first. You can install "
|
|
48
|
+
"it by running `pip install googlemaps`."
|
|
49
|
+
)
|
|
50
|
+
|
|
51
|
+
try:
|
|
52
|
+
return func(*args, **kwargs)
|
|
53
|
+
except ApiError as e:
|
|
54
|
+
return (
|
|
55
|
+
'An exception returned by the remote API. '
|
|
56
|
+
f'Status: {e.status}, Message: {e.message}'
|
|
57
|
+
)
|
|
58
|
+
except HTTPError as e:
|
|
59
|
+
return (
|
|
60
|
+
'An unexpected HTTP error occurred. '
|
|
61
|
+
f'Status Code: {e.status_code}'
|
|
62
|
+
)
|
|
63
|
+
except Timeout:
|
|
64
|
+
return 'The request timed out.'
|
|
65
|
+
except TransportError as e:
|
|
66
|
+
return (
|
|
67
|
+
'Something went wrong while trying to execute the '
|
|
68
|
+
f'request. Details: {e.base_exception}'
|
|
69
|
+
)
|
|
70
|
+
except Exception as e:
|
|
71
|
+
return f'An unexpected error occurred: {e}'
|
|
72
|
+
|
|
73
|
+
return wrapper
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
class GoogleMapsToolkit(BaseToolkit):
|
|
77
|
+
r"""A class representing a toolkit for interacting with GoogleMaps API.
|
|
78
|
+
|
|
79
|
+
This class provides methods for validating addresses, retrieving elevation,
|
|
80
|
+
and fetching timezone information using the Google Maps API.
|
|
81
|
+
"""
|
|
82
|
+
|
|
83
|
+
def _import_googlemaps_or_raise(self) -> Any:
|
|
84
|
+
r"""Attempts to import the `googlemaps` library and returns it.
|
|
85
|
+
|
|
86
|
+
Returns:
|
|
87
|
+
module: The `googlemaps` module if successfully imported.
|
|
88
|
+
|
|
89
|
+
Raises:
|
|
90
|
+
ImportError: If the `googlemaps` library is not installed, this
|
|
91
|
+
error is raised with a message instructing how to install the
|
|
92
|
+
library using pip.
|
|
93
|
+
"""
|
|
94
|
+
try:
|
|
95
|
+
import googlemaps
|
|
96
|
+
|
|
97
|
+
return googlemaps
|
|
98
|
+
except ImportError:
|
|
99
|
+
raise ImportError(
|
|
100
|
+
"Please install `googlemaps` first. You can install "
|
|
101
|
+
"it by running `pip install googlemaps`."
|
|
102
|
+
)
|
|
103
|
+
|
|
104
|
+
def _get_googlemaps_api_key(self) -> str:
|
|
105
|
+
r"""Retrieve the Google Maps API key from environment variables.
|
|
106
|
+
|
|
107
|
+
Returns:
|
|
108
|
+
str: The Google Maps API key.
|
|
109
|
+
|
|
110
|
+
Raises:
|
|
111
|
+
ValueError: If the API key is not found in the environment
|
|
112
|
+
variables.
|
|
113
|
+
"""
|
|
114
|
+
# Get `GOOGLEMAPS_API_KEY` here:
|
|
115
|
+
# https://console.cloud.google.com/apis/credentials
|
|
116
|
+
GOOGLEMAPS_API_KEY = os.environ.get('GOOGLEMAPS_API_KEY')
|
|
117
|
+
if not GOOGLEMAPS_API_KEY:
|
|
118
|
+
raise ValueError(
|
|
119
|
+
"`GOOGLEMAPS_API_KEY` not found in environment "
|
|
120
|
+
"variables. `GOOGLEMAPS_API_KEY` API keys are "
|
|
121
|
+
"generated in the `Credentials` page of the "
|
|
122
|
+
"`APIs & Services` tab of "
|
|
123
|
+
"https://console.cloud.google.com/apis/credentials."
|
|
124
|
+
)
|
|
125
|
+
return GOOGLEMAPS_API_KEY
|
|
126
|
+
|
|
127
|
+
def get_address_description(
|
|
128
|
+
self,
|
|
129
|
+
address: Union[str, List[str]],
|
|
130
|
+
region_code: Optional[str] = None,
|
|
131
|
+
locality: Optional[str] = None,
|
|
132
|
+
) -> str:
|
|
133
|
+
r"""Validates an address via Google Maps API, returns a descriptive
|
|
134
|
+
summary.
|
|
135
|
+
|
|
136
|
+
Validates an address using Google Maps API, returning a summary that
|
|
137
|
+
includes information on address completion, formatted address, location
|
|
138
|
+
coordinates, and metadata types that are true for the given address.
|
|
139
|
+
|
|
140
|
+
Args:
|
|
141
|
+
address (Union[str, List[str]]): The address or components to
|
|
142
|
+
validate. Can be a single string or a list representing
|
|
143
|
+
different parts.
|
|
144
|
+
region_code (str, optional): Country code for regional restriction,
|
|
145
|
+
helps narrowing down results. (default: :obj:`None`)
|
|
146
|
+
locality (str, optional): Restricts validation to a specific
|
|
147
|
+
locality, e.g., "Mountain View". (default: :obj:`None`)
|
|
148
|
+
|
|
149
|
+
Returns:
|
|
150
|
+
str: Summary of the address validation results, including
|
|
151
|
+
information on address completion, formatted address,
|
|
152
|
+
geographical coordinates (latitude and longitude), and metadata
|
|
153
|
+
types true for the address.
|
|
154
|
+
|
|
155
|
+
Raises:
|
|
156
|
+
ImportError: If the `googlemaps` library is not installed.
|
|
157
|
+
Exception: For unexpected errors during the address validation.
|
|
158
|
+
"""
|
|
159
|
+
googlemaps = self._import_googlemaps_or_raise()
|
|
160
|
+
google_maps_api_key = self._get_googlemaps_api_key()
|
|
161
|
+
try:
|
|
162
|
+
gmaps = googlemaps.Client(key=google_maps_api_key)
|
|
163
|
+
except Exception as e:
|
|
164
|
+
return f"Error: {e!s}"
|
|
165
|
+
|
|
166
|
+
try:
|
|
167
|
+
addressvalidation_result = gmaps.addressvalidation(
|
|
168
|
+
[address],
|
|
169
|
+
regionCode=region_code,
|
|
170
|
+
locality=locality,
|
|
171
|
+
enableUspsCass=False,
|
|
172
|
+
) # Always False as per requirements
|
|
173
|
+
|
|
174
|
+
# Check if the result contains an error
|
|
175
|
+
if 'error' in addressvalidation_result:
|
|
176
|
+
error_info = addressvalidation_result['error']
|
|
177
|
+
error_message = error_info.get(
|
|
178
|
+
'message', 'An unknown error occurred'
|
|
179
|
+
)
|
|
180
|
+
error_status = error_info.get('status', 'UNKNOWN_STATUS')
|
|
181
|
+
error_code = error_info.get('code', 'UNKNOWN_CODE')
|
|
182
|
+
return (
|
|
183
|
+
f"Address validation failed with error: {error_message} "
|
|
184
|
+
f"Status: {error_status}, Code: {error_code}"
|
|
185
|
+
)
|
|
186
|
+
|
|
187
|
+
# Assuming the successful response structure
|
|
188
|
+
# includes a 'result' key
|
|
189
|
+
result = addressvalidation_result['result']
|
|
190
|
+
verdict = result.get('verdict', {})
|
|
191
|
+
address_info = result.get('address', {})
|
|
192
|
+
geocode = result.get('geocode', {})
|
|
193
|
+
metadata = result.get('metadata', {})
|
|
194
|
+
|
|
195
|
+
# Construct the descriptive string
|
|
196
|
+
address_complete = (
|
|
197
|
+
"Yes" if verdict.get('addressComplete', False) else "No"
|
|
198
|
+
)
|
|
199
|
+
formatted_address = address_info.get(
|
|
200
|
+
'formattedAddress', 'Not available'
|
|
201
|
+
)
|
|
202
|
+
location = geocode.get('location', {})
|
|
203
|
+
latitude = location.get('latitude', 'Not available')
|
|
204
|
+
longitude = location.get('longitude', 'Not available')
|
|
205
|
+
true_metadata_types = [
|
|
206
|
+
key for key, value in metadata.items() if value
|
|
207
|
+
]
|
|
208
|
+
true_metadata_types_str = (
|
|
209
|
+
', '.join(true_metadata_types)
|
|
210
|
+
if true_metadata_types
|
|
211
|
+
else 'None'
|
|
212
|
+
)
|
|
213
|
+
|
|
214
|
+
description = (
|
|
215
|
+
f"Address completion status: {address_complete}. "
|
|
216
|
+
f"Formatted address: {formatted_address}. "
|
|
217
|
+
f"Location (latitude, longitude): ({latitude}, {longitude}). "
|
|
218
|
+
f"Metadata indicating true types: {true_metadata_types_str}."
|
|
219
|
+
)
|
|
220
|
+
|
|
221
|
+
return description
|
|
222
|
+
except Exception as e:
|
|
223
|
+
return f"An unexpected error occurred: {e!s}"
|
|
224
|
+
|
|
225
|
+
@handle_googlemaps_exceptions
|
|
226
|
+
def get_elevation(self, lat_lng: Tuple) -> str:
|
|
227
|
+
r"""Retrieves elevation data for a given latitude and longitude.
|
|
228
|
+
|
|
229
|
+
Uses the Google Maps API to fetch elevation data for the specified
|
|
230
|
+
latitude and longitude. It handles exceptions gracefully and returns a
|
|
231
|
+
description of the elevation, including its value in meters and the
|
|
232
|
+
data resolution.
|
|
233
|
+
|
|
234
|
+
Args:
|
|
235
|
+
lat_lng (Tuple[float, float]): The latitude and longitude for
|
|
236
|
+
which to retrieve elevation data.
|
|
237
|
+
|
|
238
|
+
Returns:
|
|
239
|
+
str: A description of the elevation at the specified location(s),
|
|
240
|
+
including the elevation in meters and the data resolution. If
|
|
241
|
+
elevation data is not available, a message indicating this is
|
|
242
|
+
returned.
|
|
243
|
+
"""
|
|
244
|
+
googlemaps = self._import_googlemaps_or_raise()
|
|
245
|
+
google_maps_api_key = self._get_googlemaps_api_key()
|
|
246
|
+
try:
|
|
247
|
+
gmaps = googlemaps.Client(key=google_maps_api_key)
|
|
248
|
+
except Exception as e:
|
|
249
|
+
return f"Error: {e!s}"
|
|
250
|
+
|
|
251
|
+
# Assuming gmaps is a configured Google Maps client instance
|
|
252
|
+
elevation_result = gmaps.elevation(lat_lng)
|
|
253
|
+
|
|
254
|
+
# Extract the elevation data from the first
|
|
255
|
+
# (and presumably only) result
|
|
256
|
+
if elevation_result:
|
|
257
|
+
elevation = elevation_result[0]['elevation']
|
|
258
|
+
location = elevation_result[0]['location']
|
|
259
|
+
resolution = elevation_result[0]['resolution']
|
|
260
|
+
|
|
261
|
+
# Format the elevation data into a natural language description
|
|
262
|
+
description = (
|
|
263
|
+
f"The elevation at latitude {location['lat']}, "
|
|
264
|
+
f"longitude {location['lng']} "
|
|
265
|
+
f"is approximately {elevation:.2f} meters above sea level, "
|
|
266
|
+
f"with a data resolution of {resolution:.2f} meters."
|
|
267
|
+
)
|
|
268
|
+
else:
|
|
269
|
+
description = (
|
|
270
|
+
"Elevation data is not available for the given location."
|
|
271
|
+
)
|
|
272
|
+
|
|
273
|
+
return description
|
|
274
|
+
|
|
275
|
+
def _format_offset_to_natural_language(self, offset: int) -> str:
|
|
276
|
+
r"""Converts a time offset in seconds to a more natural language
|
|
277
|
+
description using hours as the unit, with decimal places to represent
|
|
278
|
+
minutes and seconds.
|
|
279
|
+
|
|
280
|
+
Args:
|
|
281
|
+
offset (int): The time offset in seconds. Can be positive,
|
|
282
|
+
negative, or zero.
|
|
283
|
+
|
|
284
|
+
Returns:
|
|
285
|
+
str: A string representing the offset in hours, such as
|
|
286
|
+
"+2.50 hours" or "-3.75 hours".
|
|
287
|
+
"""
|
|
288
|
+
# Convert the offset to hours as a float
|
|
289
|
+
hours = offset / 3600.0
|
|
290
|
+
hours_str = f"{hours:+.2f} hour{'s' if abs(hours) != 1 else ''}"
|
|
291
|
+
return hours_str
|
|
292
|
+
|
|
293
|
+
@handle_googlemaps_exceptions
|
|
294
|
+
def get_timezone(self, lat_lng: Tuple) -> str:
|
|
295
|
+
r"""Retrieves timezone information for a given latitude and longitude.
|
|
296
|
+
|
|
297
|
+
This function uses the Google Maps Timezone API to fetch timezone
|
|
298
|
+
data for the specified latitude and longitude. It returns a natural
|
|
299
|
+
language description of the timezone, including the timezone ID, name,
|
|
300
|
+
standard time offset, daylight saving time offset, and the total
|
|
301
|
+
offset from Coordinated Universal Time (UTC).
|
|
302
|
+
|
|
303
|
+
Args:
|
|
304
|
+
lat_lng (Tuple[float, float]): The latitude and longitude for
|
|
305
|
+
which to retrieve elevation data.
|
|
306
|
+
|
|
307
|
+
Returns:
|
|
308
|
+
str: A descriptive string of the timezone information,
|
|
309
|
+
including the timezone ID and name, standard time offset,
|
|
310
|
+
daylight saving time offset, and total offset from UTC.
|
|
311
|
+
"""
|
|
312
|
+
googlemaps = self._import_googlemaps_or_raise()
|
|
313
|
+
google_maps_api_key = self._get_googlemaps_api_key()
|
|
314
|
+
try:
|
|
315
|
+
gmaps = googlemaps.Client(key=google_maps_api_key)
|
|
316
|
+
except Exception as e:
|
|
317
|
+
return f"Error: {e!s}"
|
|
318
|
+
|
|
319
|
+
# Get timezone information
|
|
320
|
+
timezone_dict = gmaps.timezone(lat_lng)
|
|
321
|
+
|
|
322
|
+
# Extract necessary information
|
|
323
|
+
dst_offset = timezone_dict[
|
|
324
|
+
'dstOffset'
|
|
325
|
+
] # Daylight Saving Time offset in seconds
|
|
326
|
+
raw_offset = timezone_dict[
|
|
327
|
+
'rawOffset'
|
|
328
|
+
] # Standard time offset in seconds
|
|
329
|
+
timezone_id = timezone_dict['timeZoneId']
|
|
330
|
+
timezone_name = timezone_dict['timeZoneName']
|
|
331
|
+
|
|
332
|
+
raw_offset_str = self._format_offset_to_natural_language(raw_offset)
|
|
333
|
+
dst_offset_str = self._format_offset_to_natural_language(dst_offset)
|
|
334
|
+
total_offset_seconds = dst_offset + raw_offset
|
|
335
|
+
total_offset_str = self._format_offset_to_natural_language(
|
|
336
|
+
total_offset_seconds
|
|
337
|
+
)
|
|
338
|
+
|
|
339
|
+
# Create a natural language description
|
|
340
|
+
description = (
|
|
341
|
+
f"Timezone ID is {timezone_id}, named {timezone_name}. "
|
|
342
|
+
f"The standard time offset is {raw_offset_str}. "
|
|
343
|
+
f"Daylight Saving Time offset is {dst_offset_str}. "
|
|
344
|
+
f"The total offset from Coordinated Universal Time (UTC) is "
|
|
345
|
+
f"{total_offset_str}, including any "
|
|
346
|
+
"Daylight Saving Time adjustment "
|
|
347
|
+
f"if applicable. "
|
|
348
|
+
)
|
|
349
|
+
|
|
350
|
+
return description
|
|
351
|
+
|
|
352
|
+
def get_tools(self) -> List[OpenAIFunction]:
|
|
353
|
+
r"""Returns a list of OpenAIFunction objects representing the
|
|
354
|
+
functions in the toolkit.
|
|
355
|
+
|
|
356
|
+
Returns:
|
|
357
|
+
List[OpenAIFunction]: A list of OpenAIFunction objects
|
|
358
|
+
representing the functions in the toolkit.
|
|
359
|
+
"""
|
|
360
|
+
return [
|
|
361
|
+
OpenAIFunction(self.get_address_description),
|
|
362
|
+
OpenAIFunction(self.get_elevation),
|
|
363
|
+
OpenAIFunction(self.get_timezone),
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
MAP_FUNCS: List[OpenAIFunction] = GoogleMapsToolkit().get_tools()
|
|
@@ -0,0 +1,79 @@
|
|
|
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 typing import List
|
|
16
|
+
|
|
17
|
+
from camel.toolkits.base import BaseToolkit
|
|
18
|
+
from camel.toolkits.openai_function import OpenAIFunction
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class MathToolkit(BaseToolkit):
|
|
22
|
+
r"""A class representing a toolkit for mathematical operations.
|
|
23
|
+
|
|
24
|
+
This class provides methods for basic mathematical operations such as
|
|
25
|
+
addition, subtraction, and multiplication.
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
def add(self, a: int, b: int) -> int:
|
|
29
|
+
r"""Adds two numbers.
|
|
30
|
+
|
|
31
|
+
Args:
|
|
32
|
+
a (int): The first number to be added.
|
|
33
|
+
b (int): The second number to be added.
|
|
34
|
+
|
|
35
|
+
Returns:
|
|
36
|
+
integer: The sum of the two numbers.
|
|
37
|
+
"""
|
|
38
|
+
return a + b
|
|
39
|
+
|
|
40
|
+
def sub(self, a: int, b: int) -> int:
|
|
41
|
+
r"""Do subtraction between two numbers.
|
|
42
|
+
|
|
43
|
+
Args:
|
|
44
|
+
a (int): The minuend in subtraction.
|
|
45
|
+
b (int): The subtrahend in subtraction.
|
|
46
|
+
|
|
47
|
+
Returns:
|
|
48
|
+
integer: The result of subtracting :obj:`b` from :obj:`a`.
|
|
49
|
+
"""
|
|
50
|
+
return a - b
|
|
51
|
+
|
|
52
|
+
def mul(self, a: int, b: int) -> int:
|
|
53
|
+
r"""Multiplies two integers.
|
|
54
|
+
|
|
55
|
+
Args:
|
|
56
|
+
a (int): The multiplier in the multiplication.
|
|
57
|
+
b (int): The multiplicand in the multiplication.
|
|
58
|
+
|
|
59
|
+
Returns:
|
|
60
|
+
integer: The product of the two numbers.
|
|
61
|
+
"""
|
|
62
|
+
return a * b
|
|
63
|
+
|
|
64
|
+
def get_tools(self) -> List[OpenAIFunction]:
|
|
65
|
+
r"""Returns a list of OpenAIFunction objects representing the
|
|
66
|
+
functions in the toolkit.
|
|
67
|
+
|
|
68
|
+
Returns:
|
|
69
|
+
List[OpenAIFunction]: A list of OpenAIFunction objects
|
|
70
|
+
representing the functions in the toolkit.
|
|
71
|
+
"""
|
|
72
|
+
return [
|
|
73
|
+
OpenAIFunction(self.add),
|
|
74
|
+
OpenAIFunction(self.sub),
|
|
75
|
+
OpenAIFunction(self.mul),
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
MATH_FUNCS: List[OpenAIFunction] = MathToolkit().get_tools()
|