File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -361,10 +361,10 @@ postgres-shell: ## Open PostgreSQL shell
361361postgres-query-traffic : # # Query unique traffic patterns from database
362362 @printf " $( BLUE) Querying unique traffic patterns...$( NC) \n"
363363 @docker exec -i compass-postgres psql -U postgres -d compass -c \
364- " SELECT DISTINCT mean_input_tokens, mean_output_tokens , COUNT(*) as num_benchmarks \
364+ " SELECT DISTINCT prompt_tokens, output_tokens , COUNT(*) as num_benchmarks \
365365 FROM exported_summaries \
366- GROUP BY mean_input_tokens, mean_output_tokens \
367- ORDER BY mean_input_tokens, mean_output_tokens ; "
366+ GROUP BY prompt_tokens, output_tokens \
367+ ORDER BY prompt_tokens, output_tokens ; "
368368
369369postgres-query-models : # # Query available models in database
370370 @printf " $( BLUE) Querying available models...$( NC) \n"
You can’t perform that action at this time.
0 commit comments