not-again-ai 0.8.1__tar.gz → 0.8.2__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.
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/PKG-INFO +11 -11
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/pyproject.toml +11 -11
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/LICENSE +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/README.md +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/__init__.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/base/__init__.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/base/file_system.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/base/parallel.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/__init__.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/chat_completion.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/ollama/__init__.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/ollama/chat_completion.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/ollama/ollama_client.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/ollama/service.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/openai_api/__init__.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/openai_api/chat_completion.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/openai_api/context_management.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/openai_api/embeddings.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/openai_api/openai_client.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/openai_api/prompts.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/openai_api/tokens.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/py.typed +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/statistics/__init__.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/statistics/dependence.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/viz/__init__.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/viz/barplots.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/viz/distributions.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/viz/scatterplot.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/viz/time_series.py +0 -0
- {not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/viz/utils.py +0 -0
@@ -1,12 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not-again-ai
|
3
|
-
Version: 0.8.
|
3
|
+
Version: 0.8.2
|
4
4
|
Summary: Designed to once and for all collect all the little things that come up over and over again in AI projects and put them in one place.
|
5
5
|
Home-page: https://github.com/DaveCoDev/not-again-ai
|
6
6
|
License: MIT
|
7
7
|
Author: DaveCoDev
|
8
8
|
Author-email: dave.co.dev@gmail.com
|
9
|
-
Requires-Python: >=3.11,<
|
9
|
+
Requires-Python: >=3.11,<4.0
|
10
10
|
Classifier: Development Status :: 3 - Alpha
|
11
11
|
Classifier: Intended Audience :: Developers
|
12
12
|
Classifier: Intended Audience :: Science/Research
|
@@ -20,15 +20,15 @@ Classifier: Typing :: Typed
|
|
20
20
|
Provides-Extra: llm
|
21
21
|
Provides-Extra: statistics
|
22
22
|
Provides-Extra: viz
|
23
|
-
Requires-Dist: numpy (
|
24
|
-
Requires-Dist: ollama (
|
25
|
-
Requires-Dist: openai (
|
26
|
-
Requires-Dist: pandas (
|
27
|
-
Requires-Dist: python-liquid (
|
28
|
-
Requires-Dist: scikit-learn (
|
29
|
-
Requires-Dist: scipy (
|
30
|
-
Requires-Dist: seaborn (
|
31
|
-
Requires-Dist: tiktoken (
|
23
|
+
Requires-Dist: numpy (==1.26.4) ; extra == "statistics" or extra == "viz"
|
24
|
+
Requires-Dist: ollama (==0.2.0) ; extra == "llm"
|
25
|
+
Requires-Dist: openai (==1.30.1) ; extra == "llm"
|
26
|
+
Requires-Dist: pandas (==2.2.2) ; extra == "viz"
|
27
|
+
Requires-Dist: python-liquid (==1.12.1) ; extra == "llm"
|
28
|
+
Requires-Dist: scikit-learn (==1.4.2) ; extra == "statistics"
|
29
|
+
Requires-Dist: scipy (==1.13.0) ; extra == "statistics"
|
30
|
+
Requires-Dist: seaborn (==0.13.2) ; extra == "viz"
|
31
|
+
Requires-Dist: tiktoken (==0.7.0) ; extra == "llm"
|
32
32
|
Project-URL: Documentation, https://github.com/DaveCoDev/not-again-ai
|
33
33
|
Project-URL: Repository, https://github.com/DaveCoDev/not-again-ai
|
34
34
|
Description-Content-Type: text/markdown
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "not-again-ai"
|
3
|
-
version = "0.8.
|
3
|
+
version = "0.8.2"
|
4
4
|
description = "Designed to once and for all collect all the little things that come up over and over again in AI projects and put them in one place."
|
5
5
|
authors = ["DaveCoDev <dave.co.dev@gmail.com>"]
|
6
6
|
license = "MIT"
|
@@ -24,18 +24,18 @@ classifiers = [
|
|
24
24
|
# Some packages, such as scipy, constrain their upper bound of Python versions they support.
|
25
25
|
# Without also constraining the upper bound here, Poetry will not select those versions and will
|
26
26
|
# result in an old version being resolved/locked.
|
27
|
-
python = "^3.11
|
27
|
+
python = "^3.11 || ^3.12"
|
28
28
|
|
29
29
|
# Optional dependencies are defined here, and groupings are defined below.
|
30
|
-
numpy = { version = "
|
31
|
-
ollama = { version = "
|
32
|
-
openai = { version = "
|
33
|
-
pandas = { version = "
|
34
|
-
python-liquid = { version = "
|
35
|
-
scipy = { version = "
|
36
|
-
scikit-learn = { version = "
|
37
|
-
seaborn = { version = "
|
38
|
-
tiktoken = { version = "
|
30
|
+
numpy = { version = "==1.26.4", optional = true }
|
31
|
+
ollama = { version = "==0.2.0", optional = true }
|
32
|
+
openai = { version = "==1.30.1", optional = true }
|
33
|
+
pandas = { version = "==2.2.2", optional = true }
|
34
|
+
python-liquid = { version = "==1.12.1", optional = true }
|
35
|
+
scipy = { version = "==1.13.0", optional = true }
|
36
|
+
scikit-learn = { version = "==1.4.2", optional = true }
|
37
|
+
seaborn = { version = "==0.13.2", optional = true }
|
38
|
+
tiktoken = { version = "==0.7.0", optional = true }
|
39
39
|
|
40
40
|
[tool.poetry.extras]
|
41
41
|
llm = ["ollama", "openai", "python-liquid", "tiktoken"]
|
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
|
{not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/openai_api/chat_completion.py
RENAMED
File without changes
|
{not_again_ai-0.8.1 → not_again_ai-0.8.2}/src/not_again_ai/llm/openai_api/context_management.py
RENAMED
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
|