Skip to content

Commit d46cecb

Browse files
nshkrdotcomnshkrdotcom
authored andcommitted
fb
1 parent 8c53600 commit d46cecb

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

research_paper_improvement_gemini_pro_delayed.yaml.tmp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ workflow:
1717

1818
````
1919
- type: "file"
20-
path: "./workspace/202507110831_chiral_narrative_synthesis_scientific_paper.md"
20+
path: "../research_papers/tex/ResearchProposal-ChiralNarrativeSynthesis_3.tex"
2121
- type: "static"
2222
content: |
2323
````

run_research_paper_improvement_loop.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,17 @@ while true; do
5454
echo "✅ Pipeline completed successfully in ${duration}s"
5555

5656
# Check if new output file was created
57+
echo "🔍 Checking for new output files..."
5758
latest_after=$(ls -t ./outputs/202*_improved_chiral_narrative_synthesis.md 2>/dev/null | head -1)
59+
echo "📁 Latest file found: $latest_after"
60+
echo "📁 Previous file was: $latest_file"
61+
5862
if [ "$latest_after" != "$latest_file" ]; then
5963
echo "📄 New improved paper created: $latest_after"
6064

6165
# Show file size for progress tracking
6266
if [ -f "$latest_after" ]; then
67+
echo "📊 Calculating file size..."
6368
size=$(wc -l < "$latest_after" 2>/dev/null || echo "unknown")
6469
echo "📊 Paper length: $size lines"
6570
fi
@@ -79,7 +84,10 @@ while true; do
7984
# Clean up temp file
8085
rm "${PIPELINE_FILE}.tmp"
8186

82-
echo "=== Completed Research Paper Improvement Run #$counter, waiting 5 seconds... ==="
87+
echo "=== Completed Research Paper Improvement Run #$counter ==="
88+
echo "⏱️ Pausing for 5 seconds before next iteration..."
89+
echo " (Press Ctrl+C now to stop the loop)"
8390
sleep 5
91+
echo ""
8492
((counter++))
8593
done

0 commit comments

Comments
 (0)