
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Aimped is a unique library that provides classes and functions for only exclusively business-tailored AI-based NLP models.
Welcome to Aimped Inc.: an LLMs-in-the-loop AI Platform.
Aimped is a distinctive AI platform offering model inference and development, harnessing the power of LLMs. Our innovative approach ensures quick, cost-effective, and efficient model training and evaluation. Additionally, we provide user-friendly UI-based AI applications and LLM Agents, making advanced AI accessible and easy to use.
Moreover, we will soon allow model uploads and enable users to earn money. This will encourage the open-source community to share models, reducing redundant training and computing costs while fostering collaboration and innovation.
aimped
is a unique python library that provides classes and functions for only exclusively business-tailored AI-based models.
In this version, we provide the following features:
API service, Sound processing tools and functions, NLP tools and functions, and a pipeline class for NLP tasks.
pip install aimped
from aimped.services.api import AimpedAPI
# Create new instance Aimped
user_key = '' # user_key received from A3M.
user_secret = '' # user_secret received from A3M.
BASE_URL = 'https://aimped.ai' # Aimped domain url
api_service = AimpedAPI(user_key, user_secret, {
base_url: BASE_URL
})
model_id = "" # ID of the model run. The model ID is available on the model description page under API usage.
payload = {...} # Model input examples (payload) are available in the api usage tab on the Model description page.
result = api_service.run_mode(model_id, input_data)
# return callback function
def callback(event, message, time, data=None):
if event == 'start':
print(f'Start event at {time}: {message}')
elif event == 'proccess':
print(f'Progress event at {time}: {message}')
elif event == 'error':
print(f'Error event at {time}: {message}')
elif event == 'end':
print(f'End event at {time}: {message}. Data: {data}')
result = api_service.run_model_callback(model_id, payload, callback)
Some of the models supports file inputs. These inputs are accepted as URIs. Here is the usage of API for file uploads.
input = api_service.file_upload(
model_id,
'/Users/joe/Downloads/xyz.pdf' # sample file path to upload
)
Some of the models supports file outputs as result. These outputs are created as URIs. Here is the usage of API for file downloads.
output_file = api_service.file_download_and_save(
'input/application/model_{{modelId}}/user_{{userId}}/file_name', # URI of the model output file in the result
'/Users/joe/Downloads/123_file_name' # sample local file path to save
)
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
FAQs
Aimped is a unique library that provides classes and functions for only exclusively business-tailored AI-based NLP models.
We found that aimped demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.