Skip to content

Commit 84185a5

Browse files
Wendong-FanGitHoobarold-hallerite
authored
feat: Initial implementation for BaseVerifier (camel-ai#1597)
Co-authored-by: Rishabh <[email protected]> Co-authored-by: hallerite <[email protected]>
1 parent 42977bc commit 84185a5

File tree

13 files changed

+3582
-0
lines changed

13 files changed

+3582
-0
lines changed

camel/datasets/__init__.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# ========= Copyright 2023-2024 @ 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-2024 @ CAMEL-AI.org. All Rights Reserved. =========
14+
from .base import (
15+
BaseDataset,
16+
DataPoint,
17+
GenerativeDataset,
18+
SeedDataset,
19+
SyntheticDataset,
20+
)
21+
22+
__all__ = [
23+
"DataPoint",
24+
"BaseDataset",
25+
"SeedDataset",
26+
"GenerativeDataset",
27+
"SyntheticDataset",
28+
]

0 commit comments

Comments
 (0)