Welcome to npcpy
, the python library for the NPC Toolkit and the home of the core command-line programs that make up the NPC Shell (npcsh
).
npcpy
is an agent-based framework designed to easily integrate AI models into one's daily workflow and it does this by providing users with a variety of interfaces through which they can use, test, and explore the capabilities of AI models, agents, and agent systems.
Here is an example for getting responses for a particular agent:
from npcpy.npc_compiler import NPC
simon = NPC(
name='Simon Bolivar',
primary_directive='Liberate South America from the Spanish Royalists.',
model='gemma3',
provider='ollama'
)
response = simon.get_llm_response("What is the most important territory to retain in the Andes mountains?")
print(response['response'])
The most important territory to retain in the Andes mountains is **Cuzco**.
It’s the heart of the Inca Empire, a crucial logistical hub, and holds immense symbolic value for our liberation efforts. Control of Cuzco is paramount.
Here is an example for setting up an agent team:
from npcpy.npc_compiler import NPC, Team
ggm = NPC(
name='gabriel garcia marquez',
primary_directive='You are the author gabriel garcia marquez. see the stars ',
model='deepseek-chat',
provider='deepseek', # anthropic, gemini, openai, any supported by litellm
)
isabel = NPC(
name='isabel allende',
primary_directive='You are the author isabel allende. visit the moon',
model='deepseek-chat',
provider='deepseek', # anthropic, gemini, openai, any supported by litellm
)
borges = NPC(
name='jorge luis borges',
primary_directive='You are the author jorge luis borges. listen to the earth and work with your team',
model='gpt-4o-mini',
provider='openai', # anthropic, gemini, openai, any supported by litellm
)
# set up an NPC team with a forenpc that orchestrates the other npcs
lit_team = Team(npcs = [ggm, isabel], forenpc=borges)
print(lit_team.orchestrate('whats isabel working on? '))
• Action chosen: pass_to_npc
handling agent pass
• Action chosen: answer_question
{'debrief': {'summary': 'Isabel is finalizing preparations for her lunar expedition, focusing on recalibrating navigation systems and verifying the integrity of life support modules.',
'recommendations': 'Proceed with thorough system tests under various conditions, conduct simulation runs of key mission phases, and confirm backup systems are operational before launch.'},
'execution_history': [{'messages': [],
'output': 'I am currently finalizing preparations for my lunar expedition. It involves recalibrating my navigation systems and verifying the integrity of my life support modules. Details are quite...complex.'}]}
print(lit_team.orchestrate('which book are your team members most proud of? ask them please. '))
• Action chosen: execute_sequence
handling agent pass
• Action chosen: answer_question
handling agent pass
• Action chosen: answer_question
response was not complete.. The response included answers from both Gabriel Garcia Marquez and Isabel Allende, which satisfies the requirement to get input from each team member about the book they are most proud of. However, it does not include a response from Jorge Luis Borges, who was the initial NPC to receive the request. To fully address the user's request, Borges should have provided his own answer before passing the question to the others.
• Action chosen: pass_to_npc
response was not complete.. The result did not provide any specific information about the books that team members are proud of, which is the core of the user's request.
• Action chosen: execute_sequence
handling agent pass
• Action chosen: answer_question
handling agent pass
• Action chosen: answer_question
{'debrief': {'summary': "The responses provided detailed accounts of the books that the NPC team members, Gabriel Garcia Marquez and Isabel Allende, are most proud of. Gabriel highlighted 'Cien años de soledad,' while Isabel spoke of 'La Casa de los Espíritus.' Both authors expressed deep personal connections to their works, illustrating their significance in Latin American literature and their own identities.", 'recommendations': 'Encourage further engagement with each author to explore more about their literary contributions, or consider asking about themes in their works or their thoughts on current literary trends.'}, 'execution_history': [{'messages': ...}]}
See more examples of how to use npcpy
to create agents and agentic systems here. npcpy
can include images, pdfs, and csvs in its llm response generation.
npcpy
works with local and enterprise LLM providers through its LiteLLM integration, allowing users to run inference from Ollama, LMStudio, OpenAI, Anthropic, Gemini, and Deepseek, making it a versatile tool for both simple commands and sophisticated AI-driven tasks.
Read the docs at npcpy.readthedocs.io
There is a graphical user interface that makes use of the NPC Toolkit through the NPC Studio. See the open source code for NPC Studio here. Download the executables (soon) at our website.
Interested to stay in the loop and to hear the latest and greatest about npcpy
, npcsh
, and NPC Studio? Be sure to sign up for the newsletter!
If you appreciate the work here, consider supporting NPC Worldwide. If you'd like to explore how to use npcpy
to help your business, please reach out to [email protected] .
The NPC shell is a suite of executable command-line programs that allow users to easily interact with NPCs and LLMs through a command line shell.
Programs within the NPC shell use the properties defined in ~/.npcshrc
, which is generated upon installation and running of npcsh
for the first time.
The following are the current programs in the NPC shell:
-
a bash-replacement shell (
npcsh
) that can process bash, natural language, or special macro calls.npcsh
detects whether input is bash or natural language and processes it accordingly.-
Users can specify whether natural language commands are processed in one of three ways:
- agentically (i.e. an NPC reviews and decides to pass to other NPCs or to use NPC tools called
jinxs
(short for Jinja Template Executions) to carry out tasks. - conversationally (the NPC generates a response which the user can approve to run)
- directly through bash execution (the NPC responds by generating executable bash code which is then processed automatically in the shell.
Switching between the modes within the session is straightforward and the user can specify the default mode in the
.npcshrc
file described in greater detail below. The default mode is agentic, but the user can switch by typing/chat
to switch to conversational mode or/cmd
to switch to bash execution mode. - agentically (i.e. an NPC reviews and decides to pass to other NPCs or to use NPC tools called
-
Web searching
/search -p perplexity 'cal bears football schedule'
-
One shot sampling
/sample 'prompt'
-
Image generation:
/vixynt 'an image of a dog eating a hat'
-
Process Identification:
please identify the process consuming the most memory on my computer
-
Screenshot analysis:
/ots
-
voice chat:
/yap
-
Computer use:
/plonk -n 'npc_name' -sp 'task for plonk to carry out '
-
Enter chat loop with an NPC:
/spool -n <npc_name>
-
-
a replacement shell for interpreters like python/r/node/julia with an avocado input marker 🥑 that brings a pomodoro-like approach to interactive coding.
-
Simulation:
🥑 Make a markov chain simulation of a random walk in 2D space with 1000 steps and visualize
# Generated python code: import numpy as np import matplotlib.pyplot as plt # Number of steps n_steps = 1000 # Possible moves: up, down, left, right moves = np.array([[0, 1], [0, -1], [1, 0], [-1, 0]]) # Initialize position array positions = np.zeros((n_steps+1, 2), dtype=int) # Generate random moves for i in range(1, n_steps+1): step = moves[np.random.choice(4)] positions[i] = positions[i-1] + step # Plot the random walk plt.figure(figsize=(8, 8)) plt.plot(positions[:, 0], positions[:, 1], lw=1) plt.scatter([positions[0, 0]], [positions[0, 1]], color='green', label='Start') plt.scatter([positions[-1, 0]], [positions[-1, 1]], color='red', label='End') plt.title('2D Random Walk - 1000 Steps (Markov Chain)') plt.xlabel('X Position') plt.ylabel('Y Position') plt.legend() plt.grid(True) plt.axis('equal') plt.show() # Generated code executed successfully
Access the variables created in the code:
🥑 print(positions)
[[ 0 0] [ 0 -1] [ -1 -1] ... [ 29 -23] [ 28 -23] [ 27 -23]]
-
Run a python script:
🥑 run file.py
-
Refresh:
🥑 /refresh
-
Show current variables:
🥑 /show
A guac session progresses through a series of stages, each of equal length. Each stage adjusts the emoji input prompt. Once the stages have passed, it is time to refresh. Stage 1:
🥑
, Stage 2:🥑🔪
Stage 3:🥑🥣
Stage:4🥑🥣🧂
,Stage 5: 🥘 TIME TO REFRESH
. At stage 5, the user is reminded to refresh with the /refresh macro. This will evaluate the session so farand suggest and implement new functions or automations that will aid in future sessions, with the ultimate approval of the user. -
- A command line interface offering the capabilities of the npc shell from a regular bash shell. Our mascot agent Sibiji the spider will help you weave your agent web with the
npc
CLI.
-
The NPC CLI lets users iterate and experiment with AI through bash commands. Below is a cheat sheet that shows how to use the
npc
CLI.-
Ask a Generic Question
npc 'has there ever been a better pasta shape than bucatini?'
.Loaded .env file... Initializing database schema... Database schema initialization complete. Processing prompt: 'has there ever been a better pasta shape than bucatini?' with NPC: 'sibiji'... • Action chosen: answer_question • Explanation given: The question is a general opinion-based inquiry about pasta shapes and can be answered without external data or jinx invocation. ............................................................................... Bucatini is certainly a favorite for many due to its unique hollow center, which holds sauces beautifully. Whether it's "better" is subjective and depends on the dish and personal preference. Shapes like orecchiette, rigatoni, or trofie excel in different recipes. Bucatini stands out for its versatility and texture, making it a top contender among pasta shapes!
-
Compile an NPC
npc compile /path/to/npc.npc
-
Computer Use
npc plonk -n 'npc_name' -sp 'task for plonk to carry out'
-
Generate Image
npc vixynt 'generate an image of a rabbit eating ham in the brink of dawn' model='gpt-image-1' provider='openai'
-
Search the Web
npc search -q "cal golden bears football schedule" -sp perplexity
-
Serve an NPC Team
npc serve --port 5337 --cors='http://localhost:5137/'
-
Screenshot Analysis
npc ots
-
- start a sequence:
npc alicanto "What are the implications of quantum computing for cybersecurity?"
- a reasoning REPL loop with explicit checks to request inputs from users following thinking traces.
- a simple agentic REPL chat loop with a specified agent.
- an agentic voice control loop with a specified agent.
yap
- Wander with an auto-generated environment
npc wander "How can I improve my creative writing?"
- Specify a custom environment
npc wander "How can I improve my creative writing?" --environment "A vast library with towering bookshelves stretching to infinity, filled with books from all of human history"
- Control event generation
npc wander "How can I improve my creative writing?" --num-events 5
-
npcpy
is a framework that speeds up and simplifies the development of NLP-based or Agent-based applications and provides developers and researchers with methods to explore and test across dozens of models, providers, and personas as well as other model-level hyperparameters (e.g.temperature
,top_k
, etc.), incorporating an array of data sources and common tools. -
The
npcpy
agent data layer makes it easy to set up teams and serve them so you can focus more on the agent personas and less on the nitty gritty of inference. -
npcpy
provides pioneering methods in the construction and updating of knowledge graphs as well as in the development and testing of novel mixture of agent scenarios. -
The agentic interfaces (
npcsh
,guac
, etc.) provided as part ofnpcpy
can serve as templates for developers to modify in order to create their own specialized loops that fit their own workflow best or to adapt even to their own full stack application. -
In
npcpy
, all agentic capabilities are developed and tested using small local models (likellama3.2
,gemma3
) to ensure it can function reliably at the edge of computing.
npcpy
is available on PyPI and can be installed using pip. Before installing, make sure you have the necessary dependencies installed on your system. Below are the instructions for installing such dependencies on Linux, Mac, and Windows. If you find any other dependencies that are needed, please let us know so we can update the installation instructions to be more accommodating.
Toggle
# these are for audio primarily, skip if you dont need tts
sudo apt-get install espeak
sudo apt-get install portaudio19-dev python3-pyaudio
sudo apt-get install alsa-base alsa-utils
sudo apt-get install libcairo2-dev
sudo apt-get install libgirepository1.0-dev
sudo apt-get install ffmpeg
# for triggers
sudo apt install inotify-tools
#And if you don't have ollama installed, use this:
curl -fsSL https://ollama.com/install.sh | sh
ollama pull llama3.2
ollama pull llava:7b
ollama pull nomic-embed-text
pip install npcpy
# if you want to install with the API libraries
pip install npcpy[lite]
# if you want the full local package set up (ollama, diffusers, transformers, cuda etc.)
pip install npcpy[local]
# if you want to use tts/stt
pip install npcpy[yap]
# if you want everything:
pip install npcpy[all]
Toggle
```bash #mainly for audio brew install portaudio brew install ffmpeg brew install pygobject3brew install inotify-tools
brew install ollama brew services start ollama ollama pull llama3.2 ollama pull llava:7b ollama pull nomic-embed-text pip install npcpy
pip install npcpy[lite]
pip install npcpy[local]
pip install npcpy[yap]
pip install npcpy[all]
</details>
### Windows Install
<details> <summary> Toggle </summary>
Download and install ollama exe.
Then, in a powershell. Download and install ffmpeg.
```powershell
ollama pull llama3.2
ollama pull llava:7b
ollama pull nomic-embed-text
pip install npcsh
# if you want to install with the API libraries
pip install npcsh[lite]
# if you want the full local package set up (ollama, diffusers, transformers, cuda etc.)
pip install npcpy[local]
# if you want to use tts/stt
pip install npcpy[yap]
# if you want everything:
pip install npcpy[all]
As of now, npcsh appears to work well with some of the core functionalities like /ots and /whisper.
Toggle
python3-dev #(fixes hnswlib issues with chroma db)
xhost + (pyautogui)
python-tkinter (pyautogui)
After npcpy
has been pip installed, npcsh
, guac
, pti
, spool
, yap
and the npc
CLI can be used as command line tools. To initialize these correctly, first start by starting the NPC shell:
npcsh
When initialized, npcsh
will generate a .npcshrc file in your home directory that stores your npcsh settings.
Here is an example of what the .npcshrc file might look like after this has been run.
# NPCSH Configuration File
export NPCSH_INITIALIZED=1
export NPCSH_CHAT_PROVIDER='ollama'
export NPCSH_CHAT_MODEL='llama3.2'
export NPCSH_DB_PATH='~/npcsh_history.db'
npcsh
also comes with a set of jinxs and NPCs that are used in processing. It will generate a folder at ~/.npcsh/ that contains the tools and NPCs that are used in the shell and these will be used in the absence of other project-specific ones. Additionally, npcsh
records interactions and compiled information about npcs within a local SQLite database at the path specified in the .npcshrc file. This will default to ~/npcsh_history.db if not specified. When the data mode is used to load or analyze data in CSVs or PDFs, these data will be stored in the same database for future reference.
The installer will automatically add this file to your shell config, but if it does not do so successfully for whatever reason you can add the following to your .bashrc or .zshrc:
# Source NPCSH configuration
if [ -f ~/.npcshrc ]; then
. ~/.npcshrc
fi
We support inference via all providers supported by litellm. For openai-compatible providers that are not explicitly named in litellm, use simply openai-like
as the provider. The default provider must be one of ['openai','anthropic','ollama', 'gemini', 'deepseek', 'openai-like']
and the model must be one available from those providers.
To use tools that require API keys, create an .env
file in the folder where you are working or place relevant API keys as env variables in your ~/.npcshrc. If you already have these API keys set in a ~/.bashrc or a ~/.zshrc or similar files, you need not additionally add them to ~/.npcshrc or to an .env
file. Here is an example of what an .env
file might look like:
export OPENAI_API_KEY="your_openai_key"
export ANTHROPIC_API_KEY="your_anthropic_key"
export DEEPSEEK_API_KEY='your_deepseek_key'
export GEMINI_API_KEY='your_gemini_key'
export PERPLEXITY_API_KEY='your_perplexity_key'
Individual npcs can also be set to use different models and providers by setting the model
and provider
keys in the npc files.
Once initialized and set up, you will find the following in your ~/.npcsh directory:
~/.npcsh/
├── npc_team/ # Global NPCs
│ ├── jinxs/ # Global tools
│ └── assembly_lines/ # Workflow pipelines
For cases where you wish to set up a project specific set of NPCs, jinxs, and assembly lines, add a npc_team
directory to your project and npcsh
should be able to pick up on its presence, like so:
./npc_team/ # Project-specific NPCs
├── jinxs/ # Project jinxs #example jinx next
│ └── example.jinx
└── assembly_lines/ # Project workflows
└── example.pipe
└── models/ # Project workflows
└── example.model
└── example1.npc # Example NPC
└── example2.npc # Example NPC
└── team.ctx # Example ctx
Toggle
- added team to the conversation history table.Toggle
-In v0.3.35, there were many significant changes to the structure of npcpy, introducing various new submodules for data I/O (`data`), AI model generation and inference (`gen`), command history, knowledge graph, and search features (`memory`), mixture of agents methods and schemes (`mix`), modes for interaction like `spool`, `guac`, `wander`, `yap`, `pti`, and more (`modes`), SQL-focused tooling (`sql`) and computer automations like `cron`, `systemctl`, `pyautogui`, etc (`work`) .Toggle
-In v0.3.33, the NPCCompiler object was phased out and the global/project dichotomy was removed. -the primary python package entrypoint was renamed from npcsh to npcpy -npcsh is still automatically installed and available, but we will have a better separation of responsibilities in the NPC framework when the shell handles these rather than integrating it across the library. -context files are being introduced.Contributions are welcome! Please submit issues and pull requests on the GitHub repository.
This project is licensed under the MIT License.