This commit is contained in:
2023-11-28 04:39:36 +08:00
parent a9ac0e48b3
commit dc37274b6c
86 changed files with 2106 additions and 191 deletions

View File

@@ -6,4 +6,42 @@
'api_key' => env('OPENAI_API_KEY'),
],
// GPT 4
'openai-gpt-4-turbo' => [
'tokens' => 128000,
'model' => 'gpt-4-1106-preview',
'input_cost_per_thousand_tokens' => 0.01,
'output_cost_per_thousand_tokens' => 0.03,
],
'openai-gpt-4' => [
'tokens' => 8192,
'model' => 'gpt-4-0613',
'input_cost_per_thousand_tokens' => 0.03,
'output_cost_per_thousand_tokens' => 0.06,
],
// GPT 3.5
'openai-gpt-3-5-turbo-1106' => [
'tokens' => 16385,
'model' => 'gpt-3.5-turbo-1106',
'input_cost_per_thousand_tokens' => 0.0010,
'output_cost_per_thousand_tokens' => 0.002,
],
'openai-3-5-turbo' => [
'tokens' => 4096,
'model' => 'gpt-3.5-turbo',
'input_cost_per_thousand_tokens' => 0.0015,
'output_cost_per_thousand_tokens' => 0.002,
],
'openai-3-5-turbo-16k' => [
'tokens' => 16385,
'model' => 'gpt-3.5-turbo-16k',
'input_cost_per_thousand_tokens' => 0.003,
'output_cost_per_thousand_tokens' => 0.004,
],
];

View File

@@ -11,9 +11,12 @@
'defaults' => [
'title' => 'AI Buddy Tools', // set false to total remove
'titleBefore' => false, // Put defaults.title before page title, like 'It's Over 9000! - Dashboard'
'description' => 'The leading AI tools directory and search engine, Discover the best AI tools, apps and services list and take your business to the next level.', // set false to total remove
'description' => 'Your friendly AI tool directory platform. Discover AI Tools for any task!', // set false to total remove
'separator' => ' - ',
'keywords' => [],
'keywords' => [
'ai tools directory',
'yellow page ai tools',
],
'canonical' => 'full', // Set to null or 'full' to use Url::full(), set to 'current' to use Url::current(), set false to total remove
'robots' => false, // Set to 'all', 'none' or any combination of index/noindex and follow/nofollow
],
@@ -36,12 +39,16 @@
* The default configurations to be used by the opengraph generator.
*/
'defaults' => [
'title' => 'AI Buddy Tools', // set false to total remove
'description' => 'The leading AI tools directory and search engine, Discover the best AI tools, apps and services list and take your business to the next level.', // set false to total remove
'url' => false, // Set null for using Url::current(), set false to total remove
'title' => 'AI Buddy Tool', // set false to total remove
'description' => 'Your friendly AI tool directory platform. Discover AI Tools for any task!', // set false to total remove
'url' => null, // Set null for using Url::current(), set false to total remove
'type' => false,
'site_name' => false,
'images' => [],
'site_name' => 'AI Buddy Tool',
'images' => [
'https://cdn.aibuddytool.com/aibuddytool-og.webp',
'https://cdn.aibuddytool.com/aibuddytool-og.png',
'https://cdn.aibuddytool.com/aibuddytool-og.jpg'
],
],
],
'twitter' => [
@@ -58,11 +65,15 @@
* The default configurations to be used by the json-ld generator.
*/
'defaults' => [
'title' => 'AI Buddy Tools', // set false to total remove
'description' => 'The leading AI tools directory and search engine, Discover the best AI tools, apps and services list and take your business to the next level.', // set false to total remove
'url' => false, // Set to null or 'full' to use Url::full(), set to 'current' to use Url::current(), set false to total remove
'title' => 'AI Buddy Tool', // set false to total remove
'description' => 'Your friendly AI tool directory platform. Discover AI Tools for any task!', // set false to total remove
'url' => 'current', // Set to null or 'full' to use Url::full(), set to 'current' to use Url::current(), set false to total remove
'type' => 'WebPage',
'images' => [],
'images' => [
'https://cdn.aibuddytool.com/aibuddytool-og.webp',
'https://cdn.aibuddytool.com/aibuddytool-og.png',
'https://cdn.aibuddytool.com/aibuddytool-og.jpg'
],
],
],
];