Merge pull request #1067 from Codium-ai/tr/custom_model

docs: update usage guide and README; fix minor formatting issues in u…
This commit is contained in:
Tal
2024-07-28 09:34:05 +03:00
committed by GitHub
5 changed files with 10 additions and 5 deletions

View File

@ -557,7 +557,7 @@ def _fix_key_value(key: str, value: str):
def load_yaml(response_text: str, keys_fix_yaml: List[str] = [], first_key="", last_key="") -> dict:
response_text = response_text.removeprefix('```yaml').rstrip('`')
response_text = response_text.strip('\n').removeprefix('```yaml').rstrip('`')
try:
data = yaml.safe_load(response_text)
except Exception as e: