Formatron v0.4.11
Formatron empowers everyone to control the output format of language models with minimal overhead.
|
Functions | |
str | escape_identifier (str s) |
For each character in the string, if it is a valid kbnf identifier character, add it to the result. | |
str | from_str_to_kbnf_str (str s) |
Convert a string to a kbnf string. | |
Variables | |
str | VALID_IDENTIFIER_CHARACTERS = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_" |
str formatron.formats.utils.escape_identifier | ( | str | s | ) |
For each character in the string, if it is a valid kbnf identifier character, add it to the result.
Otherwise, add its Unicode code point to the result.
s | The string to escape. |
Examples
str formatron.formats.utils.from_str_to_kbnf_str | ( | str | s | ) |