| 42 | |
| 43 | @dataclass |
| 44 | class RunConfig: |
| 45 | use_feedback: bool = True |
| 46 | use_assets: bool = True |
| 47 | api: Callable = None |
| 48 | feedback_rounds: int = 2 |
| 49 | iconfinder_api_key: str = "" |
| 50 | max_code_token_length: int = 10000 |
| 51 | max_fix_bug_tries: int = 10 |
| 52 | max_regenerate_tries: int = 10 |
| 53 | max_feedback_gen_code_tries: int = 3 |
| 54 | max_mllm_fix_bugs_tries: int = 3 |
| 55 | |
| 56 | |
| 57 | class TeachingVideoAgent: |
no outgoing calls
no test coverage detected