From a8d49980d7f369066430a7695dfd61f803f0a51c Mon Sep 17 00:00:00 2001 From: Dev Aggarwal Date: Fri, 6 Dec 2024 00:14:07 +0530 Subject: [PATCH] show bots from all approved examples in /chat --- daras_ai_v2/chat_explore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daras_ai_v2/chat_explore.py b/daras_ai_v2/chat_explore.py index be05bc3a3..ad7b5a44e 100644 --- a/daras_ai_v2/chat_explore.py +++ b/daras_ai_v2/chat_explore.py @@ -18,7 +18,7 @@ def render(): gui.newline() integrations = BotIntegration.objects.filter( - published_run__in=PublishedRun.approved_example_q() + published_run__in=PublishedRun.objects.filter(PublishedRun.approved_example_q()) ) grid_layout(3, integrations, _render_bi)