Skip to content

Commit

Permalink
Merge branch 'master' into feat/connection-id-filter
Browse files Browse the repository at this point in the history
  • Loading branch information
utkarsh-dixit authored May 2, 2024
2 parents 5041ece + 835d526 commit a8ce195
Show file tree
Hide file tree
Showing 31 changed files with 976 additions and 386 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,19 @@ build:

.PHONY: publish
publish: dist
twine upload dist/* && \
twine upload dist/* --username token --password "$$PYPI_PASSWORD" && \
for dir in plugins/*; do \
if [ -d "$$dir" ]; then \
twine upload "$$dir"/dist/*; \
fi \
twine upload "$$dir"/dist/* --username token --password "$$PYPI_PASSWORD"; \
fi; \
done

.PHONY: test-publish
test-publish: dist
twine upload --repository testpypi dist/* && \
twine upload --repository testpypi dist/* --username token --password "$$PYPI_PASSWORD" && \
for dir in plugins/*; do \
if [ -d "$$dir" ]; then \
twine upload --repository testpypi "$$dir"/dist/*; \
twine upload --repository testpypi "$$dir"/dist/* --username token --password "$$PYPI_PASSWORD"; \
fi \
done

Expand Down
4 changes: 3 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,6 @@ crewai = "^0.28.8"
pyautogen = "^0.2.26"
langchain = "^0.1.16"
lyzr = "^0.1.5"

semver = "^3.0.2"
build = "^1.2.1"
setuptools = "^69.5.1"
5 changes: 3 additions & 2 deletions composio/sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from .core import ComposioCore, FrameworkEnum
from .enums import Tag
from .sdk import Composio, SchemaFormat
from .sdk import Composio, SchemaFormat, format_schema

__all__ = (
"Tag",
"Composio",
"ComposioCore",
"Tag",
"format_schema",
"FrameworkEnum",
"SchemaFormat",
"Tag",
Expand Down
3 changes: 3 additions & 0 deletions composio/sdk/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ class FrameworkEnum(Enum):
AUTOGEN = "autogen"
LANGCHAIN = "langchain"
LYZR = "lyzr"
CREWAI = "crewai"
JULEP = "julep"
OPENAI = "openai"


__IS_FIRST_TIME__ = True
Expand Down
Loading

0 comments on commit a8ce195

Please sign in to comment.