Auto-GPT-Plugins
Auto-GPT-Plugins copied to clipboard
OnlyFans API Plugin
Duplicates
- [X] I have searched the existing issues
Summary 💡
Multiple API routes, such as being able to use #OnlyFans. [1% rev split #JK]
Examples 🌈
Motivation 🔦
I've not touched python in a very long time and so can only contribute through ideas.
I've found various case scenarios, where by having the available API in the .env, we can utilise the power of things such as discord.js (at present I'm writing the .env inside the project for the agents to develop from), this would mean we could use discord and the power of communities to further drive what we can produce. This would be the same with a lot of the api's available, especially around the content industry. It would also bring new developers in and gain even more traction on the overall project of AutoGPT.
I think we can using free api alternative huggingface and do not using paid openai version or convert long texts into smaller parts, and send 3 requests to api every 1 minute.
I think we can using free api alternative huggingface and do not using paid openai version or convert long texts into smaller parts, and send 3 requests to api every 1 minute.
This isn't about using already implemented routes, this is having new routes or a way to add those routes, as currently I have them stored in a .env file.
######################################################################
# CHANGE DEVELOPMENT ENVIRONMENT FILE TO PRODUCTION ENVIRONMENT FILE #
# BEFORE DEPLOYING TO PRODUCTION ENVIRONMENT OR CREATE A COPY AND #
# RENAME IT TO .env AND CHANGE THE ENVIRONMENT VARIABLES #
######################################################################
# -----| [ GENERAL ENVIRONMENT VARIABLES ]
APP_NAME=
APP_DESCRIPTION=
APP_VERSION=
APP_AUTHOR=
# -----| [ CORE ENVIRONMENT VARIABLES ]
NODE_ENV=
NODE_PORT=
SERVER_URL=
SERVER_VERSION=
SERVER_ENDPOINT=
NODE_FRONTEND_URL=
# -----| [ CUBE ENVIRONMENT VARIABLES ]
CUBE_HOST=
CUBE_PORT=
CUBE_ENDPOINT=
CUBE_VERSION=
CUBE_SCHEMA=
# -----| [ DATABASE ENVIRONMENT VARIABLES ]
DATABASE_HOST=
DATABASE_URL=
DATABASE_ADMIN=
DATABASE_PORT=
DATABASE_NAME=
DATABASE_USER=
DATABASE_PASSWORD=
DATABASE_SCHEMA=
# -----| [ JWT ENVIRONMENT VARIABLES ]
JWT_SECRET=
JWT_EXPIRATION_TIME=
JWT_REFRESH_TOKEN=
# -----| [ EMAIL ENVIRONMENT VARIABLES ]
MAIL_USERNAME=
MAIL_PASSWORD=
ACCESS_TOKEN_TTL=
REFRESH_TOKEN_TTL=
ACCESS_TOKEN_SECRET=
REFRESH_TOKEN_SECRET=
PASSWORD_TOKEN_SECRET=
AUTH_RESET_SECRET=
# -----| [ DISCORD ENVIRONMENT VARIABLES ]
DISCORD_CLIENT_ID=
DISCORD_PUBLIC_KEY=
DISCORD_CLIENT_SECRET=
DISCORD_REDIRECT_URI=
DISCORD_MAINTAINER_ID=
DISCORD_TOKEN=
DISCORD_PREFIX=
DISCORD_PORT=
DISCORD_GUILD_ID=
# -----| [ REDIS ENVIRONMENT VARIABLES ]
REDIS_HOST=
REDIS_PORT=
REDIS_PASSWORD=
REDIS_USERNAME=
WIPE_REDIS_ON_START=
# -----| [ GRPC ENVIRONMENT VARIABLES ]
GRPC_HOST=
GRPC_PORT=
GRPC_PACKAGE=
GRPC_PROTO_PATH=
# -----| [ MQTT ENVIRONMENT VARIABLES ]
MQTT_HOST=
# -----| [ KAFKA ENVIRONMENT VARIABLES ]
KAFKA_HOST=
KAFKA_PORT=
KAFKA_USERNAME=
KAFKA_PASSWORD=
KAFKA_CLIENT_ID=
# -----| [ RABITMQ ENVIRONMENT VARIABLES ]
RABBITMQ_HOST=
RABBITMQ_PORT=
RABBITMQ_USERNAME=
RABBITMQ_PASSWORD=
RABBITMQ_QUEUE=
# -----| [ LLM & FASTLLM ENVIRONMENT VARIABLES ]
OPENAI_API_KEY=
FAST_LLM_MODEL=
FAST_TOKEN_LIMIT=
SMART_TOKEN_LIMIT=
# -----| [ PINECONE ENVIRONMENT VARIABLES ]
PINECONE_API_KEY=
PINECONE_ENV=
# -----| [ GITHUB ENVIRONMENT VARIABLES ]
GITHUB_API_KEY=
GITHUB_USERNAME=
# -----| [ BROWSER ENVIRONMENT VARIABLES ]
HEADLESS_BROWSER=
USE_WEB_BROWSER=
BROWSE_CHUNK_MAX_LENGTH=
BROWSE_SPACY_LANGUAGE_MODEL=
# -----| [ GOOGLE ENVIRONMENT VARIABLES ]
GOOGLE_API_KEY=
CUSTOM_SEARCH_ENGINE_ID=
# -----| [ TWITTER ENVIRONMENT VARIABLES ]
TW_CONSUMER_KEY=
TW_CONSUMER_SECRET=
TW_ACCESS_TOKEN=
TW_ACCESS_TOKEN_SECRET=
# -----| [ ELEVENLABS ENVIRONMENT VARIABLES ]
ELEVENLABS_API_KEY=
ELEVENLABS_VOICE_1_ID=
ELEVENLABS_VOICE_2_ID=
Moving to plugins repo