ask-agent 0.26.0 → 0.26.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/ask/agent/session.rb +5 -0
- data/lib/ask/agent/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e64d0487f0c2798ee7515fa7b926747a4994be257a9d5290ee87461cd762018e
|
|
4
|
+
data.tar.gz: 8f5102405021977edee53cbc4bd9e743b4dca0db61362a5e14de346b99590a5b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 718a912eb746699b9c2f834ff75303d27c5391b1d7c552137d023e5526595f8ea973af00b89927c6984a94b5608ad37dc55c8dd28e15e5dcc083259e9880f6eb
|
|
7
|
+
data.tar.gz: e7e2afb7ab3c2552473191dc7a0c3aacb409c467f3ce721beb0a8bfe2fb5ee47e6c66a3ba72db7e12ae56b632b847ee21e87a884754a2e3210a125353f93a814
|
data/CHANGELOG.md
CHANGED
data/lib/ask/agent/session.rb
CHANGED
|
@@ -336,6 +336,11 @@ module Ask
|
|
|
336
336
|
nil
|
|
337
337
|
end
|
|
338
338
|
|
|
339
|
+
# @return [Boolean] true while at least one async tool is running
|
|
340
|
+
def pending_tools?
|
|
341
|
+
@pending_mutex.synchronize { !@pending_tools.empty? }
|
|
342
|
+
end
|
|
343
|
+
|
|
339
344
|
# Completes a pending (async) tool call from a background thread.
|
|
340
345
|
#
|
|
341
346
|
# Adds the tool result to the conversation and, when the session is
|
data/lib/ask/agent/version.rb
CHANGED