Plugin Directory

Changeset 3489606


Ignore:
Timestamp:
03/24/2026 04:22:10 AM (4 days ago)
Author:
aslamdoctor
Message:

Update to version 1.0.2 from GitHub

Location:
aslams-ai-provider-for-grok
Files:
2 added
2 deleted
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • aslams-ai-provider-for-grok/tags/1.0.2/CONTRIBUTING.md

    r3483361 r3489606  
    1 # Contributing to Third-Party Provider for Grok
     1# Contributing to AI Provider for Grok
    22
    33Thank you for your interest in contributing! Here's how you can help.
     
    55## Reporting Issues
    66
    7 Before opening an issue, please search [existing issues](https://github.com/aslamdoctor/aslams-provider-for-grok-ai/issues) to avoid duplicates.
     7Before opening an issue, please search [existing issues](https://github.com/aslamdoctor/ai-provider-for-grok/issues) to avoid duplicates.
    88
    99When reporting a bug, include:
     
    1919   ```bash
    2020   cd wp-content/plugins/
    21    git clone https://github.com/aslamdoctor/aslams-provider-for-grok-ai.git
     21   git clone https://github.com/aslamdoctor/ai-provider-for-grok.git
    2222   ```
    2323
     
    5252
    5353```
    54 ├── aslams-provider-for-grok-ai.php   # Main plugin file
     54├── ai-provider-for-grok.php   # Main plugin file
    5555├── src/
    5656│   ├── autoload.php                   # PSR-4 autoloader
  • aslams-ai-provider-for-grok/tags/1.0.2/readme.txt

    r3483361 r3489606  
    1 === Third-Party Provider for Grok ===
     1=== AI Provider for Grok ===
    22Contributors: aslamdoctor
    33Donate link: https://github.com/sponsors/aslamdoctor
    4 Tags: ai, grok, xai, artificial-intelligence
     4Tags: ai, grok, xai, artificial-intelligence, connector
    55Requires at least: 6.9
    66Tested up to: 6.9
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88Requires PHP: 7.4
    99License: GPL-3.0-or-later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1111
    12 Third-Party Provider for Grok (xAI) for the WP AI Client SDK.
     12AI Provider for Grok (xAI) for the WP AI Client SDK.
    1313
    1414== Description ==
     
    36361. Purchase API tokens from [x.ai](https://x.ai/) if you haven't already
    37372. Ensure the WP AI Client plugin is installed and activated
    38 3. Upload the plugin files to `/wp-content/plugins/aslams-provider-for-grok-ai/`
     383. Upload the plugin files to `/wp-content/plugins/ai-provider-for-grok/`
    39394. Activate the plugin through the 'Plugins' menu in WordPress
    40405. Go to Settings > AI Credentials and enter your Grok (xAI) API key
     
    6666`$json = AI_Client::prompt( 'Analyze this topic: WordPress plugins' )->using_provider( 'grok' )->as_json_response( $schema )->generate_text();`
    6767
    68 For full usage examples including chat history, function calling, and feature detection, see the [README on GitHub](https://github.com/aslamdoctor/aslams-provider-for-grok-ai).
     68For full usage examples including chat history, function calling, and feature detection, see the [README on GitHub](https://github.com/aslamdoctor/ai-provider-for-grok).
    6969
    7070== Frequently Asked Questions ==
     
    103103We welcome contributions! You can help by:
    104104
    105 * Reporting bugs or suggesting features via [GitHub Issues](https://github.com/aslamdoctor/aslams-provider-for-grok-ai/issues)
    106 * Submitting pull requests on [GitHub](https://github.com/aslamdoctor/aslams-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)
    107107
    108 Please read our [Contributing Guide](https://github.com/aslamdoctor/aslams-provider-for-grok-ai/blob/master/CONTRIBUTING.md) before submitting a pull request.
     108Please read our [Contributing Guide](https://github.com/aslamdoctor/ai-provider-for-grok/blob/master/CONTRIBUTING.md) before submitting a pull request.
    109109
    110110== 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
    111116
    112117= 1.0.1 =
  • aslams-ai-provider-for-grok/tags/1.0.2/src/Models/GrokImageGenerationModel.php

    r3483355 r3489606  
    1111
    1212/**
    13  * Class for image generation models used by Third-Party Provider for Grok.
     13 * Class for image generation models used by AI Provider for Grok.
    1414 *
    1515 * @since 1.1.0
  • aslams-ai-provider-for-grok/tags/1.0.2/src/Models/GrokTextGenerationModel.php

    r3483355 r3489606  
    1111
    1212/**
    13  * Class for text generation models used by Third-Party Provider for Grok.
     13 * Class for text generation models used by AI Provider for Grok.
    1414 *
    1515 * @since 1.0.0
  • aslams-ai-provider-for-grok/tags/1.0.2/src/Provider/GrokProvider.php

    r3483355 r3489606  
    2121
    2222/**
    23  * Class for Third-Party Provider for Grok.
     23 * Class for AI Provider for Grok.
    2424 *
    2525 * @since 1.0.0
  • aslams-ai-provider-for-grok/tags/1.0.2/src/autoload.php

    r3483355 r3489606  
    22
    33/**
    4  * PSR-4 autoloader for Third-Party Provider for Grok package.
     4 * PSR-4 autoloader for AI Provider for Grok package.
    55 *
    66 * @since 1.0.0
  • aslams-ai-provider-for-grok/trunk/CONTRIBUTING.md

    r3483361 r3489606  
    1 # Contributing to Third-Party Provider for Grok
     1# Contributing to AI Provider for Grok
    22
    33Thank you for your interest in contributing! Here's how you can help.
     
    55## Reporting Issues
    66
    7 Before opening an issue, please search [existing issues](https://github.com/aslamdoctor/aslams-provider-for-grok-ai/issues) to avoid duplicates.
     7Before opening an issue, please search [existing issues](https://github.com/aslamdoctor/ai-provider-for-grok/issues) to avoid duplicates.
    88
    99When reporting a bug, include:
     
    1919   ```bash
    2020   cd wp-content/plugins/
    21    git clone https://github.com/aslamdoctor/aslams-provider-for-grok-ai.git
     21   git clone https://github.com/aslamdoctor/ai-provider-for-grok.git
    2222   ```
    2323
     
    5252
    5353```
    54 ├── aslams-provider-for-grok-ai.php   # Main plugin file
     54├── ai-provider-for-grok.php   # Main plugin file
    5555├── src/
    5656│   ├── autoload.php                   # PSR-4 autoloader
  • aslams-ai-provider-for-grok/trunk/readme.txt

    r3483361 r3489606  
    1 === Third-Party Provider for Grok ===
     1=== AI Provider for Grok ===
    22Contributors: aslamdoctor
    33Donate link: https://github.com/sponsors/aslamdoctor
    4 Tags: ai, grok, xai, artificial-intelligence
     4Tags: ai, grok, xai, artificial-intelligence, connector
    55Requires at least: 6.9
    66Tested up to: 6.9
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88Requires PHP: 7.4
    99License: GPL-3.0-or-later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1111
    12 Third-Party Provider for Grok (xAI) for the WP AI Client SDK.
     12AI Provider for Grok (xAI) for the WP AI Client SDK.
    1313
    1414== Description ==
     
    36361. Purchase API tokens from [x.ai](https://x.ai/) if you haven't already
    37372. Ensure the WP AI Client plugin is installed and activated
    38 3. Upload the plugin files to `/wp-content/plugins/aslams-provider-for-grok-ai/`
     383. Upload the plugin files to `/wp-content/plugins/ai-provider-for-grok/`
    39394. Activate the plugin through the 'Plugins' menu in WordPress
    40405. Go to Settings > AI Credentials and enter your Grok (xAI) API key
     
    6666`$json = AI_Client::prompt( 'Analyze this topic: WordPress plugins' )->using_provider( 'grok' )->as_json_response( $schema )->generate_text();`
    6767
    68 For full usage examples including chat history, function calling, and feature detection, see the [README on GitHub](https://github.com/aslamdoctor/aslams-provider-for-grok-ai).
     68For full usage examples including chat history, function calling, and feature detection, see the [README on GitHub](https://github.com/aslamdoctor/ai-provider-for-grok).
    6969
    7070== Frequently Asked Questions ==
     
    103103We welcome contributions! You can help by:
    104104
    105 * Reporting bugs or suggesting features via [GitHub Issues](https://github.com/aslamdoctor/aslams-provider-for-grok-ai/issues)
    106 * Submitting pull requests on [GitHub](https://github.com/aslamdoctor/aslams-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)
    107107
    108 Please read our [Contributing Guide](https://github.com/aslamdoctor/aslams-provider-for-grok-ai/blob/master/CONTRIBUTING.md) before submitting a pull request.
     108Please read our [Contributing Guide](https://github.com/aslamdoctor/ai-provider-for-grok/blob/master/CONTRIBUTING.md) before submitting a pull request.
    109109
    110110== 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
    111116
    112117= 1.0.1 =
  • aslams-ai-provider-for-grok/trunk/src/Models/GrokImageGenerationModel.php

    r3483355 r3489606  
    1111
    1212/**
    13  * Class for image generation models used by Third-Party Provider for Grok.
     13 * Class for image generation models used by AI Provider for Grok.
    1414 *
    1515 * @since 1.1.0
  • aslams-ai-provider-for-grok/trunk/src/Models/GrokTextGenerationModel.php

    r3483355 r3489606  
    1111
    1212/**
    13  * Class for text generation models used by Third-Party Provider for Grok.
     13 * Class for text generation models used by AI Provider for Grok.
    1414 *
    1515 * @since 1.0.0
  • aslams-ai-provider-for-grok/trunk/src/Provider/GrokProvider.php

    r3483355 r3489606  
    2121
    2222/**
    23  * Class for Third-Party Provider for Grok.
     23 * Class for AI Provider for Grok.
    2424 *
    2525 * @since 1.0.0
  • aslams-ai-provider-for-grok/trunk/src/autoload.php

    r3483355 r3489606  
    22
    33/**
    4  * PSR-4 autoloader for Third-Party Provider for Grok package.
     4 * PSR-4 autoloader for AI Provider for Grok package.
    55 *
    66 * @since 1.0.0
Note: See TracChangeset for help on using the changeset viewer.