Oi !
Bem-vindo ao Microsoft Q&A!
Para encontrar e configurar o AZURE_OPENAI_ENDPOINT
no seu Dockerfile, você pode seguir estes passos:
- Obtenha o Endpoint: Primeiro, você precisa criar um recurso do Azure OpenAI no portal do Azure. Após a criação, você encontrará o endpoint na página de detalhes do recurso.
- Using the AZURE_OPENAI_ENDPOINT in a Dockerfile:
- You can set environment variables in your Dockerfile to use the
AZURE_OPENAI_ENDPOINT
. Here’s an example of how you might do it:
- You can set environment variables in your Dockerfile to use the
# Use an official Python runtime as a parent image
FROM python:3.9-slim
# Set environment variables
ENV AZURE_OPENAI_ENDPOINT=<your_endpoint_here>
ENV AZURE_OPENAI_API_KEY=<your_api_key_here>
# Install any needed packages specified in requirements.txt
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application code
COPY . .
# Run the application
CMD ["python", "./your_script.py"]
Replace <your_endpoint_here>
and <your_api_key_here>
with your actual endpoint and API key.
Espero que essas dicas ajudem a resolver o problema! Se precisar de mais assistência, estou à disposição.
Saudações
Jonathan.
-----------
Se você acha que as informações fornecidas acima resolveram sua dúvida, agradeceríamos se você pudesse marcá-la como "Aceite a resposta se achar útil". Isso nos ajuda a manter a qualidade e a relevância das soluções em nosso fórum.