npcpy 1.2.13__tar.gz → 1.2.14__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {npcpy-1.2.13/npcpy.egg-info → npcpy-1.2.14}/PKG-INFO +1 -1
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/serve.py +1 -0
- {npcpy-1.2.13 → npcpy-1.2.14/npcpy.egg-info}/PKG-INFO +1 -1
- {npcpy-1.2.13 → npcpy-1.2.14}/setup.py +1 -1
- {npcpy-1.2.13 → npcpy-1.2.14}/LICENSE +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/MANIFEST.in +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/README.md +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/__init__.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/data/__init__.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/data/audio.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/data/data_models.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/data/image.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/data/load.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/data/text.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/data/video.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/data/web.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/gen/__init__.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/gen/audio_gen.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/gen/embeddings.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/gen/image_gen.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/gen/response.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/gen/video_gen.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/llm_funcs.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/main.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/memory/__init__.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/memory/command_history.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/memory/kg_vis.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/memory/knowledge_graph.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/memory/search.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/mix/__init__.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/mix/debate.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/npc_compiler.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/npc_sysenv.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/npcs.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/sql/__init__.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/sql/model_runner.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/sql/npcsql.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/tools.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/work/__init__.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/work/desktop.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/work/plan.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy/work/trigger.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy.egg-info/SOURCES.txt +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy.egg-info/dependency_links.txt +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy.egg-info/requires.txt +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/npcpy.egg-info/top_level.txt +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/setup.cfg +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/tests/test_audio.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/tests/test_command_history.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/tests/test_image.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/tests/test_llm_funcs.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/tests/test_load.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/tests/test_npc_compiler.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/tests/test_npcsql.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/tests/test_response.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/tests/test_serve.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/tests/test_text.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/tests/test_tools.py +0 -0
- {npcpy-1.2.13 → npcpy-1.2.14}/tests/test_web.py +0 -0
|
@@ -1778,6 +1778,7 @@ def stream():
|
|
|
1778
1778
|
|
|
1779
1779
|
try:
|
|
1780
1780
|
from npcsh.corca import execute_command_corca, create_corca_state_and_mcp_client, MCPClientNPC
|
|
1781
|
+
from npcsh._state import initial_state as state
|
|
1781
1782
|
except ImportError:
|
|
1782
1783
|
|
|
1783
1784
|
print("ERROR: npcsh.corca or MCPClientNPC not found. Corca mode is disabled.", file=sys.stderr)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|