From f7a81b22bdfb34984be0fcc7501bed574fa12132 Mon Sep 17 00:00:00 2001 From: Christopher Gerber Date: Tue, 5 Nov 2024 22:33:47 -0800 Subject: [PATCH] second pass implementing twitter post text --- .../actions/social/__init__.py | 0 twitter-langchain/Makefile | 23 +++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 cdp-agentkit-core/cdp_agentkit_core/actions/social/__init__.py create mode 100644 twitter-langchain/Makefile diff --git a/cdp-agentkit-core/cdp_agentkit_core/actions/social/__init__.py b/cdp-agentkit-core/cdp_agentkit_core/actions/social/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/twitter-langchain/Makefile b/twitter-langchain/Makefile new file mode 100644 index 000000000..8880a80f7 --- /dev/null +++ b/twitter-langchain/Makefile @@ -0,0 +1,23 @@ +.PHONY: format +format: + ruff format . + +.PHONY: lint +lint: + ruff check . + +.PHONY: lint-fix +lint-fix: + ruff check . --fix + +.PHONY: docs +docs: + sphinx-apidoc -f -o ./docs ./cdp_langchain + +.PHONY: local-docs +local-docs: docs + cd docs && make html && open ./_build/html/index.html + +.PHONY: test +test: + pytest