This repository was archived by the owner on Mar 21, 2024. It is now read-only.
Releases: maximerenou/php-bing-ai
Releases · maximerenou/php-bing-ai
1.2
1.1
Added:
- GenerateQuery support
- multimodal demo
- kick support
1.0
Add tone support (Creative, Precise, Balanced)
0.9
Added checkCookie() to validate _U cookie.
0.8
Added PHP 7 support (>= 7.1)
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
feat: Image Creator
0.5
Add throttling support.
0.4
- Fix and improve example script
- Remove default location
- Add a warning about current limits
0.3
Feature : disable cache for text generation.