承接 dij-digital/langfuse-laravel 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

dij-digital/langfuse-laravel

Composer 安装命令:

composer require dij-digital/langfuse-laravel

包简介

This is my package langfuse-laravel

README 文档

README

This package provides a wrapper around the langfuse-php package, allowing you to easily integrate Langfuse into your Laravel applications. It uses as few dependencies as possible.

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Features

  • Tracing - Create traces, spans and generations that send directly to the Langfuse API
  • Prompts - Fetch, compile and create text and chat prompts with fallback support
  • Facade with direct access to prompt() and ingestion() methods

Requires PHP 8.3 or PHP 8.4 in combination with Laravel 11 or Laravel 12

Installation

composer require dij-digital/langfuse-laravel

Configuration

Add the following environment variables to your .env file:

LANGFUSE_BASE_URI=https://cloud.langfuse.com
LANGFUSE_PUBLIC_KEY=
LANGFUSE_SECRET_KEY=

# Optional - defaults to config('app.env')
LANGFUSE_ENVIRONMENT=

Publish the config file (optional):

php artisan vendor:publish --tag=langfuse-laravel-config

Usage

Tracing

Every call sends directly to the Langfuse API. No buffering, no flushing.

use DIJ\Langfuse\Laravel\Facades\Langfuse;

// Create a trace
$trace = Langfuse::ingestion()->trace(name: 'handle-request', userId: 'user-1', input: 'hello');

// Nest spans and generations under the trace
$span = $trace->span(name: 'search');
$generation = $span->generation(
    input: 'prompt',
    output: 'response',
    name: 'llm',
    model: 'gpt-4o',
);

// Update any object (sends immediately)
$span->update(output: 'done', endTime: date('c'));
$trace->update(output: 'final answer');

Prompts

use DIJ\Langfuse\Laravel\Facades\Langfuse;

// Get and compile prompts
Langfuse::prompt()->text('promptName', fallback: 'fallback text')->compile(['key' => 'value']);
Langfuse::prompt()->chat('chatName', fallback: [['role' => 'user', 'content' => 'fallback']])->compile(['key' => 'value']);

// List all prompts (auto-paginated Generator)
foreach (Langfuse::prompt()->list() as $item) {
    echo $item->name;
}

// Create a prompt
Langfuse::prompt()->create('promptName', 'text', PromptType::TEXT);

// Update prompt labels
Langfuse::prompt()->update(promptName: 'promptName', version: 1, labels: ['production']);

Testing

Use the fake() method to mock HTTP responses. The langfuse-php package ships with testing response helpers that provide sensible defaults — just override the fields you care about:

use DIJ\Langfuse\Laravel\Facades\Langfuse;
use DIJ\Langfuse\PHP\Testing\Responses\GetPromptResponse;

Langfuse::fake([
    new GetPromptResponse(data: [
        'name' => 'my-prompt',
        'type' => 'text',
        'prompt' => 'Hello {{name}}',
    ]),
]);

$prompt = Langfuse::prompt()->text('my-prompt');

Available test response helpers in DIJ\Langfuse\PHP\Testing\Responses:

  • GetPromptResponse — text prompt fetch
  • GetChatPromptResponse — chat prompt fetch
  • NoPromptFoundResponse — 404 prompt not found
  • PostPromptResponse — text prompt creation
  • PostChatPromptResponse — chat prompt creation
  • PatchPromptLabelsResponse — prompt label update
  • GetPromptListPageOneResponse — first page of prompt list
  • GetPromptListPageTwoResponse — second page of prompt list

Responses are consumed sequentially (Guzzle MockHandler), so the order of responses must match the order of HTTP calls your code makes.

Development

composer test        # Run tests
composer codestyle   # Format, refactor and analyse

Ingestion

use DIJ\Langfuse\Laravel\Facades\Langfuse;

// Creates a trace and a generation visible in Langfuse UI
$traceId = 'trace-id-123';

Langfuse::ingestion()->trace(
    input: 'prompt text',
    output: null,
    traceId: $traceId,
    name: 'name',
    sessionId: null,
    metadata: ['key' => 'value']
);

Langfuse::ingestion()->generation(
    input: 'prompt text',
    output: 'model output',
    traceId: $traceId,
    name: 'name',
    sessionId: null,
    promptName: 'promptName',
    promptVersion: 1,
    model: 'gpt-4o',
    modelParameters: ['temperature' => 0.7],
    metadata: ['key' => 'value']
);

Langfuse Laravel was created by Tycho Engberink and is maintained by DIJ Digital under the MIT license.

统计信息

  • 总下载量: 4.94k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 10
  • 点击次数: 10
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 10
  • Watchers: 0
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-06-25

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固