Skip to content

Commit f6ca349

Browse files
committed
chore(integrations): Allow spider response content to be a list
1 parent afb0620 commit f6ca349

File tree

1 file changed

+1
-1
lines changed
  • integrations-service/integrations/models

1 file changed

+1
-1
lines changed

Diff for: integrations-service/integrations/models/spider.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
class SpiderResponse(BaseModel):
9-
content: str | None = None
9+
content: str | list[str] | None = None
1010
error: str | None = None
1111
status: int | None = None
1212
costs: dict[Any, Any] | None = None

0 commit comments

Comments
 (0)