-
Notifications
You must be signed in to change notification settings - Fork 750
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add test_cohere_model.py and solved comment problems
- Loading branch information
1 parent
0686fde
commit 3ac127b
Showing
6 changed files
with
99 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# =========== Copyright 2023 @ CAMEL-AI.org. All Rights Reserved. =========== | ||
# Licensed under the Apache License, Version 2.0 (the “License”); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an “AS IS” BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# =========== Copyright 2023 @ CAMEL-AI.org. All Rights Reserved. =========== | ||
import re | ||
|
||
import pytest | ||
|
||
from camel.configs import CohereConfig, OpenSourceConfig | ||
from camel.models import CohereModel | ||
from camel.types import ModelType | ||
from camel.utils import OpenAITokenCounter | ||
|
||
|
||
@pytest.mark.model_backend | ||
@pytest.mark.parametrize( | ||
"model_type", | ||
[ | ||
ModelType.COHERE_COMMAND_R, | ||
ModelType.COHERE_COMMAND_LIGHT, | ||
ModelType.COHERE_COMMAND, | ||
ModelType.COHERE_COMMAND_NIGHTLY, | ||
], | ||
) | ||
def test_cohere_model(model_type): | ||
model_config_dict = CohereConfig().as_dict() | ||
model = CohereModel(model_type, model_config_dict) | ||
assert model.model_type == model_type | ||
assert model.model_config_dict == model_config_dict | ||
assert isinstance(model.token_counter, OpenAITokenCounter) | ||
assert isinstance(model.model_type.value_for_tiktoken, str) | ||
assert isinstance(model.model_type.token_limit, int) | ||
|
||
|
||
@pytest.mark.model_backend | ||
def test_cohere_model_unexpected_argument(): | ||
model_type = ModelType.COHERE_COMMAND_R | ||
model_config = OpenSourceConfig( | ||
model_path="vicuna-7b-v1.5", | ||
server_url="http://localhost:8000/v1", | ||
) | ||
model_config_dict = model_config.as_dict() | ||
|
||
with pytest.raises( | ||
ValueError, | ||
match=re.escape( | ||
( | ||
"Unexpected argument `model_path` is " | ||
"input into Cohere model backend." | ||
) | ||
), | ||
): | ||
_ = CohereModel(model_type, model_config_dict) |