We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently when you add a new tool, in <tool_name>.json, you have an env property.
<tool_name>.json
env
{ "name": "agent-connect", "package": "poetry add agent-connect", "env": "HOST_DOMAIN=...\nHOST_PORT=\"80\"\nHOST_WS_PATH=\"/ws\"\nDID_DOCUMENT_PATH=...\nSSL_CERT_PATH=...\nSSL_KEY_PATH=...", "tools": ["send_message", "receive_message"] }
this is too rigidly designed. instead, lets accept a list of strings and handle the new line in the code. instead, this should look like
{ "name": "agent-connect", "package": "poetry add agent-connect", "env": [ "HOST_DOMAIN", "HOST_PORT=\"80\"", "HOST_WS_PATH=\"/ws\"", "DID_DOCUMENT_PATH=...", "SSL_CERT_PATH=...", "SSL_KEY_PATH=..." ], "tools": ["send_message", "receive_message"] }
change the current tool configs to match
The text was updated successfully, but these errors were encountered:
Refactor tool json file env format AgentOps-AI#26
9225580
No branches or pull requests
Currently when you add a new tool, in
<tool_name>.json
, you have anenv
property.this is too rigidly designed. instead, lets accept a list of strings and handle the new line in the code. instead, this should look like
change the current tool configs to match
The text was updated successfully, but these errors were encountered: