### Add Project Files via Command Line Source: https://gitlab.com/astra-language/examples/agentspeakai-examples/-/blob/main/README.md Use this command to add project files to an existing repository or push an existing Git repository to GitLab. ```bash cd existing_repo git remote add origin https://gitlab.com/astra-language/examples/agentspeakai-examples.git git branch -M main git push -uf origin main ``` -------------------------------- ### Curl Request for Formal Living Room Navigation Source: https://gitlab.com/astra-language/examples/agentspeakai-examples/-/blob/main/MazeAgentsAI/README.md This curl request is for navigating to the 'Formal Living Room', which is located before the Bedroom. The path information should be provided by existing subagents. ```bash curl -X POST \ http://192.168.8.134:9000/Navi/query \ -H 'Content-Type: application/json' \ -H 'accept: text/plain' \ -d '{"room":"Formal Living Room"}' ``` -------------------------------- ### Curl Request for Walk-In Closet Navigation Source: https://gitlab.com/astra-language/examples/agentspeakai-examples/-/blob/main/MazeAgentsAI/README.md This curl request targets the 'Walk-In Closet' and assumes it's located east of the Bedroom. A new agent might be required to find this location. ```bash curl -X POST \ http://192.168.8.134:9000/Navi/query \ -H 'Content-Type: application/json' \ -H 'accept: text/plain' \ -d '{"room":"Walk-In Closet"}' ``` -------------------------------- ### Curl Request for Bedroom Navigation Source: https://gitlab.com/astra-language/examples/agentspeakai-examples/-/blob/main/MazeAgentsAI/README.md This curl request sends a POST request to the Navi agent's query endpoint to find a path to the 'Bedroom'. Ensure the IP address and port are correctly set for your agent's location. ```bash curl -X POST \ http://192.168.8.134:9000/Navi/query \ -H 'Content-Type: application/json' \ -H 'accept: text/plain' \ -d '{"room":"Bedroom"}' ``` -------------------------------- ### Curl Request for Mud Room Navigation Source: https://gitlab.com/astra-language/examples/agentspeakai-examples/-/blob/main/MazeAgentsAI/README.md This curl request is used to find the 'Mud Room', which is located after the Bedroom and Walk-In Closet. A new agent will likely be needed to discover this path. ```bash curl -X POST \ http://192.168.8.134:9000/Navi/query \ -H 'Content-Type: application/json' \ -H 'accept: text/plain' \ -d '{"room":"Mud Room"}' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.