mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 10:14:59 +00:00
feat: add analytics events for copy-paste mode and AI comments
This commit is contained in:
parent
a8c42f453a
commit
73f3f4ec7e
2 changed files with 3 additions and 2 deletions
|
@ -864,6 +864,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
|
||||||
coder.file_watcher = file_watcher
|
coder.file_watcher = file_watcher
|
||||||
|
|
||||||
if args.copy_paste:
|
if args.copy_paste:
|
||||||
|
analytics.event("copy-paste mode")
|
||||||
ClipboardWatcher(coder.io, verbose=args.verbose)
|
ClipboardWatcher(coder.io, verbose=args.verbose)
|
||||||
|
|
||||||
coder.show_announcements()
|
coder.show_announcements()
|
||||||
|
|
|
@ -173,7 +173,7 @@ class FileWatcher:
|
||||||
if fname in self.coder.abs_fnames:
|
if fname in self.coder.abs_fnames:
|
||||||
continue
|
continue
|
||||||
if self.analytics:
|
if self.analytics:
|
||||||
self.analytics.event("file_added", filename=fname)
|
self.analytics.event("ai-comments file-add")
|
||||||
self.coder.abs_fnames.add(fname)
|
self.coder.abs_fnames.add(fname)
|
||||||
rel_fname = self.coder.get_rel_fname(fname)
|
rel_fname = self.coder.get_rel_fname(fname)
|
||||||
self.io.tool_output(f"Added {rel_fname} to the chat")
|
self.io.tool_output(f"Added {rel_fname} to the chat")
|
||||||
|
@ -183,7 +183,7 @@ class FileWatcher:
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
if self.analytics:
|
if self.analytics:
|
||||||
self.analytics.event("ai_comment_request")
|
self.analytics.event("ai-comments execute")
|
||||||
self.io.tool_output("Processing your request...")
|
self.io.tool_output("Processing your request...")
|
||||||
|
|
||||||
res = """
|
res = """
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue