-
Notifications
You must be signed in to change notification settings - Fork 2k
Next camp refactor live #5706
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: main
Are you sure you want to change the base?
Next camp refactor live #5706
Conversation
* 'main' of github.com:block/goose: Fix: Always show autocompact threshold ui (#5701) chore: Update governance to include Discord (#5690) Ollama improvements (#5609) feat: add Supabase MCP server to registry (#5629) Unlist VS Code extension tutorials from MCP and experimental sections (#5677) fix: make image processing work in github copilot provider (#5687) fix: do not take into account gitignore in developer mcp (#5688) docs: session storage migration (#5682) New maintainers (#5685) chore: Update governance (#5660) chore(release): release version 1.14.0 (minor) (#5676)
| sessionId: string; | ||
| onStreamFinish: () => void; | ||
| initialMessage?: string; | ||
| onSessionLoaded?: () => void; |
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.
Moved initialMessage to BaseChat for better separation of concerns and better control of over when submission happens at the component level. Added onSessionLoaded callback to avoid race conditions by detecting when the session is actually done loading.
| recipeAccepted, | ||
| initialPrompt, | ||
| toolCount, | ||
| autoSubmit = false, |
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.
no more autoSubmit in this component, its now handled by BaseChats useEffect now
* 'main' of github.com:block/goose: docs: removing double announcements (#5714) docs: mcp sampling support (#5708) hackathon banner (#5710) Fix documentation-only change detection for push events (#5712) Added transaction commits to multi sql functions in session_manager (#5693) fix: improve and simplify tool call chain rendering (#5704)
Summary
Follow up to release next camp refactoring efforts removing ALPHA flag condition and related cleanup.
This enables launching sessions and recipes in the same window along with various refactors to improve how we load chats on the front end.
closes #4980