├── .env.template ├── .gitignore ├── README.md ├── agent.py ├── assets ├── image-2.png ├── image-4.png └── image-5.png ├── environment.yml ├── multi_agent_example.py ├── requirements.txt └── single_agent_example.py /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexo-ai/agent-from-scratch/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexo-ai/agent-from-scratch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexo-ai/agent-from-scratch/HEAD/README.md -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexo-ai/agent-from-scratch/HEAD/agent.py -------------------------------------------------------------------------------- /assets/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexo-ai/agent-from-scratch/HEAD/assets/image-2.png -------------------------------------------------------------------------------- /assets/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexo-ai/agent-from-scratch/HEAD/assets/image-4.png -------------------------------------------------------------------------------- /assets/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexo-ai/agent-from-scratch/HEAD/assets/image-5.png -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexo-ai/agent-from-scratch/HEAD/environment.yml -------------------------------------------------------------------------------- /multi_agent_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexo-ai/agent-from-scratch/HEAD/multi_agent_example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexo-ai/agent-from-scratch/HEAD/requirements.txt -------------------------------------------------------------------------------- /single_agent_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexo-ai/agent-from-scratch/HEAD/single_agent_example.py --------------------------------------------------------------------------------