Fix: LangChain Dependences

This commit is contained in:
2024-11-01 22:41:13 -05:00
parent 5235541b76
commit 9e26bc4d7a
19 changed files with 2388 additions and 102 deletions

View File

@@ -53,6 +53,12 @@ namespace :live do
end
desc 'iterar'
task :tdd do
compose('exec', 'app', "bash -c 'cd app && flake8 *'")
compose('exec', 'app', "bash -c 'cd app && pytest -vvv'")
end
def compose(*arg, compose: DOCKER_COMPOSE)
sh "docker compose -f #{compose} #{arg.join(' ')}"
end