Skip to content

Commit

Permalink
chore(integrations): Allow spider response content to be a list
Browse files Browse the repository at this point in the history
  • Loading branch information
HamadaSalhab committed Jan 2, 2025
1 parent afb0620 commit f6ca349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrations-service/integrations/models/spider.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class SpiderResponse(BaseModel):
content: str | None = None
content: str | list[str] | None = None
error: str | None = None
status: int | None = None
costs: dict[Any, Any] | None = None
Expand Down

0 comments on commit f6ca349

Please sign in to comment.