Bookmarks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
19 results tagged agents  ✕   ✕
fr0gger/Awesome-GPT-Agents https://github.com/fr0gger/Awesome-GPT-Agents
Thu 16 Nov 2023 03:13:08 PM PST archive.org

The "Awesome GPTs (Agents) Repo" represents an initial effort to compile a comprehensive list of GPT agents focused on cybersecurity (offensive and defensive), created by the community. Please note, this repository is a community-driven project and may not list all existing GPT agents in cybersecurity. Contributions are welcome – feel free to add your own creations!

Disclaimer: Users should exercise caution and evaluate the agents before use. Additionally, please note that some of these GPTs are still in experimental test phase.

infosec hacking offense defense gpt ai ml llm agents
e2b-dev/awesome-ai-agents https://github.com/e2b-dev/awesome-ai-agents
Mon 21 Aug 2023 12:52:19 PM PDT archive.org

Welcome to our list of AI agents. We structured the list into two parts: Open source projects and closed-source projects and companies. The list is done according to our best knowledge, although definitely not comprehensive.

awesome directory ai ml agents opensource closedsource exocortex gpt
toverainc/willow https://github.com/toverainc/willow
Thu 18 May 2023 10:28:44 AM PDT archive.org

Willow is an ESP IDF based project primarily targetting the ESP BOX hardware from Espressif. Our goal is to provide Amazon Echo/Google Home competitive performance, accuracy, cost, and functionality with Home Assistant and other platforms - 100% open source and completely self-hosted by the user with "ready for the kitchen counter" low cost commercially available hardware.

Use Willow Inference Server anywhere or don't use it at all with command recognition on the device. Have the results go anywhere you want. Integrate with whatever you want. Completely open source so it does what you want, only what you want, and only how you want it. No more annoying extra prompts or sales pitches to upsell you. Supports multiple wake words with more coming soon.

Approximately $50 hardware cost (plus USB-C power supply). Fully assembled. Done.

c ai ml speechrecognition exocortex agents firmware
OpenEDR - Open Source Endpoint Detection and Response https://www.openedr.com/
Fri 27 Jan 2023 09:35:41 PM PST archive.org

OpenEDR is a sophisticated, free, open source endpoint detection and response solution. It provides analytic detection with Mitre ATT&CK visibility for event correlation and root cause analysis of adversarial threat activity and behaviors in real time. This world-class endpoint telemetry platform is available to all cyber-security professionals, and every sized organization, to defend against threat actors and cyber criminals.

Github: https://github.com/ComodoSecurity/openedr

software opensource detection response cpp agents alerts sysadmin infosec
Viperinius/huginn_owm_onecall_agent https://github.com/Viperinius/huginn_owm_onecall_agent
Wed 18 Jan 2023 05:21:26 PM PST archive.org

Queries the OneCall API of OpenWeatherMap for a given location by latitude and longitude. This API returns information about the current weather, forecasts by minute, hour, and day, and national weather alerts.

ruby huginn agents weather
Viperinius/huginn_write_influxdb_agent https://github.com/Viperinius/huginn_write_influxdb_agent
Wed 18 Jan 2023 05:17:47 PM PST archive.org

A Huginn agent that writes events into InfluxDB in line protocol format (primarily). No docs right now but there are only two files and the Huginn on-line docs therein seem helpful.

ruby huginn agents influxdb databases
Activeworkflow: Remote Agent Ruby https://docs.activeworkflow.org/activeworkflow-agent-ruby/
Wed 16 Nov 2022 01:17:30 PM PST archive.org

The active_workflow_agent library helps you to write your own ActiveWorkflow agents in Ruby using ActiveWorkflow's remote agent API. “Remote” in this context means that agents run in separate processes from ActiveWorkflow itself. Communication between agents and ActiveWorkflow takes place via HTTP. Each agent is effectively an HTTP server which ActiveWorkflow connects to and interacts with via the remote agent API protocol.

Github: https://github.com/automaticmode/active_workflow_agent

Rubygems: https://rubygems.org/gems/active_workflow_agent

gem ruby huginn agents exocortex http json
Activeworkflow: Remote Agent Python https://docs.activeworkflow.org/activeworkflow-agent-python/
Wed 16 Nov 2022 01:15:56 PM PST archive.org

The activeworkflow_agent library helps you to write your own ActiveWorkflow agents in Python using ActiveWorkflow's remote agent API. “Remote” in this context means that agents run in separate processes from ActiveWorkflow itself. Communication between agents and ActiveWorkflow takes place via HTTP. Each agent is effectively an HTTP service or microservice which ActiveWorkflow connects to and interacts with as long as it supports the remote agent API protocol.

Github: https://github.com/automaticmode/activeworkflow-agent-python

huginn agents python modules http exocortex json
Activeworkflow: Remote Agent API https://docs.activeworkflow.org/remote-agent-api/
Wed 16 Nov 2022 01:08:47 PM PST archive.org

You can create your own agents by developing simple services that implement ActiveWorkflow's Remote Agent API. “Remote” in this context means that agents run in separate processes from ActiveWorkflow itself. Communication between agents and ActiveWorkflow takes place via HTTP. Each agent is effectively an HTTP service or microservice which ActiveWorkflow interacts with via an RPC protocol.

