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.
Download lucianotonet/groq-php
More information about lucianotonet/groq-php
Files in lucianotonet/groq-php
Package groq-php
Short Description A powerful PHP library for seamless integration with the GroqCloud API
License MIT
Informations about the package groq-php
Groq PHP
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
- [x] Chat Completions
- [x] Tool Calling
- [x] Audio Transcription and Translation
- [x] Vision
- [x] Reasoning
- [x] Files and Batch Processing
Installation
Configuration
-
Get your API Key:
- Go to GroqCloud Console
- Create a new API key
-
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):
temperature
: Controls randomness (0.0 - 2.0)max_completion_tokens
: Maximum tokens in responsetop_p
: Nucleus samplingfrequency_penalty
: Penalty for repeated tokens (-2.0 - 2.0)presence_penalty
: Penalty for repeated topics (-2.0 - 2.0)stop
: Stop sequencesseed
: For reproducibility
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:
- Definition of multiple tools (e.g.,
getCurrentDateTimeTool
,getCurrentWeatherTool
) parallel_tool_calls
: Controls whether tool calls can be made in parallel (currently must be forcedfalse
in code)
4. Audio (Transcription and Translation)
- Response formats:
'json'
,'verbose_json'
,'text'
. Thevtt
andsrt
formats are not supported. language
: ISO 639-1 code of the source language (optional but recommended for better accuracy). Seeexamples/audio-transcriptions.php
for a complete list of supported languages.temperature
: Controls variability.
5. Vision
Allows analyzing images (local upload or URL).
analyze()
: Takes the file path (local) or image URL, and a prompt.- Size limits: 20MB for URLs, 4MB for local files (due to base64 encoding).
- Default model is
llama-3.2-90b-vision-preview
, but can be configured withsetDefaultModel()
or by passing themodel
parameter inanalyze()
. - Local image is base64 encoded within the library before sending.
6. Reasoning
Enables step-by-step reasoning tasks.
analyze()
: Takes the prompt (question/problem) and an options array.reasoning_format
:'raw'
: Includes reasoning with<think>
tags in content (default)'parsed'
: Returns reasoning in a separatereasoning
field'hidden'
: Returns only the final answer
system_prompt
: Additional instructions for the model (optional). Added as asystem
message before the user message.- Must use
'parsed'
or'hidden'
format when using JSON mode - Optional parameters:
temperature
,max_completion_tokens
,top_p
,frequency_penalty
, etc.
Reasoning Formats
The reasoning feature supports three output formats:
-
Raw Format (Default)
- Includes reasoning steps within
<think>
tags in the content - Best for debugging and understanding the model's thought process
- Includes reasoning steps within
-
Parsed Format
- Separates reasoning into a dedicated field
- Ideal for applications that need to process reasoning steps separately
- 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:
upload()
: Uploads a valid JSONL file. Purpose must be'batch'
- File validation:
- Checks file existence
- Checks if empty
- Checks maximum size (100MB)
- Checks MIME type (
text/plain
orapplication/json
) - Validates each line as valid JSON
list()
: Lists files, optionally filtering bypurpose
with pagination options (limit
,after
,order
)download()
: Downloads file contentdelete()
: Deletes a file
Batch Processing:
batches()->create()
: Creates batch for asynchronous processinginput_file_id
: Uploaded JSONL file IDendpoint
: Currently only/v1/chat/completions
supportedcompletion_window
: Currently only'24h'
supported
batches()->list()
,batches()->retrieve()
,batches()->cancel()
: Manage batches
8. Error Handling
The library throws GroqException
for API errors. The exception contains:
getMessage()
: Descriptive error messagegetCode()
: HTTP status code (or 0 for invalid API key)getType()
: Error type (seeGroqException::ERROR_TYPES
for possible types)getHeaders()
: HTTP response headersgetResponseBody()
: Response body (as object if JSON)getError()
: Returns array with error details (message, type, code)getFailedGeneration()
: If error type isfailed_generation
, returns the invalid JSON that caused the issue
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 >= 8.1
fileinfo
extensionguzzlehttp/guzzle
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:
- Changes that only affect static types and not runtime behavior.
- 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).
- Changes that should not affect most users in practical scenarios.
License
MIT