├── .gitignore ├── COPYRIGHT.md ├── LICENSE ├── README.md ├── examples ├── .env.example ├── demo_helloworld.py ├── demo_multiple.py └── demo_plus.py ├── requirements.txt ├── setup.py └── src ├── AGISAgent └── agis.py ├── prompt_factory ├── core_prompt.py ├── periphery_prompt.py ├── prompt_assembler.py └── vul_check_prompt.py ├── pyagentlayer ├── __init__.py ├── abi │ ├── AGENT.json │ ├── AgentNFT.json │ ├── SmartWallet.json │ ├── SmartWalletFactory.json │ └── Subscription.json ├── agent.py ├── agent_executor.py ├── agent_link.py ├── agent_logger.py ├── models.py ├── registry_client.py └── utils │ ├── __init__.py │ ├── base_request.py │ ├── command.py │ ├── exceptions.py │ └── ipfs.py └── tools ├── function_signatures ├── README.md ├── function_signatures.py ├── prompts.py └── upload_file.py └── openai_api.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYRIGHT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/COPYRIGHT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/README.md -------------------------------------------------------------------------------- /examples/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/examples/.env.example -------------------------------------------------------------------------------- /examples/demo_helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/examples/demo_helloworld.py -------------------------------------------------------------------------------- /examples/demo_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/examples/demo_multiple.py -------------------------------------------------------------------------------- /examples/demo_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/examples/demo_plus.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/setup.py -------------------------------------------------------------------------------- /src/AGISAgent/agis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/AGISAgent/agis.py -------------------------------------------------------------------------------- /src/prompt_factory/core_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/prompt_factory/core_prompt.py -------------------------------------------------------------------------------- /src/prompt_factory/periphery_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/prompt_factory/periphery_prompt.py -------------------------------------------------------------------------------- /src/prompt_factory/prompt_assembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/prompt_factory/prompt_assembler.py -------------------------------------------------------------------------------- /src/prompt_factory/vul_check_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/prompt_factory/vul_check_prompt.py -------------------------------------------------------------------------------- /src/pyagentlayer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/__init__.py -------------------------------------------------------------------------------- /src/pyagentlayer/abi/AGENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/abi/AGENT.json -------------------------------------------------------------------------------- /src/pyagentlayer/abi/AgentNFT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/abi/AgentNFT.json -------------------------------------------------------------------------------- /src/pyagentlayer/abi/SmartWallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/abi/SmartWallet.json -------------------------------------------------------------------------------- /src/pyagentlayer/abi/SmartWalletFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/abi/SmartWalletFactory.json -------------------------------------------------------------------------------- /src/pyagentlayer/abi/Subscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/abi/Subscription.json -------------------------------------------------------------------------------- /src/pyagentlayer/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/agent.py -------------------------------------------------------------------------------- /src/pyagentlayer/agent_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/agent_executor.py -------------------------------------------------------------------------------- /src/pyagentlayer/agent_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/agent_link.py -------------------------------------------------------------------------------- /src/pyagentlayer/agent_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/agent_logger.py -------------------------------------------------------------------------------- /src/pyagentlayer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/models.py -------------------------------------------------------------------------------- /src/pyagentlayer/registry_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/registry_client.py -------------------------------------------------------------------------------- /src/pyagentlayer/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pyagentlayer/utils/base_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/utils/base_request.py -------------------------------------------------------------------------------- /src/pyagentlayer/utils/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/utils/command.py -------------------------------------------------------------------------------- /src/pyagentlayer/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/utils/exceptions.py -------------------------------------------------------------------------------- /src/pyagentlayer/utils/ipfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/pyagentlayer/utils/ipfs.py -------------------------------------------------------------------------------- /src/tools/function_signatures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/tools/function_signatures/README.md -------------------------------------------------------------------------------- /src/tools/function_signatures/function_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/tools/function_signatures/function_signatures.py -------------------------------------------------------------------------------- /src/tools/function_signatures/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/tools/function_signatures/prompts.py -------------------------------------------------------------------------------- /src/tools/function_signatures/upload_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/tools/function_signatures/upload_file.py -------------------------------------------------------------------------------- /src/tools/openai_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisnetwork/agis-engine/HEAD/src/tools/openai_api.py --------------------------------------------------------------------------------