-
Notifications
You must be signed in to change notification settings - Fork 332
aaron/graphs2 #2710
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: canary
Are you sure you want to change the base?
aaron/graphs2 #2710
Conversation
|
🌿 Preview your docs: https://boundary-preview-a62aa369-e98a-422b-8bea-c92c0462e218.docs.buildwithfern.com |
| ) -> anyhow::Result<crate::control_flow::ControlFlowVisualization> { | ||
| let result = self.llm_runtime.function_graph_v2(function_name, ctx); | ||
| log::info!("function_graph_v2({function_name}, ctx) => {:#?}", result); | ||
| result |
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.
Bug: Excessive debug logging pollutes production logs.
A log::info! statement with debug formatting ({:#?}) is logging the entire result of function_graph_v2, which could produce excessive log output in production. This appears to be debugging code that should be removed or changed to a lower log level like debug!.
|
🌿 Preview your docs: https://boundary-preview-fa204e0d-afa3-4607-a264-e416fa6e01a7.docs.buildwithfern.com |
…nge event, and also fix bug where selected item hadnt loaded yet
|
🌿 Preview your docs: https://boundary-preview-28c6cfa2-4a82-49e2-ac12-fb8b1c10ed28.docs.buildwithfern.com |
|
🌿 Preview your docs: https://boundary-preview-896e97f3-66b0-4b9f-a32a-1d6922555685.docs.buildwithfern.com |
Note
Refactors the playground to a unified SDK-driven architecture: new runtime + selection state, React Flow/ELK graph, and migrated test runner/navigation with integrated prompt/cURL preview.
SDK & Architecture:
unifiedSelectionStateAtom; deprecates legacy atoms/hooks.Graph (React Flow + ELK):
Prompt & cURL Preview:
Tests & Execution:
Navigation & Sidebar:
Tooling & Styles:
Written by Cursor Bugbot for commit c48714e. This will update automatically on new commits. Configure here.