uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
.
/
craft4-newsite-space
/
plugins
/
.
/
craft-content-buddy
/
.
/
src
/
api
/
TextApi.php
/
/
<?php namespace convergine\contentbuddy\api; use convergine\contentbuddy\BuddyPlugin; use convergine\contentbuddy\models\SettingsModel; abstract class TextApi { protected SettingsModel $settings; public function __construct() { /** @var SettingsModel $settings */ $settings = BuddyPlugin::getInstance()->getSettings(); $this->settings = $settings; } function sendRequest($prompt, $maxTokens, $temperature, $isTranslate = false, $lang='') {} protected function getMaxTokensForModel($model): int { return match($model) { "grok-beta" => 130000, "gpt-4o", "gpt-4o-mini" => 15900, "gpt-4" => 7900, "gpt-4-turbo", "gpt-3.5-turbo" => 3900, default => 2000 }; } }
/srv/users/craft4/apps/./craft4-newsite-space/plugins/./craft-content-buddy/./src/api/TextApi.php