- Simplified build_llm_prompt by removing redundant formatting - Added info logging for LLM model and processed content - Updated README with development philosophy note - Adjusted announcement schedule timing from 55 to 59 minutes past the hour
17 lines
No EOL
868 B
Markdown
17 lines
No EOL
868 B
Markdown
## LLM Strategy & Workflow
|
|
|
|
### Fallback Strategy (After 3 attempts / 10 minutes):
|
|
When initial attempts fail, sequentially try these LLMs:
|
|
1. **DeepSeek-V3-0324** (good architect, adventure, reliable, let little errors just to be fixed by gpt-*)
|
|
1. **DeepSeek-V3.1** (slower)
|
|
1. **gpt-5-chat** (slower, let warnings...)
|
|
1. **gpt-oss-120b**
|
|
1. **Claude (Web)**: Copy only the problem statement and create unit tests. Create/extend UI.
|
|
1. **Llama-3.3-70B-Instruct** (alternative)
|
|
|
|
### Development Workflow:
|
|
- **One requirement at a time** with sequential commits
|
|
- **On error**: Stop and consult Claude for guidance
|
|
- **Change progression**: Start with DeepSeek, conclude with gpt-oss-120b
|
|
- **Final validation**: Use prompt "cargo check" with gpt-oss-120b
|
|
- Be humble, one requirement, one commit. But sometimes, freedom of caos is welcome - when no deadlines are set. |