40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
# coding=utf-8
|
|
# Copyright 2024 HuggingFace Inc.
|
|
#
|
|
# 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.
|
|
import unittest
|
|
import pytest
|
|
|
|
from smolagents.utils import parse_code_blob
|
|
|
|
|
|
class AgentTextTests(unittest.TestCase):
|
|
def test_parse_code_blob(self):
|
|
with pytest.raises(ValueError):
|
|
parse_code_blob("Wrong blob!")
|
|
|
|
# Parsing mardkwon with code blobs should work
|
|
output = parse_code_blob("""
|
|
Here is how to solve the problem:
|
|
Code:
|
|
```py
|
|
import numpy as np
|
|
```<end_code>
|
|
""")
|
|
assert output == "import numpy as np"
|
|
|
|
# Parsing code blobs should work
|
|
code_blob = "import numpy as np"
|
|
output = parse_code_blob(code_blob)
|
|
assert output == code_blob
|