From 6e9e83dbd0fbf39ee971de72d26ce0719c6b13e3 Mon Sep 17 00:00:00 2001 From: Farouk Adeleke Date: Thu, 25 Dec 2025 02:22:52 -0800 Subject: [PATCH] move connect debug prints --- claude_dspy/agent.py | 1 - main.py | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/claude_dspy/agent.py b/claude_dspy/agent.py index 8969df5..95ccb51 100644 --- a/claude_dspy/agent.py +++ b/claude_dspy/agent.py @@ -550,7 +550,6 @@ class ClaudeCode(PrecompiledProgram): # build prompt prompt = self._build_prompt(input_value) - print(prompt) # run async execution in event loop try: loop = asyncio.get_event_loop() diff --git a/main.py b/main.py index 112911d..27e7a7b 100644 --- a/main.py +++ b/main.py @@ -32,10 +32,11 @@ def main(): permission_mode="acceptEdits", allowed_tools=["Read", "Write", "Bash"], ) + """ result = cc(query="list the files in this directory") output = result.output print(output) - + """ cc.push_to_hub( "modaic/claude-code", with_code=True,