fix: some typos using typos

Signed-off-by: yihong0618 <zouzou0208@gmail.com>
This commit is contained in:
yihong0618
2025-03-29 11:10:16 +08:00
parent 7c05bc1784
commit 80eef20422
5 changed files with 7 additions and 7 deletions

View File

@@ -383,7 +383,7 @@ def knowledge_delete(
# Confirm by user
user_input = (
input(
f"Are you sure you want to delete the doucment {doc_name} in "
f"Are you sure you want to delete the document {doc_name} in "
f"knowledge space {space_name}? Type 'yes' to confirm: "
)
.strip()
@@ -394,6 +394,6 @@ def knowledge_delete(
return
client.document_delete(space_name, KnowledgeDocumentRequest(doc_name=doc_name))
logger.info(
f"Delete the doucment {doc_name} in knowledge space {space_name} "
f"Delete the document {doc_name} in knowledge space {space_name} "
f"successfully!"
)