feat: add Rake tasks agents.dev bash, run streamlit

This commit is contained in:
rodia 2025-03-24 20:45:57 -05:00
parent b6b94ac2b5
commit 99f1422c0d

View File

@ -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