Bump node-forge from 1.3.1 to 1.3.3 (#724) #42
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Trigger Embed Service | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| trigger-embed: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger Embed Service | |
| env: # The API keys are the same as those used by the AI Assistant. There is only one (production) database. | |
| PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }} | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| run: | | |
| curl -X POST https://apollo.staging.openfn.org/services/embed_docsite \ | |
| -H "Content-Type: application/json" \ | |
| -d '{ | |
| "pinecone_api_key": "${{ secrets.PINECONE_API_KEY }}", | |
| "openai_api_key": "${{ secrets.OPENAI_API_KEY }}" | |
| }' |