Implemented the integration with scraper python server, tenders summarise, and some fixes.

This commit is contained in:
Mazyar
2025-12-27 12:47:08 +03:30
parent e4da3b5bb2
commit f6bdcc6d7c
18 changed files with 1054 additions and 45 deletions
+3 -1
View File
@@ -5,7 +5,7 @@ import (
"tm/pkg/config"
)
// Config defines the scraper application configuration
// Config defines the worker application configuration
type Config struct {
Database config.DatabaseConfig
Logging config.LoggingConfig
@@ -13,6 +13,8 @@ type Config struct {
Ollama config.OllamaConfig
Worker WorkerConfig
GLM GLMConfig
Scraper config.ScraperConfig
MinIO config.MinIOConfig
AlertMail string `env:"ALERT_MAIL" envDefault:"alerts@opplens.com"`
}