chore: aisearch-documents - add image for chatbot #29
Workflow file for this run
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: Process docs for SQLite AI Search | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - stage | |
| workflow_dispatch: | |
| jobs: | |
| docsearch: | |
| runs-on: ubuntu-latest | |
| environment: ${{ github.ref_name }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: sqliteai/sqlite-aisearch-action@v1 | |
| with: | |
| connection_string: ${{ secrets.PROJECT_STRING }} | |
| base_url: ${{ vars.BASE_URL }} | |
| database_name: documentation_ai.sqlite | |
| source_files: ./ | |
| only_extensions: "md,mdx" |