diff --git a/.github/workflows/build-website.yaml b/.github/workflows/build-website.yaml index 36510dfde3..e4b3750081 100644 --- a/.github/workflows/build-website.yaml +++ b/.github/workflows/build-website.yaml @@ -8,7 +8,17 @@ on: jobs: deploy: runs-on: ubuntu-latest +steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: List all files + run: ls -R + + - name: Run Python Script + run: | + cd src # Change "src" if your script is in another directory + python script.python steps: - name: Call Deploy Hook run: curl -X POST ${{ secrets.WEBSITE_DEPLOY_HOOK_URL }} diff --git a/examples/azure/chat_with_your_own_data.ipynb b/examples/azure/chat_with_your_own_data.ipynb index 0d56d33b18..5a6759af4f 100644 --- a/examples/azure/chat_with_your_own_data.ipynb +++ b/examples/azure/chat_with_your_own_data.ipynb @@ -99,7 +99,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -117,7 +117,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -155,7 +155,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ diff --git a/examples/azure/embeddings.ipynb b/examples/azure/embeddings.ipynb index 86c53b63ee..0dad4b2565 100644 --- a/examples/azure/embeddings.ipynb +++ b/examples/azure/embeddings.ipynb @@ -53,7 +53,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -71,7 +71,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -107,7 +107,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ diff --git a/openai b/openai new file mode 100644 index 0000000000..8c811e0f85 --- /dev/null +++ b/openai @@ -0,0 +1,4 @@ +curl https://api.openai.com/v1/models \ + -H "Authorization: Bearer $OPENAI_API_KEY" \ + -H "OpenAI-Organization: org-1cae2teLXv6O9IGon14YT50s" \ + -H "OpenAI-Project: $PROJECT_ID" \ No newline at end of file