MCPcopy Index your code
hub / github.com/AmberSahdev/Open-Interface / execute_user_request

Method execute_user_request

app/ui.py:359–368  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

357 return user_input.strip()
358
359 def execute_user_request(self) -> None:
360 # Puts the user request received from the UI into the MP queue being read in App to be sent to Core.
361 user_request = self.display_input()
362
363 if user_request == '' or user_request is None:
364 return
365
366 self.update_message('Fetching Instructions')
367
368 self.user_request_queue.put(user_request)
369
370 def start_voice_input_thread(self) -> None:
371 # Start voice input in a separate thread

Callers 1

create_widgetsMethod · 0.95

Calls 2

display_inputMethod · 0.95
update_messageMethod · 0.95

Tested by

no test coverage detected