-
Notifications
You must be signed in to change notification settings - Fork 43
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
Prospector option to select between form fill and doc creation #244
Conversation
momuno
commented
Nov 14, 2024
- document agent - to account for message type of None for welcome message scenario (and future others?)
- prospector chat - removing command, adding workflow branching, support welcome message scenario for doc agent.
- prospector config - add workflow option for form fill or doc creation.
…s and for not providing outline itself. Update logic in doc agent to track turns of step and pass info to gc artifact
… (decoupling to occur later). Address final fixes.
…de upon new conversation or message
|
||
doc_agent = DocumentAgent(attachments_extension) | ||
await doc_agent.receive_command(config, context, message, metadata) | ||
pass |
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.
If we're just going to pass here, consider just deleting this handler until if/when we want it.
|
||
# # Prospector assistant response | ||
# await respond_to_conversation(context, config, message, metadata) | ||
if config.guided_workflow == "Form Completion": |
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.
I'd invert this since form completion is our desired default. Maybe consider using a match w/ the form completion as the default.
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.
ohh i like the match idea
to finish testing tomorrow. so far looking good (with an added fix) |