Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Do not double count secrets on /explain copilot function #581

Merged
merged 1 commit into from
Jan 14, 2025

Conversation

aponcedeleonch
Copy link
Contributor

@aponcedeleonch aponcedeleonch commented Jan 14, 2025

Closes: #519

When using /explain function in copilot we were double counting th secrets. The problem was that we were getting several user messages after the last assistant message. We are using the last assistant message as means to identify the user messages. Here is an example of how the request looked like for /explain:

[
  ...,
  {"role": "assistant", "content": "some content"},
  {"role": "user", "content": content_with_secrets},
  {"role": "user", "content": content_with_secrets},
]

To avoid double counting now we check which was the secrets that matched after the last assistant message and only consider the unique ones.

Closes: #519

When using `/explain` function in copilot we were double counting th secrets.
The problem was that we were getting several `user` messages after the last
`assistant` message. We are using the last `assistant` message as means to identify
the user messages. Here is an example of how the request looked like for `/explain`:
```
[
  {"role": "assistant", "content": "some content"},
  {"role": "user", "content": content_with_secrets},
  {"role": "user", "content": content_with_secrets},
]
```

To avoid double counting now we check which was the secrets that matched after
the last `assistant` message and only consider the unique ones.
@@ -371,8 +373,6 @@ async def process_chunk(
if original_value is None:
# If value not found, leave as is
original_value = match.group(0) # Keep the REDACTED marker
else:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oops sorry this is some leftover debugging by me

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I assumed so. No problem :)

@aponcedeleonch aponcedeleonch merged commit 09e94df into main Jan 14, 2025
2 checks passed
@aponcedeleonch aponcedeleonch deleted the dedup-secrets-explain branch January 14, 2025 13:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Secrets are double-counted via Copilot Explain function
2 participants