-
Notifications
You must be signed in to change notification settings - Fork 16
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
feat: implement server with background jobs and resume when all answers are provided #49
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…-framework into feat_server_example
…-framework into feat_server_example
API Interaction LogInitial Visit CreationRequest: curl -X POST http://localhost:3000/visits Response: {
"id": "303c8292-3f74-47b8-ae4f-4fd7b3c9381a",
"status": "idle"
} Fetch Visit Details (1st Call)Request: curl -X GET http://localhost:3000/visits/303c8292-3f74-47b8-ae4f-4fd7b3c9381a Response: [
{
"id": "call_g1unTqAlrGHTJTv2lLnoBpc5",
"type": "function",
"function": {
"name": "askPatient",
"arguments": "{\"query\":\"Could you describe the specific symptoms the patient is currently experiencing?\"}",
"parsed_arguments": {
"query": "Could you describe the specific symptoms the patient is currently experiencing?"
}
}
}
] Tool Call Response SubmissionRequest: curl -X POST http://localhost:3000/visits/303c8292-3f74-47b8-ae4f-4fd7b3c9381a/messages \
-H "Content-Type: application/json" \
-d '{"tool_call_id":"call_g1unTqAlrGHTJTv2lLnoBpc5","content":"I am good"}' Response: {
"hasAllToolCalls": true
} Fetch Visit Details (2nd Call)Request: curl -X GET http://localhost:3000/visits/303c8292-3f74-47b8-ae4f-4fd7b3c9381a Response: [
{
"id": "call_IyAYIOUTPaRkoWeNLQm8Jdig",
"type": "function",
"function": {
"name": "askPatient",
"arguments": "{\"query\":\"Is the patient experiencing any pain or discomfort in any part of their body?\"}",
"parsed_arguments": {
"query": "Is the patient experiencing any pain or discomfort in any part of their body?"
}
}
}
] |
pkarw
approved these changes
Dec 9, 2024
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.
Cool, approved.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This implements #2 and #9 (please confirm)
Updated server to use latest API
Workflow now runs on the server in the background until it requests a tool or finishes
Removed saving/loading from file as we want to keep state in memory and run its updates in background. Previous example required calling "iterate" endpoint each time to advance it. We can always add it back, but I think this one is much better
Will automatically resume when all answers are provided
Logger UI
Once this gets accepted, I will go ahead and create reusable functions to reduce this boilerplate and hide abstraction.