mirror of
https://github.com/aljazceru/chatgpt-telegram-bot.git
synced 2025-12-20 14:14:52 +01:00
minor updates
This commit is contained in:
@@ -123,7 +123,7 @@ Check out the [official API reference](https://platform.openai.com/docs/api-refe
|
|||||||
| `youtube_audio_extractor` | Extract audio from YouTube videos | - | `pip install pytube~=15.0.0` |
|
| `youtube_audio_extractor` | Extract audio from YouTube videos | - | `pip install pytube~=15.0.0` |
|
||||||
| `deepl_translate` | Translate text to any language (powered by [DeepL](https://deepl.com)) - by [@LedyBacer](https://github.com/LedyBacer) | `DEEPL_API_KEY` | |
|
| `deepl_translate` | Translate text to any language (powered by [DeepL](https://deepl.com)) - by [@LedyBacer](https://github.com/LedyBacer) | `DEEPL_API_KEY` | |
|
||||||
| `gtts_text_to_speech` | Text to speech (powered by Google Translate APIs) | - | `pip install gtts~=2.3.2` |
|
| `gtts_text_to_speech` | Text to speech (powered by Google Translate APIs) | - | `pip install gtts~=2.3.2` |
|
||||||
| `whois` | Query the whois domain database | - | `pip install whois~=0.9.27` |
|
| `whois` | Query the whois domain database - by [@jnaskali](https://github.com/jnaskali) | - | `pip install whois~=0.9.27` |
|
||||||
|
|
||||||
**Note**: some plugins have additional dependencies that are not listed in the `requirements.txt` file. If you plan on using these plugins, you can install them manually using the command above (see the `Dependency` column).
|
**Note**: some plugins have additional dependencies that are not listed in the `requirements.txt` file. If you plan on using these plugins, you can install them manually using the command above (see the `Dependency` column).
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ from plugins.ddg_web_search import DDGWebSearchPlugin
|
|||||||
from plugins.wolfram_alpha import WolframAlphaPlugin
|
from plugins.wolfram_alpha import WolframAlphaPlugin
|
||||||
from plugins.deepl import DeeplTranslatePlugin
|
from plugins.deepl import DeeplTranslatePlugin
|
||||||
from plugins.worldtimeapi import WorldTimeApiPlugin
|
from plugins.worldtimeapi import WorldTimeApiPlugin
|
||||||
from plugins.whois import WhoisPlugin
|
from plugins.whois_ import WhoisPlugin
|
||||||
|
|
||||||
|
|
||||||
class PluginManager:
|
class PluginManager:
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
from typing import Dict
|
from typing import Dict
|
||||||
from .plugin import Plugin
|
from .plugin import Plugin
|
||||||
|
|
||||||
import whois
|
import whois
|
||||||
|
|
||||||
|
|
||||||
class WhoisPlugin(Plugin):
|
class WhoisPlugin(Plugin):
|
||||||
"""
|
"""
|
||||||
A plugin to query whois database
|
A plugin to query whois database
|
||||||
Reference in New Issue
Block a user