Skip to content

Commit

Permalink
chore: init basic viewmodel
Browse files Browse the repository at this point in the history
  • Loading branch information
oddlyspaced committed Aug 18, 2024
1 parent c839f58 commit 92e5b53
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.oddlyspaced.llama2test.viewmodel

import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.setValue
import androidx.lifecycle.ViewModel

/**
* @author : hardik
* @created : 18/08/24, Sunday
**/
class MainViewModel : ViewModel() {
var tokenFilePath: String? by mutableStateOf(null)
var modelFilePath: String? by mutableStateOf(null)
}

0 comments on commit 92e5b53

Please sign in to comment.