bugfix: test_bedrock_api.py

This commit is contained in:
voidking 2024-07-18 16:24:46 +08:00
parent f458b04ff3
commit fb083c9b79

View file

@ -64,7 +64,7 @@ def is_subset(subset, superset) -> bool:
superset = {"prompt": "hello", "kwargs": {"temperature": 0.0, "top-p": 0.0}}
is_subset(subset, superset)
```
>>>False
"""
for key, value in subset.items():
if key not in superset: