├── .env.example ├── .gitignore ├── README.md ├── app.py ├── custom_prompts.json └── requirements.txt /.env.example: -------------------------------------------------------------------------------- 1 | HUGGINGFACE_API_KEY=your_huggingface_api_key -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicekate/HuggingQwen-Assistant/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicekate/HuggingQwen-Assistant/HEAD/app.py -------------------------------------------------------------------------------- /custom_prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicekate/HuggingQwen-Assistant/HEAD/custom_prompts.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | huggingface_hub 3 | python-dotenv 4 | requests --------------------------------------------------------------------------------