Temporarily disable AI stuff for ChiefDelphi Release

This commit is contained in:
Astatin3
2024-09-28 12:50:38 -06:00
parent 60d56473f5
commit d957a1db5e
4 changed files with 15 additions and 12 deletions
Binary file not shown.
Binary file not shown.
+2 -2
View File
@@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 3,
"versionName": "0.3",
"versionCode": 4,
"versionName": "0.4",
"outputFile": "app-release.apk"
}
],
@@ -37,21 +37,24 @@ public class ReportFragment extends Fragment {
binding.teamNumber.setText(String.valueOf(ourTeamNum));
binding.AyEyeBox.setVisibility(View.GONE);
binding.AyEyeBox.setVisibility(View.VISIBLE);
binding.AyEyeButton.setVisibility(View.GONE);
DataManager.reload_event();
DataManager.reload_pit_fields();
DataManager.reload_match_fields();
binding.AyEyeButton.setText("Create Prompt");
binding.AyEyeButton.setOnClickListener(a ->{
getPrompt();
binding.AyEyeButton.setText("Generate Overview");
binding.AyEyeButton.setOnClickListener(b ->{
AIDataOverview();
binding.AyEyeButton.setVisibility(View.GONE);
});
});
binding.AyEyeBox.setText("TBD!\n This is meant to be a tool that lets scouters more easily write reports to the drive team before matches. There are some plans for LLM integration into this menu ");
// binding.AyEyeButton.setText("Create Prompt");
// binding.AyEyeButton.setOnClickListener(a ->{
// getPrompt();
// binding.AyEyeButton.setText("Generate Overview");
// binding.AyEyeButton.setOnClickListener(b ->{
// AIDataOverview();
// binding.AyEyeButton.setVisibility(View.GONE);
// });
// });
return binding.getRoot();
}