mirror of
https://github.com/microsoft/autogen.git
synced 2026-04-20 03:02:16 -04:00
* simplify the initiation of chat * version update * include openai * completion * load config list from json * initiate_chat * oai config list * oai config list * config list * config_list * raise_error * retry_time * raise condition * oai config list * catch file not found * catch openml error * handle openml error * handle openml error * handle openml error * handle openml error * handle openml error * handle openml error * close #1139 * use property * termination msg * AIUserProxyAgent * smaller dev container * update notebooks * match * document code execution and AIUserProxyAgent * gpt 3.5 config list * rate limit * variable visibility * remove unnecessary import * quote * notebook comments * remove mathchat from init import * two users * import location * expose config * return str not tuple * rate limit * ipython user proxy * message * None result * rate limit * rate limit * rate limit * rate limit
69 lines
2.5 KiB
YAML
69 lines
2.5 KiB
YAML
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
|
|
|
name: OpenAI
|
|
|
|
on:
|
|
pull_request:
|
|
branches: ['main']
|
|
paths:
|
|
- 'flaml/autogen/**'
|
|
- 'test/autogen/**'
|
|
- 'notebook/autogen_openai_completion.ipynb'
|
|
- 'notebook/autogen_chatgpt_gpt4.ipynb'
|
|
- '.github/workflows/openai.yml'
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
python-version: ["3.9", "3.10", "3.11"]
|
|
runs-on: ${{ matrix.os }}
|
|
environment: openai
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install packages and dependencies
|
|
run: |
|
|
docker --version
|
|
python -m pip install --upgrade pip wheel
|
|
pip install -e .[autogen,blendsearch]
|
|
python -c "import flaml"
|
|
pip install coverage pytest datasets
|
|
- name: Install packages for MathChat when needed
|
|
if: matrix.python-version != '3.11'
|
|
run: |
|
|
pip install -e .[mathchat]
|
|
- name: Coverage
|
|
if: matrix.python-version == '3.9'
|
|
env:
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }}
|
|
AZURE_OPENAI_API_BASE: ${{ secrets.AZURE_OPENAI_API_BASE }}
|
|
OAI_CONFIG_LIST: ${{ secrets.OAI_CONFIG_LIST }}
|
|
run: |
|
|
coverage run -a -m pytest test/autogen
|
|
coverage xml
|
|
- name: Coverage and check notebook outputs
|
|
if: matrix.python-version != '3.9'
|
|
env:
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }}
|
|
AZURE_OPENAI_API_BASE: ${{ secrets.AZURE_OPENAI_API_BASE }}
|
|
WOLFRAM_ALPHA_APPID: ${{ secrets.WOLFRAM_ALPHA_APPID }}
|
|
OAI_CONFIG_LIST: ${{ secrets.OAI_CONFIG_LIST }}
|
|
run: |
|
|
pip install nbconvert nbformat ipykernel
|
|
coverage run -a -m pytest test/autogen/test_notebook.py
|
|
coverage xml
|
|
cat "$(pwd)/test/autogen/executed_openai_notebook_output.txt"
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v3
|
|
with:
|
|
file: ./coverage.xml
|
|
flags: unittests
|