Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.

Releases: maximerenou/php-bing-ai

1.2

21 Aug 16:25

Choose a tag to compare

Added:

  • $prompt->withImage() method

1.1

03 May 21:58

Choose a tag to compare

1.1

Added:

  • GenerateQuery support
  • multimodal demo
  • kick support

1.0

02 May 12:01

Choose a tag to compare

1.0

Add tone support (Creative, Precise, Balanced)

0.9

28 Apr 12:33

Choose a tag to compare

0.9

Added checkCookie() to validate _U cookie.

0.8

25 Apr 12:42

Choose a tag to compare

0.8

Added PHP 7 support (>= 7.1)

0.7

24 Apr 15:49

Choose a tag to compare

0.7

Breaking change

Bing cookie is now managed by BingAI.php

Before:

$ai = new BingAI;
$conversation = $ai->createChatConversation($cookie);
$creator = $ai->createImages($cookie, $prompt);

After:

$ai = new BingAI($cookie);
$conversation = $ai->createChatConversation();
$creator = $ai->createImages($prompt);

Feature

ImageCreator.php now implements the getRemainingBoosts() method that extract your remaining credits from Bing Image Creator

0.6

14 Apr 09:11

Choose a tag to compare

0.6

feat: Image Creator

0.5

12 Apr 12:55

Choose a tag to compare

0.5

Add throttling support.

0.4

20 Feb 12:10

Choose a tag to compare

0.4
  • Fix and improve example script
  • Remove default location
  • Add a warning about current limits

0.3

15 Feb 20:41

Choose a tag to compare

0.3

Feature : disable cache for text generation.