├── .devcontainer └── devcontainer.json ├── .gitignore ├── .vscode └── launch.json ├── CNAME ├── README.md ├── deploy.py ├── docs ├── img │ ├── bot-name.png │ ├── bot-username.png │ ├── copy-token.png │ ├── create-instance.png │ ├── newbot.png │ └── search-botfather.png └── register-telegram-bot.md ├── homepage ├── index.css └── index.html ├── main.py ├── requirements.txt ├── src ├── __pycache__ │ └── api.cpython-38.pyc ├── agent │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── base.cpython-38.pyc │ ├── base.py │ ├── parser.py │ └── tools │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── image.cpython-38.pyc │ │ ├── reminder.cpython-38.pyc │ │ └── search.cpython-38.pyc │ │ ├── album_art.py │ │ ├── image.py │ │ ├── my_tool.py │ │ ├── reminder.py │ │ ├── search.py │ │ ├── selfie.py │ │ └── speech.py ├── api.py ├── personalities │ ├── __init__.py │ ├── angele.py │ ├── luna.py │ └── sacha.py └── prompts.py └── steamship.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | gptgirlfriend.online -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/README.md -------------------------------------------------------------------------------- /deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/deploy.py -------------------------------------------------------------------------------- /docs/img/bot-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/docs/img/bot-name.png -------------------------------------------------------------------------------- /docs/img/bot-username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/docs/img/bot-username.png -------------------------------------------------------------------------------- /docs/img/copy-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/docs/img/copy-token.png -------------------------------------------------------------------------------- /docs/img/create-instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/docs/img/create-instance.png -------------------------------------------------------------------------------- /docs/img/newbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/docs/img/newbot.png -------------------------------------------------------------------------------- /docs/img/search-botfather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/docs/img/search-botfather.png -------------------------------------------------------------------------------- /docs/register-telegram-bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/docs/register-telegram-bot.md -------------------------------------------------------------------------------- /homepage/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/homepage/index.css -------------------------------------------------------------------------------- /homepage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/homepage/index.html -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__pycache__/api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/__pycache__/api.cpython-38.pyc -------------------------------------------------------------------------------- /src/agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /src/agent/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /src/agent/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/base.py -------------------------------------------------------------------------------- /src/agent/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/parser.py -------------------------------------------------------------------------------- /src/agent/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/tools/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/tools/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /src/agent/tools/__pycache__/image.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/tools/__pycache__/image.cpython-38.pyc -------------------------------------------------------------------------------- /src/agent/tools/__pycache__/reminder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/tools/__pycache__/reminder.cpython-38.pyc -------------------------------------------------------------------------------- /src/agent/tools/__pycache__/search.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/tools/__pycache__/search.cpython-38.pyc -------------------------------------------------------------------------------- /src/agent/tools/album_art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/tools/album_art.py -------------------------------------------------------------------------------- /src/agent/tools/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/tools/image.py -------------------------------------------------------------------------------- /src/agent/tools/my_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/tools/my_tool.py -------------------------------------------------------------------------------- /src/agent/tools/reminder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/tools/reminder.py -------------------------------------------------------------------------------- /src/agent/tools/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/tools/search.py -------------------------------------------------------------------------------- /src/agent/tools/selfie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/tools/selfie.py -------------------------------------------------------------------------------- /src/agent/tools/speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/agent/tools/speech.py -------------------------------------------------------------------------------- /src/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/api.py -------------------------------------------------------------------------------- /src/personalities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/personalities/__init__.py -------------------------------------------------------------------------------- /src/personalities/angele.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/personalities/angele.py -------------------------------------------------------------------------------- /src/personalities/luna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/personalities/luna.py -------------------------------------------------------------------------------- /src/personalities/sacha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/personalities/sacha.py -------------------------------------------------------------------------------- /src/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/src/prompts.py -------------------------------------------------------------------------------- /steamship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAli-Code/GirlfriendGPT/HEAD/steamship.json --------------------------------------------------------------------------------