added missing async func def for ollama and unleashed examples

This commit is contained in:
Dustin Dannenhauer
2024-07-24 12:44:27 -04:00
parent 932080d145
commit f8beede38d
2 changed files with 3 additions and 3 deletions

View File

@@ -61,7 +61,7 @@ async def nostr_client():
#nostr_client_test_image_private("a beautiful ostrich watching the sunset")
class NotificationHandler(HandleNotification):
def handle(self, relay_url, subscription_id, event: Event):
async def handle(self, relay_url, subscription_id, event: Event):
print(f"Received new event from {relay_url}: {event.as_json()}")
if event.kind() == 7000:
print("[Nostr Client]: " + event.as_json())