thoughtflow 0.0.2__tar.gz → 0.0.4__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.
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/.gitignore +8 -0
- thoughtflow-0.0.4/PKG-INFO +1686 -0
- thoughtflow-0.0.4/README.md +1603 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/pyproject.toml +1 -1
- thoughtflow-0.0.4/src/thoughtflow/__init__.py +99 -0
- thoughtflow-0.0.4/src/thoughtflow/_util.py +752 -0
- thoughtflow-0.0.4/src/thoughtflow/action.py +357 -0
- thoughtflow-0.0.4/src/thoughtflow/agent.py +66 -0
- thoughtflow-0.0.4/src/thoughtflow/llm.py +250 -0
- thoughtflow-0.0.4/src/thoughtflow/memory/__init__.py +32 -0
- thoughtflow-0.0.4/src/thoughtflow/memory/base.py +1658 -0
- thoughtflow-0.0.4/src/thoughtflow/thought.py +1102 -0
- thoughtflow-0.0.4/src/thoughtflow/thoughtflow6.py +4180 -0
- thoughtflow-0.0.4/tests/conftest.py +429 -0
- thoughtflow-0.0.4/tests/integration/test_llm_providers.py +492 -0
- thoughtflow-0.0.4/tests/unit/test_action.py +421 -0
- thoughtflow-0.0.4/tests/unit/test_agent.py +69 -0
- thoughtflow-0.0.4/tests/unit/test_llm.py +469 -0
- thoughtflow-0.0.4/tests/unit/test_memory.py +1104 -0
- thoughtflow-0.0.4/tests/unit/test_thought.py +501 -0
- thoughtflow-0.0.4/tests/unit/test_util.py +890 -0
- thoughtflow-0.0.2/PKG-INFO +0 -215
- thoughtflow-0.0.2/README.md +0 -132
- thoughtflow-0.0.2/src/thoughtflow/__init__.py +0 -56
- thoughtflow-0.0.2/src/thoughtflow/_util.py +0 -108
- thoughtflow-0.0.2/src/thoughtflow/adapters/__init__.py +0 -43
- thoughtflow-0.0.2/src/thoughtflow/adapters/anthropic.py +0 -119
- thoughtflow-0.0.2/src/thoughtflow/adapters/base.py +0 -140
- thoughtflow-0.0.2/src/thoughtflow/adapters/local.py +0 -133
- thoughtflow-0.0.2/src/thoughtflow/adapters/openai.py +0 -118
- thoughtflow-0.0.2/src/thoughtflow/agent.py +0 -147
- thoughtflow-0.0.2/src/thoughtflow/memory/__init__.py +0 -27
- thoughtflow-0.0.2/src/thoughtflow/memory/base.py +0 -142
- thoughtflow-0.0.2/tests/conftest.py +0 -165
- thoughtflow-0.0.2/tests/unit/test_agent.py +0 -84
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/CHANGELOG.md +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/LICENSE +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/eval/__init__.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/eval/harness.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/eval/replay.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/message.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/py.typed +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/tools/__init__.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/tools/base.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/tools/registry.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/trace/__init__.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/trace/events.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/trace/schema.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/trace/session.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/__init__.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/integration/__init__.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/integration/test_anthropic_adapter.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/integration/test_openai_adapter.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/unit/__init__.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/unit/test_message.py +0 -0
- {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/unit/test_trace.py +0 -0
|
@@ -160,3 +160,11 @@ cython_debug/
|
|
|
160
160
|
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
161
161
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
162
162
|
#.idea/
|
|
163
|
+
.DS_Store
|
|
164
|
+
|
|
165
|
+
# ============================================================================
|
|
166
|
+
# Human-AI Pair Programming Context
|
|
167
|
+
# ============================================================================
|
|
168
|
+
# This folder contains reference materials, notes, and files used to provide
|
|
169
|
+
# context during AI-assisted development sessions. Not part of the codebase.
|
|
170
|
+
.context/
|