Skip to content
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

Introduce LLM-based single-table model. #129

Merged
merged 38 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
26b5c71
Introduce SingleTableGPTModel
MooooCat Jan 26, 2024
08480df
Update init
MooooCat Jan 29, 2024
90d6604
Update SingleTableGPT.py
MooooCat Jan 29, 2024
8767c08
Update SingleTableGPT.py
MooooCat Jan 29, 2024
0ab296f
Create test_singletableGPT.py
MooooCat Jan 30, 2024
65b098d
Update SingleTableGPT.py
MooooCat Jan 30, 2024
5d2990c
Update SingleTableGPT.py
MooooCat Jan 30, 2024
a2e4fdc
Update SingleTableGPT.py
MooooCat Jan 31, 2024
5d6d73f
Update test_singletableGPT.py
MooooCat Jan 31, 2024
0dd724c
Improve code formatting
MooooCat Jan 31, 2024
61a5888
update testcases
MooooCat Jan 31, 2024
fd361d2
Update SingleTableGPT.py
MooooCat Jan 31, 2024
43d6d6b
Update SingleTableGPT.py
MooooCat Jan 31, 2024
e6eb018
add more test cases
MooooCat Jan 31, 2024
9870b0a
add testcases
MooooCat Jan 31, 2024
6b7681f
bugfix: pd.df initialize
MooooCat Jan 31, 2024
9627c13
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 31, 2024
7e3b8d3
Merge branch 'main' into feature-LLM-models
MooooCat Jan 31, 2024
73d4992
add dependencies
MooooCat Jan 31, 2024
2931250
update dependency
MooooCat Jan 31, 2024
ac5a64f
fix typo
MooooCat Jan 31, 2024
495a4d4
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 31, 2024
5664215
add comments
MooooCat Feb 1, 2024
54abf71
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 1, 2024
fc7e8ed
add test cases
MooooCat Feb 1, 2024
449e512
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 1, 2024
d84ecb2
enable get API_key from env
MooooCat Feb 1, 2024
44ae29e
add testcases
MooooCat Feb 1, 2024
b259a33
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 1, 2024
9721936
Merge branch 'main' into feature-LLM-models
MooooCat Feb 12, 2024
a41d1b3
use snakecase on filename
MooooCat Feb 20, 2024
ce1b7bb
use snakecase for filenames
MooooCat Feb 20, 2024
c7fb325
add logs. correct function name.
MooooCat Feb 20, 2024
5abf052
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 20, 2024
ca7d247
Merge branch 'main' into feature-LLM-models
MooooCat Feb 20, 2024
a5a69db
Split single_table.gpt model to base class
MooooCat Feb 20, 2024
4f024a7
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 20, 2024
a043c5c
fix typo
MooooCat Feb 20, 2024
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
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ dependencies = [
"pydantic>=2",
"cloudpickle",
"importlib_metadata",
"openai>=1.10.0",
]
dynamic = ["version"]
classifiers = [
Expand Down
1 change: 1 addition & 0 deletions sdgx/models/LLM/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import single_table
Loading
Loading