Skip to content

Commit

Permalink
Merge pull request #2909 from danswer-ai/bugfix/loopio
Browse files Browse the repository at this point in the history
loopio connector: entry["id"] can apparently be a number, so convert to str
  • Loading branch information
rkuo-danswer authored Oct 25, 2024
2 parents a931494 + 10b5b55 commit b9781c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/danswer/connectors/loopio/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def _process_entries(
]
doc_batch.append(
Document(
id=entry["id"],
id=str(entry["id"]),
sections=[Section(link=link, text=content_text)],
source=DocumentSource.LOOPIO,
semantic_identifier=questions[0],
Expand Down

0 comments on commit b9781c4

Please sign in to comment.