byfareska/modelflow-azure-openai-adapter

Integrates the azure openai ecosystem into modelflow-ai.

Installs: 35

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/byfareska/modelflow-azure-openai-adapter

v1.0.0 2024-09-27 10:41 UTC

This package is auto-updated.

Last update: 2025-09-27 13:20:30 UTC


README

$adapter = new \ModelflowAi\OpenaiAdapter\Embeddings\OpenaiEmbeddingAdapter(
    AzureOpenai::client(
        'https://anexampleproject.openai.azure.com/openai/deployments/thedeployment', //yours endpoint
        'theapikey' // yours class
    ),
    'text-embedding-3-large' //the model that you want to use
);