/
githubmirror
/
text-generation-webui
Обзор
Документация
Войти
/
githubmirror
/
text-generation-webui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
user_data/tools/get_datetime.py
18 строк
404 B
oobabooga
Add tool examples
12 мар 2026, 22:03
12 мар 2026, 22:03
2466305
Код
Авторство
О чём код?
from datetime import datetime tool = { "type": "function", "function": { "name": "get_datetime", "description": "Get the current date and time.", "parameters": { "type": "object", "properties": {}, } } } def execute(arguments): now = datetime.now() return {"date": now.strftime("%Y-%m-%d"), "time": now.strftime("%I:%M %p")}