from bindu.bindufy import bindufydef handler(messages): return [{"role": "assistant", "content": messages[-1]["content"]}]config = { "author": "gaurikasethi88@gmail.com", "name": "echo_agent", "description": "A basic echo agent for quick testing.", "deployment": { "url": "http://localhost:3773", "expose": True, "cors_origins": ["http://localhost:5173"] },}bindufy(config, handler)# This will create a bindu agent with name echo_agent and expose it on port 3773#bindufy(config, handler, launch=True)# This will create a tunnel to your agent and expose it on port 3773
# Clone the Bindu repositorygit clone https://github.com/GetBindu/Bindu# Navigate to frontend directorycd frontend# Install dependenciesnpm install# Start frontend development servernpm run dev