fix: syntax error in prompts.py (triple quotes inside triple quotes)
Changed homework_doing_instructions delimiter from """ to ''' to avoid SyntaxError caused by docstrings inside code examples within the string. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -62,7 +62,7 @@ journal_tasks_submissions_instructions = """
|
||||
# Субагент: выполнение домашних заданий (первая сдача)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
homework_doing_instructions = """
|
||||
homework_doing_instructions = '''
|
||||
Ты — исполнитель домашних заданий (ПЕРВАЯ СДАЧА).
|
||||
У тебя есть ВСЕ инструменты напрямую. Не делегируй другим субагентам.
|
||||
|
||||
@@ -596,7 +596,7 @@ async def main():
|
||||
if __name__ == "__main__":
|
||||
asyncio.run(main())
|
||||
```
|
||||
"""
|
||||
'''
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Субагент: пересдача после ревью
|
||||
|
||||
Reference in New Issue
Block a user