← 返回聊天
新建
删除
Models
gpt5.php
gpt5_file.php
gpt5_mini_file.php
openai_chat.php
Tools
get_time.php
get_weather.php
global_search_messages.php
math.php
memo.php
news.php
search_arxiv.php
search_crossref.php
search_github_code.php
search_pubmed.php
search_semantic_scholar.php
stock_market.php
url.php
<?php declare(strict_types=1); return [ 'name' => 'get_time', 'description' => '获取服务器当前时间(含时区)。', 'parameters' => [ 'type' => 'object', 'properties' => new stdClass(), ], 'run' => function(array $args, array $context) { return [ 'timezone' => date_default_timezone_get(), 'now' => date('Y-m-d H:i:s'), 'iso' => date('c'), ]; }, ];
保存