-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dataherald] Release latest changes Sep 27th (#185)
- Loading branch information
1 parent
70c96f5
commit f6404ab
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule dataherald
updated
20 files
+51 −0 | README.md | |
+25 −0 | dataherald/api/__init__.py | |
+72 −6 | dataherald/api/fastapi.py | |
+2 −2 | dataherald/context_store/__init__.py | |
+17 −4 | dataherald/context_store/default.py | |
+8 −1 | dataherald/db/__init__.py | |
+14 −3 | dataherald/db/mongo.py | |
+10 −1 | dataherald/db_scanner/__init__.py | |
+22 −11 | dataherald/db_scanner/sqlalchemy.py | |
+52 −0 | dataherald/repositories/instructions.py | |
+60 −0 | dataherald/server/fastapi/__init__.py | |
+49 −12 | dataherald/sql_generator/dataherald_sqlagent.py | |
+15 −1 | dataherald/tests/db/test_db.py | |
+14 −0 | dataherald/types.py | |
+47 −0 | docs/api.add_instructions.rst | |
+39 −0 | docs/api.delete_instructions.rst | |
+43 −0 | docs/api.list_instructions.rst | |
+24 −1 | docs/api.rst | |
+54 −0 | docs/api.update_instructions.rst | |
+3 −3 | docs/context_store.rst |