-
Notifications
You must be signed in to change notification settings - Fork 350
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
Add RFP Response generation workflow #438
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
@@ -0,0 +1,1096 @@ | |||
{ |
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.
Line #155. docs = [Document.parse_obj(json.loads(line)) for line in f]
Not: parse_obj
is deprecated in pydantic, should be docs = [Document.model_validate_json(line) for line in f]
I think
Reply via ReviewNB
@@ -0,0 +1,1096 @@ | |||
{ |
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.
Line #9. timeout=1800, # set a high timeout to make sure it completes
Could also set timeout=None if you don't need a timeout, but up to you
Reply via ReviewNB
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.
Looks great!
add a full notebook to generate a response given an RFP