mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 00:28:31 +00:00
fixed types
This commit is contained in:
@@ -59,8 +59,8 @@ class TraceBatchManager:
|
|||||||
|
|
||||||
def initialize_batch(
|
def initialize_batch(
|
||||||
self,
|
self,
|
||||||
user_context: Dict[str, str],
|
user_context: dict[str, str],
|
||||||
execution_metadata: Dict[str, Any],
|
execution_metadata: dict[str, Any],
|
||||||
use_ephemeral: bool = False,
|
use_ephemeral: bool = False,
|
||||||
) -> TraceBatch:
|
) -> TraceBatch:
|
||||||
"""Initialize a new trace batch"""
|
"""Initialize a new trace batch"""
|
||||||
@@ -77,8 +77,8 @@ class TraceBatchManager:
|
|||||||
|
|
||||||
def _initialize_backend_batch(
|
def _initialize_backend_batch(
|
||||||
self,
|
self,
|
||||||
user_context: Dict[str, str],
|
user_context: dict[str, str],
|
||||||
execution_metadata: Dict[str, Any],
|
execution_metadata: dict[str, Any],
|
||||||
use_ephemeral: bool = False,
|
use_ephemeral: bool = False,
|
||||||
):
|
):
|
||||||
"""Send batch initialization to backend"""
|
"""Send batch initialization to backend"""
|
||||||
|
|||||||
Reference in New Issue
Block a user