-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
143 changed files
with
739 additions
and
1,971 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,16 +11,16 @@ jobs: | |
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Verify existence of essential files | ||
uses: thebinaryfelix/[email protected] | ||
with: | ||
files: 'README.md, pyproject.toml, .gitignore, libs/agent_catalog_libs/cmd/, libs/agent_catalog_libs/core/, libs/agent_catalog_libs/tests/, libs/lc/agent_catalog_lc/, libs/lc/examples/' | ||
# - name: Verify existence of essential files | ||
# uses: thebinaryfelix/[email protected] | ||
# with: | ||
# files: 'README.md, pyproject.toml, .gitignore, libs/agentc_core/agentc_cli/, libs/agentc_core/agentc_core/, libs/agentc_core/tests/, libs/agentc_langchain/agentc_langchain/, libs/agentc_langchain/examples/' | ||
|
||
- name: Verify command file existence | ||
uses: thebinaryfelix/[email protected] | ||
with: | ||
files: 'libs/agent_catalog_libs/cmd/cmds/index.py, libs/agent_catalog_libs/cmd/cmds/publish.py, libs/agent_catalog_libs/cmd/cmds/version.py, libs/agent_catalog_libs/cmd/cmds/find.py, | ||
libs/agent_catalog_libs/cmd/cmds/clean.py, libs/agent_catalog_libs/cmd/cmds/env.py, libs/agent_catalog_libs/cmd/cmds/execute.py, libs/agent_catalog_libs/cmd/cmds/status.py, libs/agent_catalog_libs/cmd/cmds/util.py' | ||
# - name: Verify command file existence | ||
# uses: thebinaryfelix/[email protected] | ||
# with: | ||
# files: 'libs/agentc_core/agentc_cli/cmds/index.py, libs/agentc_core/agentc_cli/cmds/publish.py, libs/agentc_core/agentc_cli/cmds/version.py, libs/agentc_core/agentc_cli/cmds/find.py, | ||
# libs/agentc_core/agentc_cli/cmds/clean.py, libs/agentc_core/agentc_cli/cmds/env.py, libs/agentc_core/agentc_cli/cmds/execute.py, libs/agentc_core/agentc_cli/cmds/status.py, libs/agentc_core/agentc_cli/cmds/util.py' | ||
|
||
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." | ||
- name: Set up Python Poetry | ||
|
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 |
---|---|---|
@@ -1,5 +0,0 @@ | ||
# from libs.agent_catalog import * | ||
# from libs.agent_catalog_libs import * | ||
from libs.lc import audit | ||
|
||
__all__ = ["audit"] | ||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from agentc.auditor import Auditor | ||
from agentc.provider import Provider | ||
from agentc_core.tool.decorator import tool | ||
|
||
__all__ = [ | ||
"Provider", | ||
"Auditor", | ||
"tool", | ||
] |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
def main(): | ||
import agentc_cli | ||
|
||
# Note: all the CLI code currently resides in agentc_cli. | ||
agentc_cli.main() | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
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
File renamed without changes.
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
Oops, something went wrong.