Dis guide go show you how you fit set up Azure OpenAI for language translation and Azure Computer Vision for image content analysis (wey fit help for image-based translation) inside Azure AI Foundry.
Prerequisites:
You go first create Azure AI Project, wey go act like central place to manage your AI resources.
Go https://ai.azure.com and sign in with your Azure account.
Select +Create to create new project.
CoopTranslator-Project).CoopTranslator-Hub) (Create new one if e no dey).Inside your project, you go deploy Azure OpenAI model wey go work as backend for text translation.
If you no dey there already, open the new project wey you create (e.g., CoopTranslator-Project) inside Azure AI Foundry.
From your project left-hand menu, under “My assets”, select “Models + endpoints”.
Select + Deploy model.
Select Deploy Base Model.
Dem go show you list of available models. Use filter or search find better GPT model. We recommend gpt-4o.
Select the model wey you want and click Confirm.
Select Deploy.
After you don deploy am, you fit select the deployment from “Models + endpoints” page to see REST endpoint URL, Key, Deployment name, Model name and API version. You go need all dis ones to connect the translation model to your application.
[!NOTE] You fit select API versions from API version deprecation page based on wetin you need. Make sure say you sabi say API version dey different from Model version wey dey show for Models + endpoints page inside Azure AI Foundry.
To make am possible to translate text wey dey inside images, you go need find Azure AI Service API Key and Endpoint.
CoopTranslator-Project). Make sure say you dey for project overview page.Find the API Key and Endpoint from Azure AI Service.
Go your Azure AI Project (e.g., CoopTranslator-Project). Make sure say you dey for project overview page.
Find API Key and Endpoint from Azure AI Service tab.

Dis connection go make the features of the linked Azure AI Services resource (including image analysis) dey available for your AI Foundry project. You fit use dis connection for your notebooks or applications to extract text from images, wey you fit later send go Azure OpenAI model for translation.
By now, you suppose don gather dis ones:
For Azure OpenAI (Text Translation):
gpt-4o)cooptranslator-gpt4o)For Azure AI Services (Image Text Extraction via Vision):
Later, when you dey build your application, you go likely configure am using dis credentials wey you gather. For example, you fit set dem as environment variables like dis:
# Azure AI Service Credentials (Required for image translation)
AZURE_AI_SERVICE_API_KEY="your_azure_ai_service_api_key" # e.g., 21xasd...
AZURE_AI_SERVICE_ENDPOINT="https://your_azure_ai_service_endpoint.cognitiveservices.azure.com/"
# Azure OpenAI Credentials (Required for text translation)
AZURE_OPENAI_API_KEY="your_azure_openai_api_key" # e.g., 21xasd...
AZURE_OPENAI_ENDPOINT="https://your_azure_openai_endpoint.openai.azure.com/"
AZURE_OPENAI_MODEL_NAME="your_model_name" # e.g., gpt-4o
AZURE_OPENAI_CHAT_DEPLOYMENT_NAME="your_deployment_name" # e.g., cooptranslator-gpt4o
AZURE_OPENAI_API_VERSION="your_api_version" # e.g., 2024-12-01-preview
Disclaimer:
Dis dokyument don use AI translet service Co-op Translator do di translet. Even as we dey try make am correct, abeg make you sabi say AI translet fit get mistake or no dey accurate well. Di original dokyument for im native language na di one wey you go take as di correct source. For important mata, e good make you use professional human translet. We no go fit take blame for any misunderstanding or wrong interpretation wey fit happen because you use dis translet.