Forgot some awaits

This commit is contained in:
2023-03-17 21:35:54 -04:00
parent 9238babde7
commit 5ba89a4019

View File

@@ -34,9 +34,9 @@ async def summarize(
):
await interaction.response.defer(ephemeral=False, with_message=True)
resp = search(article)
resp = await search(article)
interaction.followup.send("""Search Response:
await interaction.followup.send("""Search Response:
```
{resp.text[:1000]}
```