byfareska/modelflow-azure-openai-adapter

Integrates the azure openai ecosystem into modelflow-ai.

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

This package is not auto-updated.

Last update: 2024-11-11 16:08:42 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
);