Skip to content
4 changes: 2 additions & 2 deletions app-server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ fn main() -> anyhow::Result<()> {
// == LLM Client ==
let llm_provider_client: Option<Arc<signals::provider::LlmClient>> =
if is_feature_enabled(Feature::Signals) {
log::info!("Initializing LLM client for signals");
log::info!("Initializing LLM client");
match runtime_handle.block_on(signals::provider::LlmClient::new()) {
Ok(client) => Some(Arc::new(client)),
Err(e) => {
Expand Down Expand Up @@ -1195,7 +1195,7 @@ fn main() -> anyhow::Result<()> {
QueueConfig::new(SIGNALS_QUEUE, SIGNALS_EXCHANGE, SIGNALS_ROUTING_KEY),
);
} else {
log::warn!("Gemini client not available - skipping signals workers");
log::warn!("LLM client not available - skipping signals workers");
}

// Spawn notification workers
Expand Down
4 changes: 2 additions & 2 deletions app-server/src/signals/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use uuid::Uuid;
use crate::cache::keys::SPAN_DROP_RULES_CACHE_KEY;
use crate::cache::{Cache, CacheTrait};
use crate::ch::spans::CHSpan;
use crate::signals::spans::extract_exception_from_events;
use crate::db::spans::SpanType;
use crate::mq::MessageQueue;
use crate::signals::prompts::{FILTER_GENERATION_SYSTEM_PROMPT, FILTER_GENERATION_USER_PROMPT};
Expand All @@ -16,6 +15,7 @@ use crate::signals::provider::models::{
ProviderPart, ProviderRequest, ProviderTool,
};
use crate::signals::provider::{LlmClient, ProviderThinkingConfig, ProviderThinkingLevel};
use crate::signals::spans::extract_exception_from_events;
use crate::signals::utils::{
InternalSpan, emit_internal_span, request_to_span_input, request_to_tools_attr,
};
Expand Down Expand Up @@ -287,7 +287,7 @@ pub async fn generate_and_cache_drop_rules(
tools: Some(build_filter_tool_definitions()),
generation_config: Some(ProviderGenerationConfig {
temperature: Some(1.0),
max_output_tokens: Some(2048),
max_output_tokens: Some(4096),
thinking_config: Some(ProviderThinkingConfig {
include_thoughts: Some(true),
thinking_level: Some(ProviderThinkingLevel::Medium),
Expand Down
Loading