agentle 0.9.24__py3-none-any.whl → 0.9.26__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ from enum import IntEnum
2
+
3
+
4
+ class MessageLimit(IntEnum):
5
+ NEWLY_CREATED = 250
6
+ SCALING_PATH = 2000
7
+ AUTOMATIC_SCALLING_1 = 10_000
8
+ AUTOMATIC_SCALLING_2 = 100_000
9
+ UNLIMITED = 1_000_000
File without changes
@@ -0,0 +1,13 @@
1
+ from collections.abc import Callable
2
+ from typing import Any
3
+
4
+ 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]]
12
+ batch_processor_manager: BatchProcessorManager
13
+ model_config = ConfigDict(arbitrary_types_allowed=True)
File without changes