Fix issue agentop poetry install issue (#863)

* Fix issue agentop poetry install issue

* Updated install requirements tests to fail if .lock becomes out of sync with poetry install. Cleaned up old issues that were merged back in.
This commit is contained in:
Brandon Hancock (bhancock_ai)
2024-07-03 14:22:32 -04:00
committed by GitHub
parent f47904134b
commit 844cc515d5
4 changed files with 62 additions and 13 deletions

View File

@@ -5,9 +5,9 @@ from pydantic import BaseModel, Field
from crewai.utilities import Converter
from crewai.utilities.pydantic_schema_parser import PydanticSchemaParser
agentops = None
try:
import agentops
from agentops import track_agent
except ImportError:

View File

@@ -1,7 +1,7 @@
from datetime import datetime
from crewai.utilities.printer import Printer
from datetime import datetime
class Logger:
_printer = Printer()