intelligent-intern/openai-bundle

Symfony bundle for OpenAI integration

Installs: 36

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:intelligent-intern-bundle

1.0.0 2025-03-02 02:04 UTC

This package is auto-updated.

Last update: 2025-03-12 01:15:47 UTC


README

The intelligent-intern/openai-bundle integrates OpenAI with the Intelligent Intern Core Framework, allowing seamless AI functionality for embedding generation.

Installation

Install the bundle using Composer:

composer require intelligent-intern/openai-bundle

Configuration

Ensure the following secret is set in vault:

secret/data/data/openai:
  api_key: your_openai_api_key

To use the bundle, ensure the AI_PROVIDER is set to "openai".

Usage

Once the bundle is installed and configured, the Core framework will dynamically detect the OpenAI service via the ai.strategy tag.

The service will be available via the AIServiceFactory:

<?php

namespace App\Controller;

use App\Service\Api\AIServiceFactory;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;

class EmbeddingController extends AbstractController
{
    public function __construct(
        private AIServiceFactory $aiServiceFactory
    ) {}

    public function generateEmbedding(Request $request): JsonResponse
    {
        $input = $request->get('input', '');

        if (empty($input)) {
            return new JsonResponse(['error' => 'Input cannot be empty'], 400);
        }

        try {
            $aiService = $this->aiServiceFactory->create();
            $embedding = $aiService->generateEmbedding($input);

            return new JsonResponse(['embedding' => $embedding]);
        } catch (\Exception $e) {
            return new JsonResponse(['error' => $e->getMessage()], 500);
        }
    }
}

Extensibility

This bundle is specifically designed to integrate with intelligent-intern/core. It leverages the dynamic service discovery mechanism to ensure seamless compatibility.

If you'd like to add additional strategies, simply create a similar bundle that implements the AIServiceInterface and tag its service with ai.strategy.

For example:

services:
    Your\CustomBundle\Service\CustomAIService:
        tags: ['ai.strategy']

License

This bundle is open-sourced software licensed under the MIT license.