Skip to content

Commit

Permalink
feat: news
Browse files Browse the repository at this point in the history
  • Loading branch information
db0 committed Aug 7, 2024
1 parent bc6f160 commit 35d0fa7
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 10 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

# 4.30.0
# 4.40.1

* Prevents mistral models from being considered suspiciously fast.

# 4.40.0

* Adds the `active_generations` privileged key on user info providing a list of all non-expired gens the user has active.

Expand Down
5 changes: 1 addition & 4 deletions horde/classes/kobold/processing_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,4 @@ def record(self, things_per_sec, kudos):
if "8x" in self.model:
unreasonable_speed = unreasonable_speed * 3
if things_per_sec > unreasonable_speed:
self.worker.report_suspicion(
reason=Suspicions.UNREASONABLY_FAST,
formats=[f"{things_per_sec} > {unreasonable_speed}"]
)
self.worker.report_suspicion(reason=Suspicions.UNREASONABLY_FAST, formats=[f"{things_per_sec} > {unreasonable_speed}"])
2 changes: 1 addition & 1 deletion horde/consts.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
HORDE_VERSION = "4.40.0"
HORDE_VERSION = "4.40.1"

WHITELISTED_SERVICE_IPS = {
"212.227.227.178", # Turing Bot
Expand Down
27 changes: 23 additions & 4 deletions horde/data/news.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,32 @@
[
{
"date_published": "2024-05-20",
"date_published": "2024-08-07",
"newspiece": "ArtBot is now an official component of Haidra! You can check the official version at [https://artbot.site](https://artbot.site which is running the latest version of it with a ton of improvements. All kudos to [Rockbandit](https://mastodon.world/@davely)",
"tags": [
"nlnet",
"rockbandit"
],
"importance": "Information",
"more_info_urls": [
"https://artbot.site",
"https://mastodon.world/@davely"
],
"title": "Official Artbot"
},
{
"date_published": "2024-07-15",
"newspiece": "You can now use the [SD Layer Diffuse tech](https://github.com/layerdiffusion/sd-forge-layerdiffuse) to generate transparent images directly with the AI horde (without the use of a post-processor). To use this functionality, simply pass `transparent: true` in your payloads params. This feature is not supported on Img2Img however.",
"tags": [
"db0",
"nlnet",
"text2img"
],
"importance": "Information",
"more_info_urls": [],
"title": "Generate QR Codes"
"more_info_urls": [
"https://dbzer0.com/blog/transparent-generations/",
"https://github.com/layerdiffusion/sd-forge-layerdiffuse"
],
"title": "Images with Transparency"
},
{
"date_published": "2024-05-20",
Expand All @@ -20,7 +37,9 @@
"text2img"
],
"importance": "Information",
"more_info_urls": [],
"more_info_urls": [
"https://dbzer0.com/blog/embedded-qr-codes-via-the-ai-horde/"
],
"title": "Generate QR Codes"
},
{
Expand Down

0 comments on commit 35d0fa7

Please sign in to comment.