Refine tool call execution logic in chat-stream-provider to prevent duplicates, enhance retries for agentic-rag, and improve incremental processing, including test updates.

This commit is contained in:
geoffsee
2025-07-31 18:26:42 -04:00
parent 6c433581d3
commit 9810f67af0
6 changed files with 906 additions and 90 deletions

View File

@@ -39,19 +39,19 @@ export const LandingComponent: React.FC = () => {
},
}}
switches={{
GpsMap: {
value: mapActive,
onChange(enabled) {
if (enabled) {
setEnabledComponent('gpsmap');
setAiActive(false);
} else {
setEnabledComponent('');
}
setMapActive(enabled);
},
label: 'GPS',
},
// GpsMap: {
// value: mapActive,
// onChange(enabled) {
// if (enabled) {
// setEnabledComponent('gpsmap');
// setAiActive(false);
// } else {
// setEnabledComponent('');
// }
// setMapActive(enabled);
// },
// label: 'GPS',
// },
AI: {
value: aiActive,
onChange(enabled) {