├── .gitignore ├── LICENSE ├── README.md ├── agents ├── Assistant │ └── Assistant.json ├── Chef │ └── Chef.json ├── Investor │ └── Investor.json └── Therapist │ └── Therapist.json ├── chat.py ├── config.json ├── credentials.json (template) ├── requirements.txt ├── task.py └── utils ├── browsing.py ├── operative_creator.py ├── utils.py └── whisper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/README.md -------------------------------------------------------------------------------- /agents/Assistant/Assistant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/agents/Assistant/Assistant.json -------------------------------------------------------------------------------- /agents/Chef/Chef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/agents/Chef/Chef.json -------------------------------------------------------------------------------- /agents/Investor/Investor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/agents/Investor/Investor.json -------------------------------------------------------------------------------- /agents/Therapist/Therapist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/agents/Therapist/Therapist.json -------------------------------------------------------------------------------- /chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/chat.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/config.json -------------------------------------------------------------------------------- /credentials.json (template): -------------------------------------------------------------------------------- 1 | { 2 | "OPENAI_API_KEY": "sk-" 3 | } -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/requirements.txt -------------------------------------------------------------------------------- /task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/task.py -------------------------------------------------------------------------------- /utils/browsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/utils/browsing.py -------------------------------------------------------------------------------- /utils/operative_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/utils/operative_creator.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avocardio/GPT-agents/HEAD/utils/whisper.py --------------------------------------------------------------------------------