Instructions to use BACCHUS45/Potex with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Adapters
How to use BACCHUS45/Potex with Adapters:
from adapters import AutoAdapterModel model = AutoAdapterModel.from_pretrained("undefined") model.load_adapter("BACCHUS45/Potex", set_active=True) - Notebooks
- Google Colab
- Kaggle
File size: 569 Bytes
390e407 986ff7f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | {
"name": "integral-apollo-server",
"version": "0.1.0",
"main": "src/index.js",
"scripts": { "start": "node src/index.js" },
"dependencies": {
"apollo-server": "^3.11.1",
"graphql": "^16.6.0",
"pg": "^8.11.0",
"ioredis": "^5.3.2",
"graphql-redis-subscriptions": "^3.1.0",
"uuid": "^9.0.0",
"dotenv": "^16.0.3"
}
}
Use the schema.js, resolvers.js, db.js, and pubsub.js from the earlier Apollo canvas doc. They are designed to work inside this container and to connect to postgres and redis service names defined in docker-compose. |