We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed00d11 commit 60d074fCopy full SHA for 60d074f
2 files changed
.gitignore
@@ -17,4 +17,3 @@ agent-sdk-server/claude-settings.json
17
18
# Sensitive configuration files
19
samconfig.toml
20
-samconfig*.toml
agent-sdk-client/handler.py
@@ -39,14 +39,6 @@ async def process_webhook(body: dict) -> None:
39
if not message or not message.text:
40
return
41
42
- if message.text.startswith('/'):
43
- await bot.send_message(
44
- chat_id=message.chat_id,
45
- text="Commands not supported yet. Just send me a message!",
46
- message_thread_id=message.message_thread_id,
47
- )
48
- return
49
-
50
await bot.send_chat_action(
51
chat_id=message.chat_id,
52
action=ChatAction.TYPING,
0 commit comments