https://github.com/automaticmode/active_workflow/blob/master/lib/remote_agents.rb

https://github.com/automaticmode/active_workflow/blob/master/spec/features/use_remote_agent.rb

https://github.com/automaticmode/active_workflow/blob/master/spec/lib/remote_agents_spec.rb

huginn agents functions ruby extensions http exocortex json
gardner/huginn_anomaly_agent https://github.com/gardner/huginn_anomaly_agent
Thu 11 Aug 2022 11:11:44 AM PDT archive.org

Agent that monitors a flow of data and uses Isolation Forest techniques to identify statistical outliers and anomalies.

agents ruby huginn statistics anomalies analytics
bryandeagle/agents https://github.com/bryandeagle/agents
Thu 25 Nov 2021 02:27:03 PM PST archive.org

I'm using Flask to host some simple REST APIs for custom Huginn agents.

  • expenses.py - Uses the Plaid API to get transactions and expenses filed.
  • logger.py - The agents's logging service.
exocortex python huginn agents rest api
celery/celery https://github.com/celery/celery
Wed 09 Jun 2021 03:34:04 PM PDT archive.org

A distributed task queue written in Python that implements multiple message brokers and workers. Used to distribute tasks (discrete units of work or messages) to worker processes elsewhere on the host or the network. Generic communication protocol - there are protocol adapters for multiple other programming languages. Also implements webhooks.

Aims to be easy to use, with no required configuration files. This might be a case of "write your own simple daemon." Requires RabbitMQ or Redis as its message brokers.

https://docs.celeryproject.org/en/stable/

https://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html

https://medium.com/swlh/python-developers-celery-is-a-must-learn-technology-heres-how-to-get-started-578f5d63fab3

python exocortex queue tasks workers agents messages webhooks
automaticmode/active_workflow: An intelligent process and workflow automation platform based on software agents. https://github.com/automaticmode/active_workflow
Fri 23 Aug 2019 01:16:18 PM PDT archive.org

ActiveWorkflow is an intelligent process automation platform that uses software agents; autonomous entities that act on schedule or react to external triggers. These unsupervised agents connect to APIs, process information, perform routine tasks, and enable you to automate internal or external workflows.

A fork of Huginn optimized for business use. Incompatible with Huginn mainline.

Remote agent API: https://docs.activeworkflow.org/remote-agent-api/

Python module for building custom agents: https://docs.activeworkflow.org/activeworkflow-agent-python/

exocortex automation ruby workflows agents processes rest api
muesli/beehive: A flexible event/agent & automation system with lots of bees 🐝 https://github.com/muesli/beehive
Fri 26 Apr 2019 03:48:50 PM PDT archive.org

Beehive is an event and agent system, which allows you to create your own agents that perform automated tasks triggered by events and filters. It is modular, flexible and really easy to extend for anyone. It has modules (we call them Hives), so it can interface with, talk to, or retrieve information from Twitter, Tumblr, Email, IRC, Jabber, RSS, Jenkins, Hue - to name just a few. Check out the full list of available Hives in our Wiki.

exocortex golang agents modular services automation
javipalanca/spade: Smart Python Agent Development Environment https://github.com/javipalanca/spade
Fri 08 Feb 2019 04:05:40 PM PST archive.org

A multi-agent systems platform written in Python and based on instant messaging (XMPP). Develop agents that can chat both with other agents and humans. Requires Python v3.6.x or later. Behavior based model. Asynchronous. Web interface. Uses the presence notification XEP.

Documentation: https://spade-mas.readthedocs.io/en/latest/

There is even web based control panel: https://spade-mas.readthedocs.io/en/latest/web.html

python modules frameworks xmpp agents chat bots exocortex
Subsystem Alignment - LessWrong 2 viewer https://www.greaterwrong.com/posts/ChierESmenTtCQqZy/subsystem-alignment
Tue 06 Nov 2018 12:51:53 PM PST archive.org

An article that talks about systems of agents and some things that need to be considered about them.

exocortex agents article
Make A Natural Language Phone Bot Like Google’s Duplex AI | Hackaday https://hackaday.com/2018/06/21/make-a-natural-language-phone-bot-like-googles-duplex-ai/
Sat 23 Jun 2018 08:10:03 PM PDT archive.org
howto nlp ai ml bot voice agents
DIY Echo Home Speaker https://www.kidscodecs.com/diy-digital-assistant/
Thu 12 Apr 2018 01:27:05 PM PDT archive.org

A step by step process for setting up and using Mycroft for everyday tasks.

exocortex mycroft speechrecognition agents ai ml howto raspi
Huginn.io http://huginnio.herokuapp.com/
Mon 19 Mar 2018 10:45:07 PM PDT archive.org

A website which has more official documentation for Huginn, a database of agents (included and third party) and what they do, sample Huginn scenarios that can be imported and tinkered with, and Ruby gems of the third party agents.

exocortex huginn documentation agents scenarios gems ruby
5049 links, including 361 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn