Registry / llm-agents / ghocentric-ghost-engine

ghocentric-ghost-engine

JSON →
library1.0.1pypypi✓ verified 81d ago

Ghost cognitive engine for building autonomous AI agents with memory, reasoning, and planning capabilities. Version 1.0.1, actively maintained. Released monthly.

pip install ghocentric-ghost-engine
INSTALL
IMPORT
SIG · GHOCENTRIC-GHOST-E
G
ghocentric-ghost-engine
llm-agentspythonv1.0.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

GhostEngine
from ghost import GhostEngine
from ghost_engine import GhostEngine
GhostAPI
from ghost import GhostAPI
agents
from ghost import agents

Initialize the Ghost cognitive engine with an API key and run a simple query.

import os from ghost_engine import GhostEngine api_key = os.environ.get('GHOST_API_KEY', '') engine = GhostEngine(api_key=api_key) response = engine.think("What is AI?") print(response)
Debug
Known issues
breakingIn v1.0.0, the import path changed from 'ghocentric_ghost_engine' to 'ghost_engine'. Old imports will break.
fix
Use 'from ghost_engine import GhostEngine' instead of 'from ghocentric_ghost_engine import GhostEngine'.
affects: <1.0.0
deprecatedThe parameter 'model' in GhostEngine constructor is deprecated since v1.0.0. Use 'model_name' instead.
fix
Replace GhostEngine(model='...') with GhostEngine(model_name='...').
affects: >=1.0.0
gotchaAPI key is required. If not provided, the engine will raise a ValueError at runtime, not at import.
fix
Set the GHOST_API_KEY environment variable or pass api_key='your-key'.
affects: >=1.0.0
Upgrade
Version history
1.0.1latest on PyPI · released Mar 25, 2026
Audit
Dependencies
numpyoptionalInternal tensor operations
transformersoptionalLanguage model integration
Agent activity
14 hits · last 30 days
node
12
OpenAI (training)
1
Resources
ghocentric-ghost-engine — pip install ghocentric-ghost-engine · libregistry