Skip to content

Commit

Permalink
chore: add logging for model temperature
Browse files Browse the repository at this point in the history
  • Loading branch information
jellydn committed Feb 20, 2024
1 parent 8ff6db6 commit d7abc3e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions rplugin/python3/CopilotChat/handlers/chat_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,9 @@ def _add_chat_messages(
self.nvim.exec_lua(
'require("CopilotChat.utils").log_info(...)', f"Model: {model}"
)
self.nvim.exec_lua(
'require("CopilotChat.utils").log_info(...)', f"Temperature: {temperature}"
)
self.nvim.exec_lua(
'require("CopilotChat.utils").log_info(...)', "Asking Copilot"
)
Expand Down

0 comments on commit d7abc3e

Please sign in to comment.