> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ame.network/llms.txt
> Use this file to discover all available pages before exploring further.

# Social Clients

> Description of your new file.

Discord

```python theme={null}
from aser.social.discord import DiscordClient
from aser.agent import Agent
agent=Agent(name="discord agent", description="discord agent",model="gpt-3.5-turbo")
discord_agent = DiscordClient(agent)
discord_agent.run()
```

Telegram

```python theme={null}
from aser.social.telegram import TelegramClient
from aser.agent import Agent
agent=Agent(name="telegram agent", description="telegram agent",model="gpt-3.5-turbo")
telegram_agent=TelegramClient(agent)
telegram_agent.run()
```
