wenjin272 commented on code in PR #332:
URL: https://github.com/apache/flink-agents/pull/332#discussion_r2606199703
##########
python/flink_agents/api/vector_stores/vector_store.py:
##########
@@ -85,11 +91,18 @@ class Document(BaseModel):
"""
content: str = Field(description="The actual text content of the
document.")
- metadata: Dict[str, Any] = Field(default_factory=dict,
description="Document metadata such as source, author, timestamp, etc.")
- id: str | None = Field(default=None, description="Unique identifier of the
document.")
+ metadata: Dict[str, Any] = Field(
+ default_factory=dict,
+ description="Document metadata such as source, author, timestamp,
etc.",
+ )
+ id: str | None = Field(
+ default=None, description="Unique identifier of the document."
+ )
Review Comment:
I just run `ruff format` before commit the codes. Looks like `ruff check`
only checks the lint rule, while `ruff format` only format the code style.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]