mirror of
https://github.com/langgenius/dify-official-plugins.git
synced 2026-07-24 21:15:29 -04:00
bb45b1dda0
* Add support for ModelScope community * Update requirements.txt Add openai dependency * Update models/modelscope/requirements.txt --------- Co-authored-by: yrk <12787191+yrk15994109427@user.noreply.gitee.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
7 lines
148 B
Python
7 lines
148 B
Python
from dify_plugin import Plugin, DifyPluginEnv
|
|
|
|
plugin = Plugin(DifyPluginEnv(MAX_REQUEST_TIMEOUT=120))
|
|
|
|
if __name__ == '__main__':
|
|
plugin.run()
|