2023/8/11/gai/Flutter/bing chatの画像アップロード機能を使ってみる

 

最近なのかよくわかりませんがbing chatに画像をアップロードして会話に使うことができるようになったようなので、Flutterについてどれくらいできるのか色々試してみます。

I’m not sure if it’s recently, but it seems that we can upload images to bing chat and use them in conversations, so I’ll try various things to see how much I can do with Flutter.

 

その前にまず画像アップロード機能がいつ導入されたのか質問してみます。

Before that, I would like to ask when the image upload function was introduced.

 

質問の内容 :

Questions asked:

 

bing chatに画像アップロード機能が追加されたのはいつですか?
When did bing chat introduce the image upload feature?

 

bing chatの回答 : Bing Chatに画像アップロード機能が追加されたのは、2023年5月12日に発表されたBing Preview Release Notesによると、同年5月4日に発表された新機能の一つとして追加されました1。この機能は、Bingチャットの回答に画像を含めることができます。例えば、フラミンゴやカピバラに関する質問をすると、これらの動物の画像が回答と一緒に表示されます。画像をクリックすると、生息地、食事、ライフサイクルなどの情報を探索できるナレッジカードが表示されます1

とのことです。

このページ全体について言えることですが、生成AIの回答ですので正確かどうかはわかりません。あらかじめご了承くださいませ。

This is true for the entire page, but I’m not sure if it’s accurate because it’s a generated AI answer. Thank you for your understanding.


Contents

テスト1 :

工事中🏗️

 




テスト2 : Stackで図形や文字を配置

Test 2 : Arrange shapes and texts with Stack

オリジナルのコード

original code

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: Text('Flutter Demo Home Page'),
        ),
        body: Center(
          child: Stack(
            children: [
              Center(
                child: Text(
                  'abcde',
                  style: TextStyle(
                    fontSize: 40.0,
                    fontWeight: FontWeight.bold,
                    color: Colors.indigo,
                    letterSpacing: 10.0,
                  ),
                ),

              ),
              Align(
                alignment: Alignment(
                  -0.8,
                  -0.6,
                ),
                // alignment: Alignment.center,
                child: Container(
                  width: 100.0,
                  height: 100.0,
                  color: Colors.red,
                ),
              ),
              Align(
                alignment: Alignment(
                  0.3,
                  0.9,
                ),
                // alignment: Alignment.center,
                child: Container(
                  width: 200.0,
                  height: 200.0,
                  decoration: BoxDecoration(
                    color: Colors.green,
                    borderRadius: BorderRadius.circular(100.0),
                    border: Border.all(
                      color: Colors.black,
                      width: 5.0,
                    ),
                  ),
                ),
              ),
            ],
          ),
        ),
      ),
    );
  }
}

 

オリジナルのコードの実行結果

Result of running the original code

注文の内容 : 

My order includes:

下記の画面(オリジナルのコードの実行結果)を表示するFlutterアプリのコードを提示してください。

Generate the Flutter app code that displays the screen below (execution result of the original code).

 

bing chatの回答 (1回目): 以下のコードをお試しください。

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: true,
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: Text('Flutter Demo Home Page'),
          backgroundColor: Colors.blue,
        ),
        body: Container(
          color: Colors.white,
          child: Stack(
            children: <Widget>[
              Positioned(
                top: 0,
                left: 0,
                child: Container(
                  width: 50,
                  height: 50,
                  color: Colors.red,
                ),
              ),
              Positioned(
                top: 60,
                left: 0,
                child: Text('abcde'),
              ),
              Positioned(
                bottom: 0,
                right: 0,
                child: Container(
                  width: 50,
                  height: 50,
                  decoration:
                  BoxDecoration(shape: BoxShape.circle, color: Colors.green),
                ),
              ),
            ],
          ),
        ),
        // debugShowCheckedModeBanner: true,
      ),
    );
  }
}

 

bing chatの回答 (1回目)の実行結果

Execution result of bing chat answer (1st time)

はい。赤とか緑になっているので、色とかは認識しているぽいですね。

Yes. Since red and green are used, it seems that it recognizes colors.

 

素晴らしいですね✨

It’s wonderful✨

 

あと指示無しでもStackを使いましたね👍

Also, it used Stack without any instructions👍

 

ただもう少しレイアウト・サイズなど忠実に再現して欲しいところですよね。

