This repository was archived by the owner on Jul 22, 2025. It is now read-only.
  
  
  
            
  
    
      generated from discourse/discourse-plugin-skeleton
    
        
        - 
                Notifications
    You must be signed in to change notification settings 
- Fork 41
DEV: Move tokenizers to a gem #1481
          
     Merged
      
      
    
  
     Merged
                    Changes from 5 commits
      Commits
    
    
            Show all changes
          
          
            6 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      3a6755b
              
                DEV: Move tokenizers to a gem
              
              
                xfalcox 19c59d9
              
                missing mixtral reference
              
              
                xfalcox 9f77d1c
              
                Tokenizers/Tokenizer
              
              
                xfalcox e8edc0b
              
                Migration for Mistral tokenizer rename
              
              
                xfalcox 7561337
              
                Bump tokenizers gem
              
              
                xfalcox 5fefda0
              
                Update db/migrate/20250702073222_rename_mixtral_tokenizer_to_mistral_…
              
              
                xfalcox File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
        
          
          
            43 changes: 43 additions & 0 deletions
          
          43 
        
  db/migrate/20250702073222_rename_mixtral_tokenizer_to_mistral_tokenizer.rb
  
  
      
      
   
        
      
      
    
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| # frozen_string_literal: true | ||
|  | ||
| class RenameMixtralTokenizerToMistralTokenizer < ActiveRecord::Migration[7.2] | ||
| def up | ||
| execute <<~SQL | ||
| UPDATE | ||
| llm_models | ||
| SET | ||
| tokenizer = 'DiscourseAi::Tokenizer::Mistral' | ||
| WHERE | ||
| tokenizer = 'DiscourseAi::Tokenizer::Mixtral' | ||
| SQL | ||
|  | ||
| execute <<~SQL | ||
| UPDATE | ||
| embedding_definitions | ||
| SET | ||
| tokenizer_class = 'DiscourseAi::Tokenizer::Mistral' | ||
| WHERE | ||
| tokenizer_class = 'DiscourseAi::Tokenizer::Mistral' | ||
| SQL | ||
| end | ||
|  | ||
| def down | ||
| execute <<~SQL | ||
| UPDATE | ||
| llm_models | ||
| SET | ||
| tokenizer = 'DiscourseAi::Tokenizer::Mixtral' | ||
| WHERE | ||
| tokenizer = 'DiscourseAi::Tokenizer::Mistral' | ||
| SQL | ||
|  | ||
| execute <<~SQL | ||
| UPDATE | ||
| embedding_definitions | ||
| SET | ||
| tokenizer_class = 'DiscourseAi::Tokenizer::Mixtral' | ||
| WHERE | ||
| tokenizer_class = 'DiscourseAi::Tokenizer::Mistral' | ||
|         
                  xfalcox marked this conversation as resolved.
              Show resolved
            Hide resolved | ||
| SQL | ||
| end | ||
| end | ||
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              This file was deleted.
      
      Oops, something went wrong.
      
    
  This file was deleted.
      
      Oops, something went wrong.
      
    
  This file was deleted.
      
      Oops, something went wrong.
      
    
  This file was deleted.
      
      Oops, something went wrong.
      
    
  This file was deleted.
      
      Oops, something went wrong.
      
    
  This file was deleted.
      
      Oops, something went wrong.
      
    
  This file was deleted.
      
      Oops, something went wrong.
      
    
  This file was deleted.
      
      Oops, something went wrong.
      
    
  
      
      Oops, something went wrong.
        
    
  
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.