Skip to content

Commit 83cd087

Browse files
author
AlbanP
committed
Fixed dependencies
1 parent 81e9e57 commit 83cd087

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

examples/basics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from Noema import *
22

33
# 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
55

66
# Create a way of thinking
77
class SimpleWayOfThinking:

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='Noema',
9-
version='1.1.0',
9+
version='1.1.1',
1010
description='Description of Noema',
1111
long_description=long_description, # Inclure la description longue
1212
long_description_content_type='text/markdown', # Spécifiez le format de la description (markdown ou rst)
@@ -15,12 +15,13 @@
1515
url='https://github.com/AlbanPerli/Noema-Declarative-AI',
1616
packages=find_packages(),
1717
install_requires=[
18-
'guidance',
18+
'guidance==0.1.15',
19+
'varname'
1920
],
2021
classifiers=[
2122
'Programming Language :: Python :: 3',
2223
'License :: OSI Approved :: Apache Software License',
2324
'Operating System :: OS Independent',
2425
],
25-
python_requires='>=3.6',
26+
python_requires='>=3.8',
2627
)

0 commit comments

Comments
 (0)