From 99f1422c0df49927047e61477e312b994a0a944f Mon Sep 17 00:00:00 2001 From: rodia Date: Mon, 24 Mar 2025 20:45:57 -0500 Subject: [PATCH] feat: add Rake tasks agents.dev bash, run streamlit --- Rakefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 29ea977..302ff66 100755 --- a/Rakefile +++ b/Rakefile @@ -96,8 +96,13 @@ namespace :live do end desc 'terminal' - task :sh do - compose('exec', 'live.dev', 'bash') + task :sh_agents do + compose('exec', 'agents.dev', 'bash') + end + + desc 'Correr chat de Streamlit' + task :streamlit do + compose('exec', 'agents.dev', "streamlit run app/chat_dc.py") end end