Skip to content

Commit b8b19b4

Browse files
Wendong-Fandandansamaxlightaime
authored
feat: integrate unstructured module (camel-ai#336)
Co-authored-by: Tianqi Xu <[email protected]> Co-authored-by: lig <[email protected]> Co-authored-by: Guohao Li <[email protected]>
1 parent d345423 commit b8b19b4

File tree

11 files changed

+2371
-873
lines changed

11 files changed

+2371
-873
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ poetry shell
6565
# It takes about 75s to resolve dependencies and 10s to install them, depending on your hardware and network,
6666
poetry install --with dev,docs
6767

68-
# Or if you want to use "huggingface agent"
69-
poetry install --with dev,docs -E huggingface-agent # (Optional)
68+
# Or if you want to use all other extra packages
69+
poetry install --with dev,docs -E all # (Optional)
7070

7171
# The following command installs a pre-commit hook into the local git repo,
7272
$ so every commit gets auto-formatted and linted.

camel/functions/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@
1616
from .openai_function import OpenAIFunction
1717
from .search_functions import SEARCH_FUNCS
1818
from .weather_functions import WEATHER_FUNCS
19+
from .unstructured_io_fuctions import UnstructuredModules
1920

2021
__all__ = [
2122
'OpenAIFunction',
2223
'MATH_FUNCS',
2324
'SEARCH_FUNCS',
2425
'WEATHER_FUNCS',
26+
'UnstructuredModules',
2527
]
File renamed without changes.

0 commit comments

Comments
 (0)