-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 928 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
project_urls = {
'Github': 'https://github.com/ElmiraGhorbani/dynamic_prompting',
}
setup(
name='dynamic_prompting',
version='0.2.6',
author='Elmira Ghorbani',
description="Dynamic Few-Shot Prompting is a Python package that dynamically selects N samples that are contextually close to the user's task or query from a knowledge base (similar to RAG) to include in the prompt.",
packages=find_packages(),
install_requires=[
'einops==0.8.0',
'sentence-transformers==3.0.1',
'torch==2.2.1',
'transformers==4.41.1',
'meta-llama3==0.0.1',
'pandas==2.2.2'
],
project_urls=project_urls,
long_description=long_description,
long_description_content_type='text/markdown'
)