Skip to content

Commit

Permalink
Add example configuration file and update README to reflect config ch…
Browse files Browse the repository at this point in the history
…anges
  • Loading branch information
pesnik committed Jan 18, 2025
1 parent bf2d750 commit e8cb8db
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 20 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ ENV/
.vscode/
*.swp
.DS_Store
config/config.yaml
20 changes: 0 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,26 +78,6 @@ dagnostics/

The application is configured through `config/config.yaml`:

```yaml
llm:
model: mistral
temperature: 0.1
max_tokens: 500

monitoring:
categories:
- system_error
- resource_constraint
- connectivity
- data_availability
- data_quality
- syntax_error

reporting:
format: markdown
include_trends: true
```
## 📊 Usage

### CLI Interface
Expand Down
Empty file removed config/config.yaml
Empty file.
17 changes: 17 additions & 0 deletions config/config.yaml.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
llm:
model: mistral
temperature: 0.1
max_tokens: 500

monitoring:
categories:
- system_error
- resource_constraint
- connectivity
- data_availability
- data_quality
- syntax_error

reporting:
format: markdown
include_trends: true

0 comments on commit e8cb8db

Please sign in to comment.