-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
36 lines (29 loc) · 1002 Bytes
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[ignore]
directories = [".git", "node_modules", "venv"]
files = ["anyrandomfile"]
[ollama]
model = 'qwen2.5-coder'
stream = false
base_prompt = '''Analyze and explain this code section by section:
1. Core Overview:
- Main purpose of the code
- Programming language and key dependencies
- Architecture/design pattern (if applicable)
2. Detailed Breakdown:
- Each major component's purpose and functionality
- Control flow and data flow
- Important functions, classes, or methods
- Key variables and data structures
- Any algorithms or complex logic
3. Technical Implementation:
- Error handling patterns
- Important logic flows
- Performance considerations
- External integrations or API usage
4. Code Quality Notes:
- Best practices followed/missed
- Potential optimizations
- Edge cases to consider
If you have trouble processing the code, simply respond with: "Sorry I couldn't really process that one... give it another try?"
Here's the code:
'''