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 sources15d ago| #1 | .PHONY: format sort lint |
| #2 | |
| #3 | # Variables |
| #4 | ISORT_OPTIONS = --profile black |
| #5 | PROJECT_NAME := mem0ai |
| #6 | |
| #7 | # Default target |
| #8 | all: format sort lint |
| #9 | |
| #10 | install: |
| #11 | hatch env create |
| #12 | |
| #13 | install_all: |
| #14 | pip install ruff==0.6.9 groq together boto3 litellm ollama chromadb weaviate weaviate-client sentence_transformers vertexai \ |
| #15 | google-generativeai elasticsearch opensearch-py vecs "pinecone<7.0.0" pinecone-text faiss-cpu langchain-community \ |
| #16 | upstash-vector azure-search-documents langchain-memgraph langchain-neo4j langchain-aws rank-bm25 pymochow pymongo psycopg kuzu databricks-sdk valkey |
| #17 | |
| #18 | # Format code with ruff |
| #19 | format: |
| #20 | hatch run format |
| #21 | |
| #22 | # Sort imports with isort |
| #23 | sort: |
| #24 | hatch run isort mem0/ |
| #25 | |
| #26 | # Lint code with ruff |
| #27 | lint: |
| #28 | hatch run lint |
| #29 | |
| #30 | docs: |
| #31 | cd docs && mintlify dev |
| #32 | |
| #33 | build: |
| #34 | hatch build |
| #35 | |
| #36 | publish: |
| #37 | hatch publish |
| #38 | |
| #39 | clean: |
| #40 | rm -rf dist |
| #41 | |
| #42 | test: |
| #43 | hatch run test |
| #44 | |
| #45 | test-py-3.9: |
| #46 | hatch run dev_py_3_9:test |
| #47 | |
| #48 | test-py-3.10: |
| #49 | hatch run dev_py_3_10:test |
| #50 | |
| #51 | test-py-3.11: |
| #52 | hatch run dev_py_3_11:test |
| #53 | |
| #54 | test-py-3.12: |
| #55 | hatch run dev_py_3_12:test |
| #56 |