actionmcp 0.11.0 → 0.12.0
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/lib/action_mcp/json_rpc_handler.rb +2 -0
- data/lib/action_mcp/prompt_response.rb +1 -2
- data/lib/action_mcp/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: a4b4a90666d6b9f71c78a0c49373d75bd4c2007de573f8af3c37d621c4bfaf0c
|
4
|
+
data.tar.gz: 7c97ab30f559374971ca38e1f8aad6ecd6e54d5251891ba398277eaee53408c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc7f904a5d47a764498d276205c63b9d0ce16b44fce651159bf6d525978d23df1be6cf1060f4f289a82baf8b815f6630b7b0d023013989e7dd1e97c97b9eb7bd
|
7
|
+
data.tar.gz: 317f8156fb89000bc56c77ef4c9c4061d434f5c592355ac1021308bb8745750bffc0554d8aaf003300a7d59e4f31d3dcb842c96de87a47d32ee79807c0263884
|
@@ -102,6 +102,8 @@ module ActionMCP
|
|
102
102
|
# }
|
103
103
|
# }
|
104
104
|
def process_completion_complete(id, params)
|
105
|
+
# TODO: Not Implemented, but to remove the error message in the inspector
|
106
|
+
transport.send_jsonrpc_response(id, result: { completion: { values: [], total: 0, hasMore: false } })
|
105
107
|
case params["ref"]["type"]
|
106
108
|
when "ref/prompt"
|
107
109
|
# TODO: Implement completion
|
data/lib/action_mcp/version.rb
CHANGED