MCPcopy
hub / github.com/Aider-AI/aider / preproc_user_input

Method preproc_user_input

aider/coders/base_coder.py:912–922  ·  view source on GitHub ↗
(self, inp)

Source from the content-addressed store, hash-verified

910 )
911
912 def preproc_user_input(self, inp):
913 if not inp:
914 return
915
916 if self.commands.is_command(inp):
917 return self.commands.run(inp)
918
919 self.check_for_file_mentions(inp)
920 inp = self.check_for_urls(inp)
921
922 return inp
923
924 def run_one(self, user_message, preproc):
925 self.init_before_message()

Callers 1

run_oneMethod · 0.95

Calls 4

check_for_urlsMethod · 0.95
is_commandMethod · 0.80
runMethod · 0.45

Tested by

no test coverage detected