mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-19 12:57:58 +00:00
10 lines
229 B
Python
10 lines
229 B
Python
"""
|
|
Regex Generation Environment
|
|
|
|
An RL environment for training LLMs to generate correct regular expressions
|
|
from natural language descriptions and test cases.
|
|
"""
|
|
|
|
__all__ = ["RegexEnv"]
|
|
|
|
from regex_env import RegexEnv # noqa
|