mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
Add Redis provider to platform integrations
d Redis blocks for database operations
This commit is contained in:
1229
autogpt_platform/backend/backend/blocks/redis/redis.py
Normal file
1229
autogpt_platform/backend/backend/blocks/redis/redis.py
Normal file
File diff suppressed because it is too large
Load Diff
@@ -29,6 +29,7 @@ class ProviderName(str, Enum):
|
||||
OPEN_ROUTER = "open_router"
|
||||
PINECONE = "pinecone"
|
||||
REDDIT = "reddit"
|
||||
REDIS = "redis"
|
||||
REPLICATE = "replicate"
|
||||
REVID = "revid"
|
||||
SCREENSHOTONE = "screenshotone"
|
||||
|
||||
@@ -83,6 +83,7 @@ export const providerIcons: Record<
|
||||
reddit: fallbackIcon,
|
||||
fal: fallbackIcon,
|
||||
revid: fallbackIcon,
|
||||
redis: fallbackIcon,
|
||||
twitter: FaTwitter,
|
||||
unreal_speech: fallbackIcon,
|
||||
exa: fallbackIcon,
|
||||
|
||||
@@ -48,6 +48,7 @@ const providerDisplayNames: Record<CredentialsProviderName, string> = {
|
||||
reddit: "Reddit",
|
||||
replicate: "Replicate",
|
||||
revid: "Rev.ID",
|
||||
redis: "Redis",
|
||||
twitter: "Twitter",
|
||||
todoist: "Todoist",
|
||||
unreal_speech: "Unreal Speech",
|
||||
|
||||
@@ -156,6 +156,7 @@ export const PROVIDER_NAMES = {
|
||||
TWITTER: "twitter",
|
||||
REPLICATE: "replicate",
|
||||
REDDIT: "reddit",
|
||||
REDIS: "redis",
|
||||
REVID: "revid",
|
||||
UNREAL_SPEECH: "unreal_speech",
|
||||
TODOIST: "todoist",
|
||||
|
||||
Reference in New Issue
Block a user