We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25d4c4d commit 6b71f28Copy full SHA for 6b71f28
1 file changed
src/a2a/utils/artifact.py
@@ -81,7 +81,7 @@ def new_data_artifact(
81
)
82
83
84
-def get_artifact_text(artifact: Artifact, delimiter: str = "\n") -> str:
+def get_artifact_text(artifact: Artifact, delimiter: str = '\n') -> str:
85
"""Extracts and joins all text content from an Artifact's parts.
86
87
Args:
@@ -120,7 +120,7 @@ def __init__(
120
self,
121
context_id: str,
122
task_id: str,
123
- name: str = "response",
+ name: str = 'response',
124
artifact_id: str | None = None,
125
) -> None:
126
self._context_id = context_id
0 commit comments