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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
# File 'lib/ragdoll/cli/commands/search.rb', line 8
def call(query, options)
client = StandaloneClient.new
puts "Searching for: #{query}"
puts "Search type: #{options[:search_type] || 'semantic'}"
if options[:content_type]
puts "⚠️ DEPRECATED: --content_type option is deprecated. Unified text-based system converts all media to searchable text."
end
if options[:search_type] == 'hybrid'
semantic_w = options[:semantic_weight] || 0.7
text_w = options[:text_weight] || 0.3
puts "Weights: semantic=#{semantic_w}, text=#{text_w}"
end
if options[:keywords]
keywords_array = options[:keywords].split(',').map(&:strip)
keywords_mode = options[:keywords_all] ? "ALL keywords (AND)" : "ANY keywords (OR)"
puts "Keywords: #{keywords_array.join(', ')} [#{keywords_mode}]"
end
relevant_options = options.to_h.except(:keywords, :keywords_all, :search_type, :semantic_weight, :text_weight, :format)
puts "Options: #{relevant_options}" unless relevant_options.empty?
puts
search_options = {}
search_options[:limit] = options[:limit] if options[:limit]
search_options[:threshold] = options[:threshold] if options[:threshold]
search_options[:content_type] = options[:content_type] if options[:content_type]
search_options[:classification] = options[:classification] if options[:classification]
if options[:keywords]
keywords_array = options[:keywords].split(',').map(&:strip)
search_options[:keywords] = keywords_array
search_options[:keywords_all] = options[:keywords_all] if options[:keywords_all]
end
search_options[:tags] = options[:tags].split(',').map(&:strip) if options[:tags]
search_options[:session_id] = options[:session_id] if options[:session_id]
search_options[:user_id] = options[:user_id] if options[:user_id]
search_options[:track_search] = options[:track_search] if options.respond_to?(:key?) ? options.key?(:track_search) : options.track_search
search_response = case options[:search_type]
when 'hybrid'
search_options[:semantic_weight] = options[:semantic_weight] if options[:semantic_weight]
search_options[:text_weight] = options[:text_weight] if options[:text_weight]
client.hybrid_search(query, **search_options)
when 'fulltext'
client.fulltext_search(query, **search_options)
else
client.search(query: query, **search_options)
end
results = search_response[:results] || search_response['results'] || []
if results.empty?
statistics = search_response[:statistics] || search_response['statistics']
execution_time = search_response[:execution_time_ms] || search_response['execution_time_ms']
total = search_response[:total_results] || search_response['total_results'] || 0
puts "No results found for '#{query}'"
puts
if statistics
threshold = statistics[:threshold_used] || statistics['threshold_used']
highest = statistics[:highest_similarity] || statistics['highest_similarity']
lowest = statistics[:lowest_similarity] || statistics['lowest_similarity']
average = statistics[:average_similarity] || statistics['average_similarity']
above_threshold = statistics[:similarities_above_threshold] || statistics['similarities_above_threshold']
total_checked = statistics[:total_embeddings_checked] || statistics['total_embeddings_checked']
puts "Search Analysis:"
puts " • Similarity threshold: #{threshold&.round(3) || 'N/A'}"
puts " • Embeddings analyzed: #{total_checked || 0}"
if highest && lowest && average
puts " • Similarity range: #{lowest.round(3)} - #{highest.round(3)} (avg: #{average.round(3)})"
end
puts " • Results above threshold: #{above_threshold || 0}"
puts " • Search time: #{execution_time || 0}ms"
puts
if highest && threshold
if highest < threshold
suggested_threshold = (highest * 0.9).round(3)
puts "💡 Suggestions:"
puts " • Lower the similarity threshold (highest found: #{highest.round(3)})"
puts " • Try: ragdoll search '#{query}' --threshold=#{suggested_threshold}"
if highest < 0.3
puts " • Your query might not match the document content well"
puts " • Try different or more specific search terms"
puts " • Try keyword-based search: ragdoll keywords search KEYWORD"
puts " • List available keywords: ragdoll keywords list"
end
elsif above_threshold > 0
puts "💡 Note: Found #{above_threshold} similar content above threshold #{threshold}"
puts " This suggests an issue with result processing."
end
end
else
puts "(Total documents in system: #{total})" if total > 0
puts "Try adjusting your search terms or check if documents have been processed."
puts "Alternative: Use keyword-based search: ragdoll keywords search KEYWORD"
end
return
end
case options[:format]
when 'json'
puts JSON.pretty_generate(search_response)
when 'plain'
results.each_with_index do |result, index|
title = safe_string_value(result, [:title, :document_title], 'Untitled')
content = safe_string_value(result, [:content, :text], '')
puts "#{index + 1}. #{title}"
puts " ID: #{result[:document_id] || result[:id]}"
if options[:search_type] == 'hybrid'
puts " Combined Score: #{result[:combined_score]&.round(3) || 'N/A'}"
if result[:search_types]
puts " Match Types: #{result[:search_types].join(', ')}"
end
elsif options[:search_type] == 'fulltext'
puts " Text Match: #{result[:fulltext_similarity]&.round(3) || 'N/A'}"
else
puts " Similarity: #{result[:similarity]&.round(3) || 'N/A'}"
end
puts " Content: #{content[0..200]}..."
puts
end
else
puts "Found #{results.length} results (#{search_response[:search_type] || 'semantic'} search):"
puts
= case options[:search_type]
when 'hybrid'
'Score'.ljust(12)
when 'fulltext'
'Text Match'.ljust(12)
else
'Similarity'.ljust(12)
end
puts 'Rank'.ljust(5) + 'Title'.ljust(30) + + 'Content Preview'
puts '-' * 80
results.each_with_index do |result, index|
rank = (index + 1).to_s.ljust(5)
title = safe_string_value(result, [:title, :document_title], 'Untitled')[0..29].ljust(30)
score = case options[:search_type]
when 'hybrid'
result[:combined_score] || result[:weighted_score]
when 'fulltext'
result[:fulltext_similarity]
else
result[:similarity]
end
score_str = (score&.round(3) || 'N/A').to_s.ljust(12)
content = safe_string_value(result, [:content, :text], '')[0..50]
content += '...' if content.length == 50
puts "#{rank}#{title}#{score_str}#{content}"
end
puts
if options[:search_type] == 'hybrid' && (options[:semantic_weight] || options[:text_weight])
puts "Weights: semantic=#{options[:semantic_weight] || 0.7}, text=#{options[:text_weight] || 0.3}"
end
puts 'Use --format=json for complete results or --format=plain for detailed view'
end
end
|