Download the PHP package lucianotonet/groq-php without Composer

On this page you can find all versions of the php package lucianotonet/groq-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package groq-php

Groq PHP

Groq PHP

Version Total Downloads Tests License

High-performance PHP client for GroqCloud API

A comprehensive PHP SDK that simplifies interaction with the world's fastest LLM inference platform, allowing PHP developers to easily integrate high-performance models (DeepSeek r1, Llama 3.3, Mixtral, Gemma, and more) into any PHP application.

Using on Laravel? Check this out: GroqLaravel

Features

Installation

Configuration

  1. Get your API Key:

  2. Configure your API Key:

    • Using environment variables:

    • Or using a .env file:

Usage

1. Listing Models

List available models.

2. Chat (Completions)

Generate interactive chat responses.

Streaming:

JSON Mode:

Additional Parameters (Chat Completions):

3. Tool Calling

Allows the model to call external functions/tools.

Advanced Tool Calling (with multiple tools and parallel calls):

See examples/tool-calling-advanced.php for a more complete example, including:

4. Audio (Transcription and Translation)

5. Vision

Allows analyzing images (local upload or URL).

6. Reasoning

Enables step-by-step reasoning tasks.

Reasoning Formats

The reasoning feature supports three output formats:

  1. Raw Format (Default)

    • Includes reasoning steps within <think> tags in the content
    • Best for debugging and understanding the model's thought process
  2. Parsed Format

    • Separates reasoning into a dedicated field
    • Ideal for applications that need to process reasoning steps separately
  3. Hidden Format
    • Returns only the final answer without showing reasoning steps
    • Best for production applications where only the result matters

7. Files and Batch Processing

Enables JSONL file upload for batch processing.

File Management:

Batch Processing:

8. Error Handling

The library throws GroqException for API errors. The exception contains:

The GroqException class provides static methods for creating specific exceptions like invalidRequest(), authenticationError(), etc., following a factory pattern.

Examples

The examples/ folder contains complete, working PHP scripts demonstrating each library feature. You can run them directly to see the library in action and interact with on your browser.

First, you need to copy your .env file from the root of the project to the examples folder.

Then, in the examples folder, you need to install the dependencies with:

Now, you can start the server with:

Finally, you can access the examples in your browser at http://127.0.0.1:8000.

Tests

The tests/ folder contains unit tests. Run them with composer test. Tests require the GROQ_API_KEY environment variable to be set.

Note: Tests make real API calls to Groq and consume API credits. For this reason, our CI pipeline runs tests only on PHP 8.2. If you need to test with different PHP versions, please do so locally and be mindful of API usage.

Requirements

PHP version

Contributing

Contributions are welcome! If you find a bug, have a suggestion, or want to add functionality, please open an issue or submit a pull request.

Changelog

See CHANGELOG.md for the full changelog.

About Semantic Versioning

This package follows SemVer conventions. However, breaking changes may be released in minor versions in the following cases:

  1. Changes that only affect static types and not runtime behavior.
  2. Modifications to internal library components that are technically public but not intended for external use. (Please open a GitHub issue if you depend on these internals).
  3. Changes that should not affect most users in practical scenarios.

License

MIT


All versions of groq-php with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1.0
guzzlehttp/guzzle Version ^7.9
vlucas/phpdotenv Version ^5.6
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package lucianotonet/groq-php contains the following files

Loading the files please wait ....