Changeset 3489606
- Timestamp:
- 03/24/2026 04:22:10 AM (4 days ago)
- Location:
- aslams-ai-provider-for-grok
- Files:
-
- 2 added
- 2 deleted
- 12 edited
- 1 copied
-
tags/1.0.2 (copied) (copied from aslams-ai-provider-for-grok/trunk)
-
tags/1.0.2/CONTRIBUTING.md (modified) (4 diffs)
-
tags/1.0.2/ai-provider-for-grok.php (added)
-
tags/1.0.2/aslams-provider-for-grok-ai.php (deleted)
-
tags/1.0.2/readme.txt (modified) (4 diffs)
-
tags/1.0.2/src/Models/GrokImageGenerationModel.php (modified) (1 diff)
-
tags/1.0.2/src/Models/GrokTextGenerationModel.php (modified) (1 diff)
-
tags/1.0.2/src/Provider/GrokProvider.php (modified) (1 diff)
-
tags/1.0.2/src/autoload.php (modified) (1 diff)
-
trunk/CONTRIBUTING.md (modified) (4 diffs)
-
trunk/ai-provider-for-grok.php (added)
-
trunk/aslams-provider-for-grok-ai.php (deleted)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/src/Models/GrokImageGenerationModel.php (modified) (1 diff)
-
trunk/src/Models/GrokTextGenerationModel.php (modified) (1 diff)
-
trunk/src/Provider/GrokProvider.php (modified) (1 diff)
-
trunk/src/autoload.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
aslams-ai-provider-for-grok/tags/1.0.2/CONTRIBUTING.md
r3483361 r3489606 1 # Contributing to Third-PartyProvider for Grok1 # Contributing to AI Provider for Grok 2 2 3 3 Thank you for your interest in contributing! Here's how you can help. … … 5 5 ## Reporting Issues 6 6 7 Before opening an issue, please search [existing issues](https://github.com/aslamdoctor/a slams-provider-for-grok-ai/issues) to avoid duplicates.7 Before opening an issue, please search [existing issues](https://github.com/aslamdoctor/ai-provider-for-grok/issues) to avoid duplicates. 8 8 9 9 When reporting a bug, include: … … 19 19 ```bash 20 20 cd wp-content/plugins/ 21 git clone https://github.com/aslamdoctor/a slams-provider-for-grok-ai.git21 git clone https://github.com/aslamdoctor/ai-provider-for-grok.git 22 22 ``` 23 23 … … 52 52 53 53 ``` 54 ├── a slams-provider-for-grok-ai.php # Main plugin file54 ├── ai-provider-for-grok.php # Main plugin file 55 55 ├── src/ 56 56 │ ├── autoload.php # PSR-4 autoloader -
aslams-ai-provider-for-grok/tags/1.0.2/readme.txt
r3483361 r3489606 1 === Third-PartyProvider for Grok ===1 === AI Provider for Grok === 2 2 Contributors: aslamdoctor 3 3 Donate link: https://github.com/sponsors/aslamdoctor 4 Tags: ai, grok, xai, artificial-intelligence 4 Tags: ai, grok, xai, artificial-intelligence, connector 5 5 Requires at least: 6.9 6 6 Tested up to: 6.9 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 Requires PHP: 7.4 9 9 License: GPL-3.0-or-later 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html 11 11 12 Third-PartyProvider for Grok (xAI) for the WP AI Client SDK.12 AI Provider for Grok (xAI) for the WP AI Client SDK. 13 13 14 14 == Description == … … 36 36 1. Purchase API tokens from [x.ai](https://x.ai/) if you haven't already 37 37 2. Ensure the WP AI Client plugin is installed and activated 38 3. Upload the plugin files to `/wp-content/plugins/a slams-provider-for-grok-ai/`38 3. Upload the plugin files to `/wp-content/plugins/ai-provider-for-grok/` 39 39 4. Activate the plugin through the 'Plugins' menu in WordPress 40 40 5. Go to Settings > AI Credentials and enter your Grok (xAI) API key … … 66 66 `$json = AI_Client::prompt( 'Analyze this topic: WordPress plugins' )->using_provider( 'grok' )->as_json_response( $schema )->generate_text();` 67 67 68 For full usage examples including chat history, function calling, and feature detection, see the [README on GitHub](https://github.com/aslamdoctor/a slams-provider-for-grok-ai).68 For full usage examples including chat history, function calling, and feature detection, see the [README on GitHub](https://github.com/aslamdoctor/ai-provider-for-grok). 69 69 70 70 == Frequently Asked Questions == … … 103 103 We welcome contributions! You can help by: 104 104 105 * Reporting bugs or suggesting features via [GitHub Issues](https://github.com/aslamdoctor/a slams-provider-for-grok-ai/issues)106 * Submitting pull requests on [GitHub](https://github.com/aslamdoctor/a slams-provider-for-grok-ai)105 * Reporting bugs or suggesting features via [GitHub Issues](https://github.com/aslamdoctor/ai-provider-for-grok/issues) 106 * Submitting pull requests on [GitHub](https://github.com/aslamdoctor/ai-provider-for-grok) 107 107 108 Please read our [Contributing Guide](https://github.com/aslamdoctor/a slams-provider-for-grok-ai/blob/master/CONTRIBUTING.md) before submitting a pull request.108 Please read our [Contributing Guide](https://github.com/aslamdoctor/ai-provider-for-grok/blob/master/CONTRIBUTING.md) before submitting a pull request. 109 109 110 110 == Changelog == 111 112 = 1.0.2 = 113 * Renamed plugin to "AI Provider for Grok" 114 * Restored WordPress.org plugin slug 115 * Added 'connector' tag to readme.txt 111 116 112 117 = 1.0.1 = -
aslams-ai-provider-for-grok/tags/1.0.2/src/Models/GrokImageGenerationModel.php
r3483355 r3489606 11 11 12 12 /** 13 * Class for image generation models used by Third-PartyProvider for Grok.13 * Class for image generation models used by AI Provider for Grok. 14 14 * 15 15 * @since 1.1.0 -
aslams-ai-provider-for-grok/tags/1.0.2/src/Models/GrokTextGenerationModel.php
r3483355 r3489606 11 11 12 12 /** 13 * Class for text generation models used by Third-PartyProvider for Grok.13 * Class for text generation models used by AI Provider for Grok. 14 14 * 15 15 * @since 1.0.0 -
aslams-ai-provider-for-grok/tags/1.0.2/src/Provider/GrokProvider.php
r3483355 r3489606 21 21 22 22 /** 23 * Class for Third-PartyProvider for Grok.23 * Class for AI Provider for Grok. 24 24 * 25 25 * @since 1.0.0 -
aslams-ai-provider-for-grok/tags/1.0.2/src/autoload.php
r3483355 r3489606 2 2 3 3 /** 4 * PSR-4 autoloader for Third-PartyProvider for Grok package.4 * PSR-4 autoloader for AI Provider for Grok package. 5 5 * 6 6 * @since 1.0.0 -
aslams-ai-provider-for-grok/trunk/CONTRIBUTING.md
r3483361 r3489606 1 # Contributing to Third-PartyProvider for Grok1 # Contributing to AI Provider for Grok 2 2 3 3 Thank you for your interest in contributing! Here's how you can help. … … 5 5 ## Reporting Issues 6 6 7 Before opening an issue, please search [existing issues](https://github.com/aslamdoctor/a slams-provider-for-grok-ai/issues) to avoid duplicates.7 Before opening an issue, please search [existing issues](https://github.com/aslamdoctor/ai-provider-for-grok/issues) to avoid duplicates. 8 8 9 9 When reporting a bug, include: … … 19 19 ```bash 20 20 cd wp-content/plugins/ 21 git clone https://github.com/aslamdoctor/a slams-provider-for-grok-ai.git21 git clone https://github.com/aslamdoctor/ai-provider-for-grok.git 22 22 ``` 23 23 … … 52 52 53 53 ``` 54 ├── a slams-provider-for-grok-ai.php # Main plugin file54 ├── ai-provider-for-grok.php # Main plugin file 55 55 ├── src/ 56 56 │ ├── autoload.php # PSR-4 autoloader -
aslams-ai-provider-for-grok/trunk/readme.txt
r3483361 r3489606 1 === Third-PartyProvider for Grok ===1 === AI Provider for Grok === 2 2 Contributors: aslamdoctor 3 3 Donate link: https://github.com/sponsors/aslamdoctor 4 Tags: ai, grok, xai, artificial-intelligence 4 Tags: ai, grok, xai, artificial-intelligence, connector 5 5 Requires at least: 6.9 6 6 Tested up to: 6.9 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 Requires PHP: 7.4 9 9 License: GPL-3.0-or-later 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html 11 11 12 Third-PartyProvider for Grok (xAI) for the WP AI Client SDK.12 AI Provider for Grok (xAI) for the WP AI Client SDK. 13 13 14 14 == Description == … … 36 36 1. Purchase API tokens from [x.ai](https://x.ai/) if you haven't already 37 37 2. Ensure the WP AI Client plugin is installed and activated 38 3. Upload the plugin files to `/wp-content/plugins/a slams-provider-for-grok-ai/`38 3. Upload the plugin files to `/wp-content/plugins/ai-provider-for-grok/` 39 39 4. Activate the plugin through the 'Plugins' menu in WordPress 40 40 5. Go to Settings > AI Credentials and enter your Grok (xAI) API key … … 66 66 `$json = AI_Client::prompt( 'Analyze this topic: WordPress plugins' )->using_provider( 'grok' )->as_json_response( $schema )->generate_text();` 67 67 68 For full usage examples including chat history, function calling, and feature detection, see the [README on GitHub](https://github.com/aslamdoctor/a slams-provider-for-grok-ai).68 For full usage examples including chat history, function calling, and feature detection, see the [README on GitHub](https://github.com/aslamdoctor/ai-provider-for-grok). 69 69 70 70 == Frequently Asked Questions == … … 103 103 We welcome contributions! You can help by: 104 104 105 * Reporting bugs or suggesting features via [GitHub Issues](https://github.com/aslamdoctor/a slams-provider-for-grok-ai/issues)106 * Submitting pull requests on [GitHub](https://github.com/aslamdoctor/a slams-provider-for-grok-ai)105 * Reporting bugs or suggesting features via [GitHub Issues](https://github.com/aslamdoctor/ai-provider-for-grok/issues) 106 * Submitting pull requests on [GitHub](https://github.com/aslamdoctor/ai-provider-for-grok) 107 107 108 Please read our [Contributing Guide](https://github.com/aslamdoctor/a slams-provider-for-grok-ai/blob/master/CONTRIBUTING.md) before submitting a pull request.108 Please read our [Contributing Guide](https://github.com/aslamdoctor/ai-provider-for-grok/blob/master/CONTRIBUTING.md) before submitting a pull request. 109 109 110 110 == Changelog == 111 112 = 1.0.2 = 113 * Renamed plugin to "AI Provider for Grok" 114 * Restored WordPress.org plugin slug 115 * Added 'connector' tag to readme.txt 111 116 112 117 = 1.0.1 = -
aslams-ai-provider-for-grok/trunk/src/Models/GrokImageGenerationModel.php
r3483355 r3489606 11 11 12 12 /** 13 * Class for image generation models used by Third-PartyProvider for Grok.13 * Class for image generation models used by AI Provider for Grok. 14 14 * 15 15 * @since 1.1.0 -
aslams-ai-provider-for-grok/trunk/src/Models/GrokTextGenerationModel.php
r3483355 r3489606 11 11 12 12 /** 13 * Class for text generation models used by Third-PartyProvider for Grok.13 * Class for text generation models used by AI Provider for Grok. 14 14 * 15 15 * @since 1.0.0 -
aslams-ai-provider-for-grok/trunk/src/Provider/GrokProvider.php
r3483355 r3489606 21 21 22 22 /** 23 * Class for Third-PartyProvider for Grok.23 * Class for AI Provider for Grok. 24 24 * 25 25 * @since 1.0.0 -
aslams-ai-provider-for-grok/trunk/src/autoload.php
r3483355 r3489606 2 2 3 3 /** 4 * PSR-4 autoloader for Third-PartyProvider for Grok package.4 * PSR-4 autoloader for AI Provider for Grok package. 5 5 * 6 6 * @since 1.0.0
Note: See TracChangeset
for help on using the changeset viewer.