Skip to content

Commit bea15db

Browse files
mehfuzhMehfuz Hossain
andauthored
fix dependencies (#9)
Co-authored-by: Mehfuz Hossain <mehfuz.hossain@gmail.com>
1 parent 5d6e645 commit bea15db

File tree

3 files changed

+4
-15
lines changed

3 files changed

+4
-15
lines changed

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,19 @@
1010
'PyYAML==6.0.1',
1111
'requests==2.32.3',
1212
'typer==0.12.3',
13-
'art==6.2',
1413
'inquirer==3.3.0',
1514
'tabulate==0.9.0',
16-
'flask>=3.0.0'
15+
'pyfiglet==1.0.4'
1716
]
1817

1918
setup(
2019
name='smartloop',
2120
description='Smartloop Command Line interface to process documents using LLM',
2221
version=__version__,
23-
author_email='mehfuz@smartloop.ai',
22+
author_email='hello@smartloop.ai',
2423
author='Smartloop Inc.',
2524
url='https://github.com/LexicHQ/smartloop',
26-
keywords=['LLM', 'framework', 'llama3', 'phi3', 'platform', 'document', 'gemma'],
25+
keywords=['LLM', 'framework', 'fine-tuning', 'platform', 'document-processing', 'ai'],
2726
packages=find_packages(exclude=['tests*']),
2827
package_data={
2928
'smartloop.utils': ['templates/*.html'],

smartloop/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
# SOFTWARE.
2020

21-
__version__="1.3.1"
21+
__version__="1.3.2"

smartloop/app.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from email.mime import image
21
import sys
32
from typing import Annotated
43
import requests
@@ -14,26 +13,17 @@
1413
from rich.console import Console
1514
from signal import signal, SIGINT
1615
import pyfiglet
17-
from art import text2art
1816
from urllib.parse import urlparse
1917

20-
from PIL import Image
21-
from term_image.image import AutoImage
22-
2318
from smartloop.constants import endpoint, homedir, auth_server
24-
2519
from smartloop.cmd.projects import Projects
2620
from smartloop.utils import UserProfile
2721
from smartloop import services
2822

2923
from smartloop import __version__
3024

31-
# Example ASCII character set (from light to dark)
32-
ASCII_CHARS = [" ", ".", ":", "-", "=", "+", "*", "#", "%", "@"]
33-
3425
console = Console()
3526

36-
3727
def version_callback(value: bool):
3828
"""Callback for --version flag"""
3929
if value:

0 commit comments

Comments
 (0)