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

Method get_input

aider/coders/base_coder.py:898–910  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

896 self.commands.cmd_copy_context()
897
898 def get_input(self):
899 inchat_files = self.get_inchat_relative_files()
900 read_only_files = [self.get_rel_fname(fname) for fname in self.abs_read_only_fnames]
901 all_files = sorted(set(inchat_files + read_only_files))
902 edit_format = "" if self.edit_format == self.main_model.edit_format else self.edit_format
903 return self.io.get_input(
904 self.root,
905 all_files,
906 self.get_addable_relative_files(),
907 self.commands,
908 self.abs_read_only_fnames,
909 edit_format=edit_format,
910 )
911
912 def preproc_user_input(self, inp):
913 if not inp:

Callers 1

runMethod · 0.95

Calls 3

get_rel_fnameMethod · 0.95

Tested by

no test coverage detected