Fix typo and remove unused code in gemini_tasks sample (#2300)

- Fix typo
- Remove unused code.

---------

Co-authored-by: Parker Lougheed <parlough@gmail.com>
pull/2302/head
Rody Davis 4 months ago committed by GitHub
parent 649e0e4db9
commit d5c2522a3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -123,11 +123,6 @@ class _ExampleState extends State<Example> {
model: 'gemini-pro', model: 'gemini-pro',
apiKey: widget.apiKey, apiKey: widget.apiKey,
requestOptions: const RequestOptions(apiVersion: 'v1beta'), requestOptions: const RequestOptions(apiVersion: 'v1beta'),
// systemInstruction: Content.text(
// 'You are a task bot that can complete, add, '
// 'and filter tasks for a todo style application.',
// ),
tools: [ tools: [
Tool( Tool(
functionDeclarations: <FunctionDeclaration>[ functionDeclarations: <FunctionDeclaration>[
@ -384,9 +379,10 @@ class _ExampleState extends State<Example> {
child: TextField( child: TextField(
controller: controller, controller: controller,
decoration: textFieldDecoration( decoration: textFieldDecoration(
context, context,
'Try "Add a task for..." or "What are my ucompleted ' 'Try "Add a task for..."'
'tasks?"'), 'or "What are my uncompleted tasks?"',
),
onEditingComplete: sendMessage, onEditingComplete: sendMessage,
onSubmitted: (value) => sendMessage(), onSubmitted: (value) => sendMessage(),
), ),

Loading…
Cancel
Save