example(functions): Add OpenAI functions example (#767)

This commit is contained in:
Ettore Di Giacinto 2023-07-18 00:04:21 +02:00 committed by GitHub
parent 3c6b798522
commit 8379cce209
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 141 additions and 0 deletions

View file

@ -0,0 +1,5 @@
FROM python:3.10-bullseye
COPY . /app
WORKDIR /app
RUN pip install --no-cache-dir -r requirements.txt
ENTRYPOINT [ "python", "./functions-openai.py" ];