owlmind 0.1.4__tar.gz → 0.1.5.1__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.
- {owlmind-0.1.4/src/owlmind.egg-info → owlmind-0.1.5.1}/PKG-INFO +3 -3
- {owlmind-0.1.4 → owlmind-0.1.5.1}/README.md +2 -2
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind/__init__.py +1 -1
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind/graphk/node.py +2 -2
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind/graphk/pipeline.py +1 -1
- {owlmind-0.1.4 → owlmind-0.1.5.1/src/owlmind.egg-info}/PKG-INFO +3 -3
- {owlmind-0.1.4 → owlmind-0.1.5.1}/LICENSE.txt +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/pyproject.toml +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/setup.cfg +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind/cli.py +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind/core/__init__.py +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind/core/component.py +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind/graphk/__init__.py +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind/models/__init__.py +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind/models/ollama.py +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind.egg-info/SOURCES.txt +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind.egg-info/dependency_links.txt +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind.egg-info/entry_points.txt +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind.egg-info/requires.txt +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/src/owlmind.egg-info/top_level.txt +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/tests/test_core_1.py +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/tests/test_models_1.py +0 -0
- {owlmind-0.1.4 → owlmind-0.1.5.1}/tests/test_pipeline_1.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: owlmind
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5.1
|
|
4
4
|
Summary: Experimentation environment and pedagogical sandbox for studying generative intelligence systems.
|
|
5
5
|
Author-email: Fernando Koch <your-email@example.com>
|
|
6
6
|
License: MIT
|
|
@@ -37,10 +37,10 @@ The OwlMind Framework provides an experimentation environment and pedagogical sa
|
|
|
37
37
|
pip install owlmind
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
If the installation goes well, you should be able to run the script:
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
|
-
owlmind version
|
|
43
|
+
owlmind --version
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
|
|
@@ -24,10 +24,10 @@ The OwlMind Framework provides an experimentation environment and pedagogical sa
|
|
|
24
24
|
pip install owlmind
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
If the installation goes well, you should be able to run the script:
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
owlmind version
|
|
30
|
+
owlmind --version
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
import random
|
|
16
16
|
from abc import ABC, abstractmethod
|
|
17
|
-
from typing import Union, Callable, List, Any, Iterator
|
|
17
|
+
from typing import Union, Callable, List, Any, Iterator, Optional, Dict
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
##
|
|
@@ -68,7 +68,7 @@ class Node(ABC):
|
|
|
68
68
|
"""
|
|
69
69
|
|
|
70
70
|
def __init__(self,
|
|
71
|
-
session: dict = None,
|
|
71
|
+
session: Optional[dict] = None,
|
|
72
72
|
*,
|
|
73
73
|
condition: Gate = None,
|
|
74
74
|
validation: Gate = None,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: owlmind
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5.1
|
|
4
4
|
Summary: Experimentation environment and pedagogical sandbox for studying generative intelligence systems.
|
|
5
5
|
Author-email: Fernando Koch <your-email@example.com>
|
|
6
6
|
License: MIT
|
|
@@ -37,10 +37,10 @@ The OwlMind Framework provides an experimentation environment and pedagogical sa
|
|
|
37
37
|
pip install owlmind
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
If the installation goes well, you should be able to run the script:
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
|
-
owlmind version
|
|
43
|
+
owlmind --version
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
|
|
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
|