Skip to content

Commit

Permalink
add changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeantonio21 committed Sep 18, 2024
1 parent af3deb1 commit 1952a6e
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions atoma-vllm/src/sequence.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ pub struct Sequence {
/// Sequence Id,
sequence_id: u64,
/// Prompt
prompt: String,
pub prompt: String,
/// Prompt associated token ids
pub prompt_token_ids: Vec<u32>,
/// Sequence data
Expand All @@ -287,12 +287,6 @@ pub struct Sequence {
block_size: usize,
/// Logical token blocks
pub logical_token_blocks: Vec<LogicalTokenBlock>,
/// Prefix offset, used for incremental detokenization
#[allow(dead_code)]
prefix_offset: usize,
/// Read offset, used for incremental detokenization
#[allow(dead_code)]
read_offset: usize,
/// Output generated text
pub output_text: String,
/// List of all possible mappings from each generated output id to its `LogProb`
Expand Down

0 comments on commit 1952a6e

Please sign in to comment.