AI Configuration Widgets simplified & separated

This commit is contained in:
Manas Hejmadi
2025-06-08 21:09:47 +05:30
parent 8a12ca7c5a
commit b890769854
5 changed files with 128 additions and 86 deletions

View File

@@ -4,6 +4,7 @@ import 'package:apidash_design_system/widgets/textfield_outlined.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:genai/genai.dart';
import 'package:genai/widgets/ai_config_widgets.dart';
class AIRequestConfigSection extends ConsumerStatefulWidget {
const AIRequestConfigSection({super.key});
@@ -45,85 +46,46 @@ class _AIRequestConfigSectionState
children: [
Text(
el.configDescription,
style: TextStyle(color: Colors.white30),
),
SizedBox(height: 5),
if (el.configType == LLMModelConfigurationType.boolean) ...[
Switch(
value: el.configValue.value as bool,
onChanged: (x) {
el.configValue.value = x;
BooleanAIConfig(
configuration: el,
onConfigUpdated: (x) {
updateRequestModel(el);
setState(() {});
},
)
),
] else if (el.configType ==
LLMModelConfigurationType.numeric) ...[
ADOutlinedTextField(
initialValue: el.configValue.value.toString(),
onChanged: (x) {
if (x.isEmpty) x = '0';
if (num.tryParse(x) == null) return;
el.configValue.value = num.parse(x);
WritableAIConfig(
configuration: el,
onConfigUpdated: (x) {
updateRequestModel(el);
setState(() {});
},
)
numeric: true,
),
] else if (el.configType ==
LLMModelConfigurationType.text) ...[
ADOutlinedTextField(
initialValue: el.configValue.value.toString(),
onChanged: (x) {
el.configValue.value = x;
WritableAIConfig(
configuration: el,
onConfigUpdated: (x) {
updateRequestModel(el);
setState(() {});
},
)
),
] else if (el.configType ==
LLMModelConfigurationType.slider) ...[
Row(
children: [
Expanded(
child: Slider(
min: (el.configValue.value as (
double,
double,
double
))
.$1,
value: (el.configValue.value as (
double,
double,
double
))
.$2,
max: (el.configValue.value as (
double,
double,
double
))
.$3,
onChanged: (x) {
final z = el.configValue.value as (
double,
double,
double
);
el.configValue.value = (z.$1, x, z.$3);
updateRequestModel(el);
setState(() {});
},
),
),
Text((el.configValue.value as (double, double, double))
.$2
.toStringAsFixed(2)),
],
)
SliderAIConfig(
configuration: el,
onSliderUpdated: (x) {
updateRequestModel(x);
setState(() {});
},
),
],
SizedBox(height: 10),
// Divider(color: Colors.white10),
// SizedBox(height: 10),
],
),
),

View File

@@ -26,7 +26,6 @@ class AIRequestPromptSection extends ConsumerWidget {
padding: const EdgeInsets.only(left: 25.0),
child: Text(
'System Prompt',
style: TextStyle(color: Colors.white54),
),
),
kVSpacer10,
@@ -55,7 +54,6 @@ class AIRequestPromptSection extends ConsumerWidget {
padding: const EdgeInsets.only(left: 25.0),
child: Text(
'User Prompt / Input',
style: TextStyle(color: Colors.white54),
),
),
kVSpacer10,