mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 00:58:30 +00:00
Adding printer logic
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
from .i18n import I18N
|
from .i18n import I18N
|
||||||
from .logger import Logger
|
from .logger import Logger
|
||||||
|
from .printer import Printer
|
||||||
from .prompts import Prompts
|
from .prompts import Prompts
|
||||||
from .rpm_controller import RPMController
|
from .rpm_controller import RPMController
|
||||||
|
|||||||
9
src/crewai/utilities/printer.py
Normal file
9
src/crewai/utilities/printer.py
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
class Printer:
|
||||||
|
def print(self, content: str, color: str):
|
||||||
|
if color == "yellow":
|
||||||
|
self._print_yellow(content)
|
||||||
|
else:
|
||||||
|
print(content)
|
||||||
|
|
||||||
|
def _print_yellow(self, content):
|
||||||
|
print("\033[93m {}\033[00m".format(content))
|
||||||
Reference in New Issue
Block a user