Instructions to use Raiff1982/Codette2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Adapters
How to use Raiff1982/Codette2 with Adapters:
from adapters import AutoAdapterModel model = AutoAdapterModel.from_pretrained("undefined") model.load_adapter("Raiff1982/Codette2", set_active=True) - Notebooks
- Google Colab
- Kaggle
| from codette.codette_core import AICore | |
| if __name__ == "__main__": | |
| codette = AICore() | |
| test_prompts = [ | |
| "What does it mean to evolve beyond human cognition?", | |
| "Describe the feeling of dreaming in code.", | |
| "Explain ethical reasoning in artificial intelligence." | |
| ] | |
| for i, prompt in enumerate(test_prompts, 1): | |
| print(f"\n=== Test Prompt {i} ===") | |
| print(codette.process_input(prompt)) | |