npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

qtools-ai-thought-processor

v1.0.5

Published

AI thought process framework

Downloads

313

Readme

qtools-ai-thought-processor

AI Thought Processor (ATP)

IMPORTANT: All V1.0.X versions should be considered to have breaking changes. This framework is still under active development. Normal semver will start on V2. qTools ATP works and is used in production but breaking changes are expected for awhile as we learn what is actually needed in our real application.

DESCRIPTION

qTools ATP is a framework is based on a metaphor of seminar hosting one or more panel conversations working together on a problem. It calls these Thought Processes.

According to the metaphor, a Thought Process is a series of Conversations, each of which is a group of Thinkers guided by a Facilitator. Conversations operate in sequence under the control of the chosen Task Runner (only one of these so far). Each reports its Wisdom with the Wisdom of the last Conversation sent to output as the finished result of the Thought Process. The format and meaning of the Wisdom at each Conversation step is up to the specifics of the Thinkers.

A Conversation has a Facilitator and a group of Thinkers, each expert in some aspect of the problem under consideration. The Conversation's Facilitator executes the list of Thinkers in some useful pattern. This is usually in sequence, passing each Thinker's Wisdom to the next. (Soon, in parallel with a final Thinker reducing the accumulated Wisdom to contribue to the next Conversation). A special Facilitator repeats its Conversation until one of the Thinkers says the Wisdom is good.

Fundamentally, a Thinker receives Wisdom, does something and forwards new Wisdom to the next step. In a Conversation, the Wisdom of the last Thinker is the final result of the Thought Process. qTools ATP does not know or care what the Thinkers do as long as they produce Wisdom. Although qTools ATP has a couple of built-in Thinkers, coding Thinkers is the main work of creating an application based on qTools ATP.

qTools ATP mainly provides the orchestration so Thinkers can work with Facilitators in Conversations. This happens when an application hands the configuration structure to a makeFacilitators() function and passes those to findTheAnswer().

To support the entire process, qTools ATP provides several utilities to make coding Thinkers easier and make them easier to debug. Fundamental is a library of Smarty Pants modules that format parameters and requests for NetBrains (presently only ChatGPT with others planned).

There is also a logging (xLog) facility that supports basic logging function but will also allow a Thinker (or any module) to write to a separate log file unique to that module for a specific program execution. This usually contains raw prompts and responses.

qTools ATP uses the qTools-parse-command-line to control the Thought Process. This can be used by the application as well. Application specific flags and help text can be added to the system.

Configuration Example

In this sample application, Thinkers parse data files and access external HTTP resources as well as execute various prompts to successively refine the result from various perspectives.

; ==============================================================
; A Thought Process is a sequence of Conversations each
; comprising a Facilitator and the name of a group of Thinkers

[App_Specific_Thought_Process]
thoughtProcessConversationList.0.facilitatorModuleName=get-answer
thoughtProcessConversationList.0.conversationThinkerListName=unityGenerator

thoughtProcessConversationList.1.facilitatorModuleName=answer-until-valid
thoughtProcessSpecificationList.1.conversationThinkerListName=refiner

; ==============================================================
; A Conversation is one of a group of Thinkers instantiated with a Facilitator

[conversation-generator]
unityGenerator.thinkerList.0.configName=getSpecificationData
unityGenerator.thinkerList.1.configName=xmlMaker
unityGenerator.thinkerList.2.configName=xmlReview

refiner.thinkerList.0.configName=fixProblems
refiner.thinkerList.1.configName=checkValidity

; ==============================================================
; Each Thinker is a custom module that receives Wisdom from other Thinkers
; according to the Facilitator's control.

[thinkers]
;------------------------------------------
; Opens a local data file
getSpecificationData.selfName=getSpecificationData
getSpecificationData.module=<!thinkerFolderPath!>/get-specification-data

;------------------------------------------
; Accesses Net Brain
xmlMaker.selfName=xmlMaker
xmlMaker.module=<!thinkerFolderPath!>/xml-maker
xmlMaker.smartyPantsName=gpt

;------------------------------------------
; Accesses Net Brain
xmlReview.selfName=xmlReview
xmlReview.module=<!thinkerFolderPath!>/xml-review
xmlReview.smartyPantsName=gpt

;------------------------------------------
; Accesses HTTP service endpoint
checkValidity.selfName=checkValidity
checkValidity.module=<!thinkerFolderPath!>/check-validity
checkValidity.smartyPantsName=gpt

;------------------------------------------
; Accesses Net Brain
fixProblems.selfName=fixProblems
fixProblems.module=<!thinkerFolderPath!>/fix-problems
fixProblems.smartyPantsName=gpt

; ==============================================================
; Supply data to thinker module if needed

[xml-maker]
promptLibraryModulePath=<!promptLibraryModulePath!>

[xml-review]
promptLibraryModulePath=<!promptLibraryModulePath!>

[fix-problems]
promptLibraryModulePath=<!promptLibraryModulePath!>

[get-specification-data]
spreadsheetPath = <!sourceFilesPath!>/ImplementationSpecification.xlsx

Acknowledgment and Copyright

Development of this open source software was supported by the fine people of Access for Learning, LLC supporting thei mission of educational data interoperability.

Copyright 2023 Access for Learning

Licensed under the Apache License, Version 2.0 (the "License");

you may not use this file except in compliance with the License.

You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software

distributed under the License is distributed on an "AS IS" BASIS,

WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

See the License for the specific language governing permissions and

limitations under the License.

Authors: TQ White II (Justkidding, Inc.) and John Lovell (Access for Learning, LLC)