We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7fd0e4 commit 42c8dd1Copy full SHA for 42c8dd1
1 file changed
src/steamship/agents/mixins/transports/telegram.py
@@ -16,8 +16,10 @@
16
17
18
class TelegramTransportConfig(Config):
19
- bot_token: str = Field(description="The secret token for your Telegram bot")
20
- api_base: str = Field("https://api.telegram.org/bot", description="The root API for Telegram")
+ bot_token: Optional[str] = Field("", description="The secret token for your Telegram bot")
+ api_base: Optional[str] = Field(
21
+ "https://api.telegram.org/bot", description="The root API for Telegram"
22
+ )
23
24
25
class TelegramTransport(Transport):
0 commit comments