Skip to content

Feature/105 add setup clickhouse prompt dir #106

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ AWS_BEDROCK_EMBEDDING_MODEL=amazon.titan-embed-text-v2:0
# EMBEDDING_PROVIDER='huggingface'
# HUGGING_FACE_EMBEDDING_REPO_ID=
# HUGGING_FACE_EMBEDDING_MODEL=

# HUGGING_FACE_EMBEDDING_API_TOKEN=

DATAHUB_SERVER = 'http://-.-.-.-:-'
Expand Down Expand Up @@ -131,4 +132,5 @@ DATAHUB_SERVER = 'http://-.-.-.-:-'

# sqlite
# DB_TYPE=sqlite
# SQLITE_PATH=./data/sqlite.db
# SQLITE_PATH=./data/sqlite.db

8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
pip 또는 Python 배포 도구들이 이 정보를 바탕으로 설치를 수행합니다.
"""

import os
import glob
from setuptools import find_packages, setup

from version import __version__
Expand Down Expand Up @@ -41,7 +43,11 @@ def load_requirements(path="requirements.txt"):
description="Lang2SQL - Query Generator for Data Warehouse",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
packages=find_packages() + ["prompt"],
include_package_data=False,
package_data={
"prompt": ["*.md"],
},
install_requires=requirements,
entry_points={
"console_scripts": [
Expand Down