papi-ai/groq

Groq provider for PapiAI

Maintainers

Package info

github.com/papi-ai/groq

pkg:composer/papi-ai/groq

Transparency log

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.15.2 2026-07-31 18:03 UTC

This package is not auto-updated.

Last update: 2026-08-01 09:28:54 UTC


README

CI Latest Version Total Downloads PHP Version License

Groq provider for PapiAI - A simple but powerful PHP library for building AI agents.

Installation

composer require papi-ai/groq

Usage

use PapiAI\Core\Agent;
use PapiAI\Groq\GroqProvider;

$provider = new GroqProvider(
    apiKey: $_ENV['GROQ_API_KEY'],
);

$agent = new Agent(
    provider: $provider,
    instructions: 'You are a helpful assistant.',
);

$response = $agent->run('Hello!');
echo $response->text;

Available Models

GroqProvider::MODEL_GPT_OSS_120B  // 'openai/gpt-oss-120b' (default)
GroqProvider::MODEL_GPT_OSS_20B   // 'openai/gpt-oss-20b' (fast)

The Llama and Mixtral constants are still shipped but deprecated. Mixtral was decommissioned on 20 March 2025, and both Llama models are decommissioned on 16 August 2026.

Features

  • Ultra-fast inference via Groq LPU
  • Tool/function calling
  • Streaming support

License

MIT