Merge pull request 'ci: turning on debug' (#2) from f into main

Reviewed-on: #2
This commit is contained in:
2026-01-10 05:12:57 +00:00
3 changed files with 5 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ jobs:
with:
api_token: ${{ secrets.AGENT_TOKEN }}
api_url: ${{ secrets.AGENT_API_URL }}
debug: false
debug: true
name: Send Tasks to Agent
'on':
issue_comment:

4
dist/index.js vendored
View File

@@ -32929,8 +32929,8 @@ async function run() {
inputs: {
segment_id,
document_id,
embed_text: comments[0],
store_text: comments[comments.length - 1],
embed_text: String(comments[0]).trim(),
store_text: String(comments[comments.length - 1]).trim(),
},
},
};

View File

@@ -97,8 +97,8 @@ async function run() {
inputs: {
segment_id,
document_id,
embed_text: comments[0],
store_text: comments[comments.length - 1],
embed_text: String(comments[0]).trim(),
store_text: String(comments[comments.length - 1]).trim(),
},
},
};