Small RC Fixes (#608)

* mentioning ollama on the docs as embedder

* lowering barrier to match tool with simialr name

* Fixing agent tools to support co_worker

* Adding new tests

* Fixing type"

* updating tests

* fixing conflict
This commit is contained in:
João Moura
2024-05-13 02:29:04 -03:00
committed by GitHub
parent c0a7e75f29
commit f175ac32d0
21 changed files with 204252 additions and 3737 deletions

View File

@@ -678,8 +678,8 @@ def test_agent_usage_metrics_are_captured_for_hierarchical_process():
result = crew.kickoff()
assert result == '"Howdy!"'
assert crew.usage_metrics == {
"total_tokens": 1650,
"prompt_tokens": 1367,
"total_tokens": 1666,
"prompt_tokens": 1383,
"completion_tokens": 283,
"successful_requests": 3,
}