File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
from Noema import *
2
2
3
3
# Create a subject (LLM)
4
- Subject ("../Models/EXAONE-3.5-2.4B-Instruct- Q4_K_M.gguf" , verbose = True ) # Llama cpp model
4
+ Subject ("../Models/Mistral-NeMo-Minitron-8B-Instruct. Q4_K_M.gguf" , verbose = True ) # Llama cpp model
5
5
6
6
# Create a way of thinking
7
7
class SimpleWayOfThinking :
Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = 'Noema' ,
9
- version = '1.1.0 ' ,
9
+ version = '1.1.1 ' ,
10
10
description = 'Description of Noema' ,
11
11
long_description = long_description , # Inclure la description longue
12
12
long_description_content_type = 'text/markdown' , # Spécifiez le format de la description (markdown ou rst)
15
15
url = 'https://github.com/AlbanPerli/Noema-Declarative-AI' ,
16
16
packages = find_packages (),
17
17
install_requires = [
18
- 'guidance' ,
18
+ 'guidance==0.1.15' ,
19
+ 'varname'
19
20
],
20
21
classifiers = [
21
22
'Programming Language :: Python :: 3' ,
22
23
'License :: OSI Approved :: Apache Software License' ,
23
24
'Operating System :: OS Independent' ,
24
25
],
25
- python_requires = '>=3.6 ' ,
26
+ python_requires = '>=3.8 ' ,
26
27
)
You can’t perform that action at this time.
0 commit comments