Server SDKs
Build AI agents, control calls, send messages, and more
Reset the document to an empty state and return the builder for continued chaining. Delegates to SWMLService.reset_document().
SWMLService.reset_document()
Self — The builder instance for method chaining.
Self
1from signalwire import SWMLService, SWMLBuilder23service = SWMLService(name="demo")4builder = SWMLBuilder(service)56# Build first document7doc1 = builder.answer().hangup().build()8print(doc1)910# Reset and build a different document11builder.reset()12doc2 = builder.answer().play(url="say:Goodbye").hangup().build()13print(doc2)