feat: initial example
Some checks failed
Unit Tests / unittest (push) Failing after 44s

This commit is contained in:
2026-01-09 23:28:21 +00:00
commit acf969be1e
14 changed files with 33535 additions and 0 deletions

28
README.md Normal file
View File

@@ -0,0 +1,28 @@
# Markdown Embedding Task
Will embed markdown files to the datalake when merging to main. This will be part of the database that will part of the RAG to dynamically inject into the system prompt based on the input prompt.
## Quick start
```yaml
name: Markdown Embedder
on:
push:
branches:
- main
jobs:
embed-markdown:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Send task to coding agent
uses: git.yusufali.ca/automation/action@main
with:
api_url: ${{ secrets.AGENT_API_URL }} # default: https://api.servc.io
api_token: ${{ secrets.AGENT_TOKEN }} # optional, required for authenticated API calls
route: agent-lake # default: agent-lake
debug: false
```