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: status message #3

Merged
merged 2 commits into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
This changelog summarizes all changes of the RAG Web Browser

### 0.0.8 (2025-02-12)
### 0.1.0 (2025-02-17)

🚀 Features
- Dataset query engine implementation
4 changes: 1 addition & 3 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,7 @@ async def main() -> None:
actor_input = await check_inputs(actor_input, payload)
await process_query(actor_input)
except Exception as e:
msg = f'Failed to process query, error {e}'
logger.exception(msg)
await Actor.fail(status_message=msg)
await Actor.fail(status_message='Failed to process query', exception=e)


if __name__ == '__main__':
Expand Down
Loading