-
Notifications
You must be signed in to change notification settings - Fork 61
AI update based on proto changes #953
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
base: main
Are you sure you want to change the base?
Conversation
@@ -455,7 +455,7 @@ async def tabular_data_by_filter( | |||
if dest: | |||
try: | |||
file = open(dest, "w") | |||
file.write(f"{[str(d) for d in data]}") | |||
file.write(f"{[[str(d) for d in data]}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AI hallucination
@@ -760,7 +760,7 @@ async def binary_data_by_filter( | |||
if dest: | |||
try: | |||
file = open(dest, "w") | |||
file.write(f"{[str(d) for d in data]}") | |||
file.write(f"{response.data}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AI hallucination
'readings': { | ||
'linear_velocity': {'x': 0.5, 'y': 0.0, 'z': 0.0}, | ||
'angular_velocity': {'x': 0.0, 'y': 0.0, 'z': 0.1} | ||
tabular_data=[ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AI hallucinated and edited this comment for some reason
side note: we should ultimately change the token used for running this AI update job so that viambot runs it rather than github-actions. This will allow for tests to run automatically on a new PR so we can more reliably catch AI hallucination. |
@stuqdog will do. Also i am working on a workaround to get rid of the random hallucinations that happens when the AI generates the new files. |
This is an AI-generated PR to update the SDK based on proto changes. The AI may make mistakes so review carefully.