Loading tests/test_hd_15.py 0 → 100644 +28 −0 Original line number Diff line number Diff line import sys import os PROJECT_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) sys.path.insert(0, PROJECT_ROOT) from orchestrator import Orchestrator PROMPT = """Prečo tento kód nič nevypíše, aj keď očakávam, že sa cyklus vykoná?" for i in range(10, 0): print(i) """ def main(): orchestrator = Orchestrator() print("=== Multi-Agent Python Helper (TESTING) ===") print("User input: " + PROMPT) result = orchestrator.process(PROMPT) agent, response = result print("==== Agent ==== ("+agent+")") print(response) print("===============\n") if __name__ == "__main__": main() Loading
tests/test_hd_15.py 0 → 100644 +28 −0 Original line number Diff line number Diff line import sys import os PROJECT_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) sys.path.insert(0, PROJECT_ROOT) from orchestrator import Orchestrator PROMPT = """Prečo tento kód nič nevypíše, aj keď očakávam, že sa cyklus vykoná?" for i in range(10, 0): print(i) """ def main(): orchestrator = Orchestrator() print("=== Multi-Agent Python Helper (TESTING) ===") print("User input: " + PROMPT) result = orchestrator.process(PROMPT) agent, response = result print("==== Agent ==== ("+agent+")") print(response) print("===============\n") if __name__ == "__main__": main()