Skip to content

Commit 2b7394f

Browse files
authored
Merge pull request #10 from VectifyAI/bugfix/compile-clean
feat: compile pipeline, query agent, and multimodal improvements
2 parents 48304e0 + bd5f2fb commit 2b7394f

26 files changed

Lines changed: 2091 additions & 876 deletions

.github/workflows/publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ on:
88
jobs:
99
publish:
1010
runs-on: ubuntu-latest
11+
environment: pypi
1112
permissions:
1213
id-token: write
1314
steps:
14-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.2.2
1516

16-
- uses: actions/setup-python@v5
17+
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
1718
with:
1819
python-version: "3.12"
1920

@@ -24,4 +25,4 @@ jobs:
2425
run: python -m build
2526

2627
- name: Publish to PyPI
27-
uses: pypa/gh-action-pypi-publish@release/v1
28+
uses: pypa/gh-action-pypi-publish@fb13cb306901256ace3dab689990e13a5550ffaa # release/v1.11.0

openkb/__main__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
"""Allow running OpenKB as ``python -m openkb``."""
2+
from openkb.cli import cli
3+
4+
cli()

0 commit comments

Comments
 (0)