├── .gitignore ├── README.md ├── clock ├── README.md ├── __init__.py ├── base_clock.py ├── database │ └── database.py ├── handle │ ├── date_info.py │ └── job.py ├── llm │ ├── __init__.py │ ├── prompt.py │ └── utils.py ├── model │ ├── Clock.py │ └── __init__.py ├── natural_language_clock.py ├── scheduler.py └── uilts.py ├── jrrp ├── __init__.py └── llm.py ├── nonebot_anywhere_llm ├── README.md ├── __init__.py ├── history_manager.py ├── llm_service.py ├── models │ ├── __init__.py │ └── llm_params.py ├── provider │ ├── __init__.py │ ├── interface.py │ └── openai.py ├── readme.md └── utils │ ├── __init__.py │ ├── llm_time.py │ └── prompt.py └── weather ├── __init__.py ├── llm.py ├── model.py ├── readme.md └── weather.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/README.md -------------------------------------------------------------------------------- /clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/README.md -------------------------------------------------------------------------------- /clock/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/__init__.py -------------------------------------------------------------------------------- /clock/base_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/base_clock.py -------------------------------------------------------------------------------- /clock/database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/database/database.py -------------------------------------------------------------------------------- /clock/handle/date_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/handle/date_info.py -------------------------------------------------------------------------------- /clock/handle/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/handle/job.py -------------------------------------------------------------------------------- /clock/llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/llm/__init__.py -------------------------------------------------------------------------------- /clock/llm/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/llm/prompt.py -------------------------------------------------------------------------------- /clock/llm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/llm/utils.py -------------------------------------------------------------------------------- /clock/model/Clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/model/Clock.py -------------------------------------------------------------------------------- /clock/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/model/__init__.py -------------------------------------------------------------------------------- /clock/natural_language_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/natural_language_clock.py -------------------------------------------------------------------------------- /clock/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/scheduler.py -------------------------------------------------------------------------------- /clock/uilts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/clock/uilts.py -------------------------------------------------------------------------------- /jrrp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/jrrp/__init__.py -------------------------------------------------------------------------------- /jrrp/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/jrrp/llm.py -------------------------------------------------------------------------------- /nonebot_anywhere_llm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/nonebot_anywhere_llm/README.md -------------------------------------------------------------------------------- /nonebot_anywhere_llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/nonebot_anywhere_llm/__init__.py -------------------------------------------------------------------------------- /nonebot_anywhere_llm/history_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/nonebot_anywhere_llm/history_manager.py -------------------------------------------------------------------------------- /nonebot_anywhere_llm/llm_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/nonebot_anywhere_llm/llm_service.py -------------------------------------------------------------------------------- /nonebot_anywhere_llm/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/nonebot_anywhere_llm/models/__init__.py -------------------------------------------------------------------------------- /nonebot_anywhere_llm/models/llm_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/nonebot_anywhere_llm/models/llm_params.py -------------------------------------------------------------------------------- /nonebot_anywhere_llm/provider/__init__.py: -------------------------------------------------------------------------------- 1 | from .openai import OpenAIProvider -------------------------------------------------------------------------------- /nonebot_anywhere_llm/provider/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/nonebot_anywhere_llm/provider/interface.py -------------------------------------------------------------------------------- /nonebot_anywhere_llm/provider/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/nonebot_anywhere_llm/provider/openai.py -------------------------------------------------------------------------------- /nonebot_anywhere_llm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/nonebot_anywhere_llm/readme.md -------------------------------------------------------------------------------- /nonebot_anywhere_llm/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/nonebot_anywhere_llm/utils/__init__.py -------------------------------------------------------------------------------- /nonebot_anywhere_llm/utils/llm_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/nonebot_anywhere_llm/utils/llm_time.py -------------------------------------------------------------------------------- /nonebot_anywhere_llm/utils/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/nonebot_anywhere_llm/utils/prompt.py -------------------------------------------------------------------------------- /weather/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/weather/__init__.py -------------------------------------------------------------------------------- /weather/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/weather/llm.py -------------------------------------------------------------------------------- /weather/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/weather/model.py -------------------------------------------------------------------------------- /weather/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/weather/readme.md -------------------------------------------------------------------------------- /weather/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeta-qixi/nonebot2-plugins/HEAD/weather/weather.py --------------------------------------------------------------------------------