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 0235f03 commit 5d9f9bcCopy full SHA for 5d9f9bc
agentle/agents/whatsapp/v2/batch_processor_manager.py
@@ -1,4 +1,4 @@
1
import abc
2
3
4
-class BatchProcessorManger(abc.ABC): ...
+class BatchProcessorManager(abc.ABC): ...
agentle/agents/whatsapp/v2/whatsapp_bot.py
@@ -1,8 +1,11 @@
from collections.abc import Callable
from typing import Any
+
from pydantic import ConfigDict
5
from rsb.models.base_model import BaseModel
6
7
+from agentle.agents.whatsapp.v2.batch_processor_manager import BatchProcessorManager
8
9
10
class WhatsAppBot(BaseModel):
11
webhook_handlers: list[Callable[..., Any]]
0 commit comments