ということで追加の注文をしてみました。

However, I would like bing chat to reproduce the layout and size a little more faithfully.

So I made an additional order.

 

追加の注文の内容 : ちょっと位置関係やサイズが違いますよね? もう少し忠実に再現できますか?

Additional order details : The positioning and size are a bit different, aren’t they? Can you reproduce it more faithfully?

 

bing chatの回答 (2回目): おっしゃる通りですね。失礼しました。 以下のコードをお試しください。

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: Text('Flutter Demo Home Page'),
          backgroundColor: Colors.blue,
        ),
        body: Container(
          color: Colors.white,
          child: Stack(
            children: <Widget>[
              Positioned(
                top: 20,
                left: 20,
                child: Container(
                  width: 50,
                  height: 50,
                  color: Colors.red,
                ),
              ),
              Positioned(
                top: 30,
                left: 90,
                child: Text('abcde'),
              ),
              Positioned(
                bottom: 20,
                right: 20,
                child: Container(
                  width: 50,
                  height: 50,
                  decoration:
                  BoxDecoration(shape: BoxShape.circle, color: Colors.green),
                ),
              ),
            ],
          ),
        ),
        // debugShowCheckedModeBanner: true,
      ),
    );
  }
}

 

bing chatの回答 (2回目)の実行結果

Execution result of bing chat answer (2nd time)

位置が少し変わりましたか。うーん、という感じですね、はい。

Has the position changed a little? It is a bit like “hmmm,” yes.

 

もう一度追加の注文をしてみました。

I tried adding instructions again.

 

追加の注文の内容 : 各図形のwidth/heightが画面全体のwidth/heightに対してどれくらいか、までは把握できないですか? そこまで忠実に再現することはできませんか? あと文字色はindigoなのでindigoにしてください。

Additional order details: Can’t you figure out how much the width/height of each shape is relative to the width/height of the entire screen?
Is it possible to reproduce it so faithfully?

Also, the text color is indigo, so please use indigo.

 

bing chatの回答 (3回目): おっしゃる通りですね。失礼しました。 以下のコードをお試しください。

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: Text('Flutter Demo Home Page'),
          backgroundColor: Colors.blue,
        ),
        body: Container(
          color: Colors.white,
          child: Stack(
            children: <Widget>[
              Positioned(
                top: MediaQuery.of(context).size.height * 0.02,
                left: MediaQuery.of(context).size.width * 0.02,
                child: Container(
                  width: MediaQuery.of(context).size.width * 0.1,
                  height: MediaQuery.of(context).size.height * 0.05,
                  color: Colors.red,
                ),
              ),
              Positioned(
                top: MediaQuery.of(context).size.height * 0.03,
                left: MediaQuery.of(context).size.width * 0.25,
                child: Text('abcde', style: TextStyle(color: Colors.indigo)),
              ),
              Positioned(
                bottom: MediaQuery.of(context).size.height * 0.02,
                right: MediaQuery.of(context).size.width * 0.02,
                child: Container(
                  width: MediaQuery.of(context).size.width * 0.1,
                  height: MediaQuery.of(context).size.height * 0.05,
                  decoration:
                  BoxDecoration(shape: BoxShape.circle, color: Colors.green),
                ),
              ),
            ],
          ),
        ),
        // debugShowCheckedModeBanner: true,
      ),
    );
  }
}

 

bing chatの回答 (3回目)の実行結果

Execution result of bing chat answer (3rd time)

文字の色は変えてくれました。その他は、もうこれくらいにしておきます。

It changed the color of the texts. Other than that, I’ll leave it at that.




テスト3 : 典型的なListView

A typical ListView

オリジナルのコード

Original code

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: Text('Flutter Demo Home Page'),
          backgroundColor: Colors.red,
        ),
        body: Container(
          color: Colors.white,
          child: Center(
            child: ListView.builder(
              itemCount: 20,
              itemBuilder: (context, index) {
                return ListTile(
                  leading: CircleAvatar(
                    child:Text('${index}'),
                  ),
                  title: Text('Android'),
                  subtitle: Text('Google'),
                  trailing: Icon(Icons.arrow_forward_ios),
                  onTap: () {
                    print('タップされました');
                  },
                  onLongPress: () {
                    print('長押しされました');
                  },
                );
              },
            ),
          ),
        ),
        // debugShowCheckedModeBanner: true,
      ),
    );
  }
}

 

