-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: track framework usage and log to slack
- Loading branch information
1 parent
cfa33ca
commit 9d5e02a
Showing
13 changed files
with
29 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ def resolve_paths(*paths): | |
|
||
setup( | ||
name="composio_autogen", | ||
version="0.1.50", | ||
version="0.1.54", | ||
author="Sawradip", | ||
author_email="[email protected]", | ||
description="Use Composio to get an array of tools with your Autogen agent.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ def run(self): | |
|
||
setup( | ||
name="composio_core", | ||
version="0.1.50", | ||
version="0.1.54", | ||
author="Utkarsh", | ||
author_email="[email protected]", | ||
description="Core package to act as a bridge between composio platform and other services.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
composio_langchain===0.1.50 | ||
composio_langchain===0.1.54 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ def resolve_paths(*paths): | |
|
||
setup( | ||
name="composio_crewai", | ||
version="0.1.50", | ||
version="0.1.54", | ||
author="Himanshu", | ||
author_email="[email protected]", | ||
description="Use Composio to get an array of tools with your CrewAI agent.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ def resolve_paths(*paths): | |
|
||
setup( | ||
name="composio_langchain", | ||
version="0.1.50", | ||
version="0.1.54", | ||
author="Karan", | ||
author_email="[email protected]", | ||
description="Use Composio to get an array of tools with your LangChain agent.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
from composio import Composio, TestIntegration | ||
from composio_langchain import ComposioToolset | ||
import json | ||
from typing import Sequence, List | ||
|
||
sdk_instance = Composio("7gvfr8u5jqp8v5h1v9dpg4") | ||
github_integration = sdk_instance.get_integration(TestIntegration.GITHUB) | ||
connection_request = github_integration.initiate_connection(user_uuid="karan") | ||
print("Connection request", connection_request.redirectUrl) | ||
connected_account = connection_request.wait_until_active(timeout=60) | ||
from llama_index.llms.openai import OpenAI | ||
from llama_index.core.llms import ChatMessage | ||
from llama_index.core.tools import BaseTool, FunctionTool | ||
|
||
print(sdk_instance.get_connected_accounts(user_uuid=["karan"])) | ||
import nest_asyncio | ||
|
||
nest_asyncio.apply() |