Upload config/config.yaml with huggingface_hub
Browse files- config/config.yaml +17 -0
config/config.yaml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# AutoSEO Engine Configuration
|
| 2 |
+
|
| 3 |
+
database:
|
| 4 |
+
url: "sqlite:///./autoseo.db"
|
| 5 |
+
pool_size: 5
|
| 6 |
+
|
| 7 |
+
agents:
|
| 8 |
+
max_iterations: 10
|
| 9 |
+
timeout_seconds: 300
|
| 10 |
+
|
| 11 |
+
llm:
|
| 12 |
+
model_name: "local-model"
|
| 13 |
+
temperature: 0.7
|
| 14 |
+
|
| 15 |
+
monitoring:
|
| 16 |
+
log_level: "INFO"
|
| 17 |
+
enable_metrics: true
|