repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | # Variables |
| #2 | PYTHON := python3 |
| #3 | PIP := $(PYTHON) -m pip |
| #4 | PROJECT_NAME := embedchain |
| #5 | |
| #6 | # Targets |
| #7 | .PHONY: install format lint clean test ci_lint ci_test coverage |
| #8 | |
| #9 | install: |
| #10 | poetry install |
| #11 | |
| #12 | # TODO: use a more efficient way to install these packages |
| #13 | install_all: |
| #14 | poetry install --all-extras |
| #15 | poetry run pip install ruff==0.6.9 pinecone-text pinecone-client langchain-anthropic "unstructured[local-inference, all-docs]" ollama langchain_together==0.1.3 \ |
| #16 | langchain_cohere==0.1.5 deepgram-sdk==3.2.7 langchain-huggingface psutil clarifai==10.0.1 flask==2.3.3 twilio==8.5.0 fastapi-poe==0.0.16 discord==2.3.2 \ |
| #17 | slack-sdk==3.21.3 huggingface_hub==0.23.0 gitpython==3.1.38 yt_dlp==2023.11.14 PyGithub==1.59.1 feedparser==6.0.10 newspaper3k==0.2.8 listparser==0.19 \ |
| #18 | modal==0.56.4329 dropbox==11.36.2 boto3==1.34.20 youtube-transcript-api==0.6.1 pytube==15.0.0 beautifulsoup4==4.12.3 |
| #19 | |
| #20 | install_es: |
| #21 | poetry install --extras elasticsearch |
| #22 | |
| #23 | install_opensearch: |
| #24 | poetry install --extras opensearch |
| #25 | |
| #26 | install_milvus: |
| #27 | poetry install --extras milvus |
| #28 | |
| #29 | shell: |
| #30 | poetry shell |
| #31 | |
| #32 | py_shell: |
| #33 | poetry run python |
| #34 | |
| #35 | format: |
| #36 | $(PYTHON) -m black . |
| #37 | $(PYTHON) -m isort . |
| #38 | |
| #39 | clean: |
| #40 | rm -rf dist build *.egg-info |
| #41 | |
| #42 | lint: |
| #43 | poetry run ruff . |
| #44 | |
| #45 | build: |
| #46 | poetry build |
| #47 | |
| #48 | publish: |
| #49 | poetry publish |
| #50 | |
| #51 | # for example: make test file=tests/test_factory.py |
| #52 | test: |
| #53 | poetry run pytest $(file) |
| #54 | |
| #55 | coverage: |
| #56 | poetry run pytest --cov=$(PROJECT_NAME) --cov-report=xml |
| #57 |