owlmind 0.1.4__tar.gz → 0.1.5__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.
Files changed (23) hide show
  1. {owlmind-0.1.4/src/owlmind.egg-info → owlmind-0.1.5}/PKG-INFO +3 -3
  2. {owlmind-0.1.4 → owlmind-0.1.5}/README.md +2 -2
  3. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind/__init__.py +1 -1
  4. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind/graphk/node.py +2 -2
  5. {owlmind-0.1.4 → owlmind-0.1.5/src/owlmind.egg-info}/PKG-INFO +3 -3
  6. {owlmind-0.1.4 → owlmind-0.1.5}/LICENSE.txt +0 -0
  7. {owlmind-0.1.4 → owlmind-0.1.5}/pyproject.toml +0 -0
  8. {owlmind-0.1.4 → owlmind-0.1.5}/setup.cfg +0 -0
  9. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind/cli.py +0 -0
  10. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind/core/__init__.py +0 -0
  11. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind/core/component.py +0 -0
  12. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind/graphk/__init__.py +0 -0
  13. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind/graphk/pipeline.py +0 -0
  14. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind/models/__init__.py +0 -0
  15. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind/models/ollama.py +0 -0
  16. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind.egg-info/SOURCES.txt +0 -0
  17. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind.egg-info/dependency_links.txt +0 -0
  18. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind.egg-info/entry_points.txt +0 -0
  19. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind.egg-info/requires.txt +0 -0
  20. {owlmind-0.1.4 → owlmind-0.1.5}/src/owlmind.egg-info/top_level.txt +0 -0
  21. {owlmind-0.1.4 → owlmind-0.1.5}/tests/test_core_1.py +0 -0
  22. {owlmind-0.1.4 → owlmind-0.1.5}/tests/test_models_1.py +0 -0
  23. {owlmind-0.1.4 → owlmind-0.1.5}/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.4
3
+ Version: 0.1.5
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
- You should be able to run the script:
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
- You should be able to run the script:
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
 
@@ -2,4 +2,4 @@
2
2
  OwlMind Framework - experimentation environment for Generative Intelligence Systems.
3
3
  """
4
4
 
5
- __version__ = "0.1.4"
5
+ __version__ = "0.1.5"
@@ -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.4
3
+ Version: 0.1.5
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
- You should be able to run the script:
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