ci: turning on debug #2

Merged
drgroot merged 1 commits from f into main 2026-01-10 05:12:58 +00:00
3 changed files with 5 additions and 5 deletions
Showing only changes of commit af0388c3f6 - Show all commits

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(),
},
},
};