We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0630520 commit 8ee5045Copy full SHA for 8ee5045
src/parlant/core/customers.py
@@ -234,9 +234,9 @@ async def update_customer(
234
async def list_customers(
235
self,
236
) -> Sequence[Customer]:
237
- return [
+ return [await self.read_customer(CustomerStore.GUEST_ID)] + [
238
await self._deserialize_customer(e) for e in await self._customers_collection.find({})
239
- ] + [await self.read_customer(CustomerStore.GUEST_ID)]
+ ]
240
241
@override
242
async def delete_customer(
0 commit comments