オリジナルのコードの実行結果

Result of original code execution

 

注文の内容 : 下記の画面を表示するFlutterアプリのコードを提示してください。 ListViewのアイテム数は20個です。

Instructions : Please provide the code for a Flutter application that displays the following screen. The number of items in the ListView is 20.

 

bing chatの回答(1回目) : 以下のコードをお試しください。

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: Text('Flutter Demo Home Page'),
          backgroundColor: Colors.blue,
        ),
        body: ListView.builder(
          itemCount: 20,
          itemBuilder: (BuildContext context, int index) {
            return ListTile(
              leading: CircleAvatar(
                backgroundColor: Colors.red,
                child: Text('$index'),
              ),
              title: Text('Android'),
              subtitle: Text('Google'),
              trailing: Icon(Icons.keyboard_arrow_right),
            );
          },
        ),
        // debugShowCheckedModeBanner: true,
      ),
    );
  }
}

 

bing chatの回答(1回目)の実行結果

Results of running bing chat answers (1st time)

 

ListView.builderを使っていますね。レイアウトは良いですね👍

I see it is using ListView.builder.  And the layout is good👍

 

ただ、今度は色が違いますね。追加の注文をしてみます。

However, this time the color is different. I will order more.

 

追加の注文の内容 : AppBarの色とCircleAvatarの色が私が示した画像と違いますよね? 修正してください。

Additional order details : The color of the AppBar and the CircleAvatar are different from the image I showed you?
Please correct it.

 

bing chatの回答(2回目) : おっしゃる通りですね。失礼しました。 以下のコードをお試しください。

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: Text('Flutter Demo Home Page'),
          backgroundColor: Colors.blue,
        ),
        body: ListView.builder(
          itemCount: 20,
          itemBuilder: (BuildContext context, int index) {
            return ListTile(
              leading: CircleAvatar(
                backgroundColor: Colors.red,
                child: Text('$index', style: TextStyle(color: Colors.white)),
              ),
              title: Text('Android'),
              subtitle: Text('Google'),
              trailing: Icon(Icons.keyboard_arrow_right),
            );
          },
        ),
        // debugShowCheckedModeBanner: true,
      ),
    );
  }
}

ほとんど変わらないですね。一応CircleAvatar内の文字の色は変わったようですが。もう一度追加の注文をしてみます。

It’s almost the same as last time.
In the meantime, the color of the text in the CircleAvatar seems to have changed. I will try again to order more.

 

追加の注文の内容 : 私が提示した画像では「AppBarは赤、CircleAvatarはindigo」なので、その通りに再現してください。

Additional order details : In the image I presented, “AppBar is red, CircleAvatar is indigo”, so please reproduce it as it is.

 

bing chatの回答(3回目) : おっしゃる通りですね。失礼しました。 以下のコードをお試しください。

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: Text('Flutter Demo Home Page'),
          backgroundColor: Colors.red,
        ),
        body: ListView.builder(
          itemCount: 20,
          itemBuilder: (BuildContext context, int index) {
            return ListTile(
              leading: CircleAvatar(
                backgroundColor: Colors.indigo,
                child: Text('$index', style: TextStyle(color: Colors.white)),
              ),
              title: Text('Android'),
              subtitle: Text('Google'),
              trailing: Icon(Icons.keyboard_arrow_right),
            );
          },
        ),
        // debugShowCheckedModeBanner: true,
      ),
    );
  }
}

 

bing chatの回答(3回目)の実行結果

Execution result of bing chat answer (3rd time)

流石に今度は指示した通りのものを出してくれました。

As expected, this time it produced the code as instructed.

 

ただ、画像を提供しているわけなので、言葉での指示がなくても画像を読み取って再現してくれると素晴らしいですよね。

However, since I was providing the image, it would be wonderful if it could read and reproduce the images without verbal instructions.

 

今後に期待ですね🙃

I hope to see more in the future 🙃.

 

まあ使い方によっては学習などには使えるような気がします。

特に学習し始めたばかりの言語やフレームワークなどで学習の助けになりそうですね。

Well, depending on how we use it, I think it could be useful for learning, etc.

I think it could be a learning aid, especially for languages and frameworks that we are just starting to learn.

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です