├── .gitignore ├── LICENSE ├── README.md ├── m3_server.py ├── requirements.txt └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetm4st3r/baai_m3_simple_server/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetm4st3r/baai_m3_simple_server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetm4st3r/baai_m3_simple_server/HEAD/README.md -------------------------------------------------------------------------------- /m3_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetm4st3r/baai_m3_simple_server/HEAD/m3_server.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | flagembedding 3 | uvicorn 4 | -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetm4st3r/baai_m3_simple_server/HEAD/test.sh --------------------------------------------------------------------------------