Chaiverse
  • Welcome to Chaiverse!
  • Quick Start
  • Prompting Guide
  • Rewards model
  • Blending Models
  • Getting Feedback
  • Talking to your model
  • Deactivating your Model
  • Leaderboard
  • 🤑Model Competition
  • How everything Works
    • 🤑Model Competition Explained
    • Rewards Model Explained
    • Prompt Guiding Explained
    • What we do with your model
Powered by GitBook
On this page
  • See your submissions by:
  • Deactivate a single model by
  • Deactivate all your models

Deactivating your Model

Need to deactivate your model? You are at the perfect place!

See your submissions by:

submission_ids = chai.get_my_submissions()
print(submission_ids)

Deactivate a single model by

chai.deactivate_model(submission_id)

Deactivate all your models

for sub_id, status in submission_ids.items():
    if status in ['deployed']:
        chai.deactivate_model(sub_id)

PreviousTalking to your modelNextLeaderboard

Last updated 1 year ago