mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00
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:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user