Skip to content

Commit

Permalink
RDISCROWD-7778 update LLM (#480)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkle authored Nov 27, 2024
1 parent 78759b6 commit 97b295d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@
</template>

<script>
import { mapMutations, mapState } from 'vuex';
import '../../../../../css/component_builder.css';
import * as types from '../../store/types';
import { mapMutations, mapState } from 'vuex';
export default {
name: 'AssistantLLMForm',
data () {
Expand All @@ -191,7 +191,7 @@ export default {
"seed": null,
"frequency_penalty": 0.0
}`,
modelOptions: { 'MIXTRAL-8x7B-INSTRUCT': 'mixtral-8x7b-instruct' },
modelOptions: { 'MISTRAL-NEMO-INSTRUCT': 'mistral-nemo-instruct' },
EditableOptions: {
'Response': 'response',
'Prompt': 'prompt',
Expand Down
4 changes: 2 additions & 2 deletions static/src/components/builder/store/modules/assistantLLM.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as types from '../types';
import utils from '../../utils';
import * as types from '../types';

const initialState = () => {
return {
Expand All @@ -14,7 +14,7 @@ const initialState = () => {
},
promptSourceType: 'variable',
useStaticPromptPreview: false,
model: 'mixtral-8x7b-instruct',
model: 'mistral-nemo-instruct',
modelParams: '',
pybAnswer: '',
editable: 'none',
Expand Down

0 comments on commit 97b295d

Please sign in to comment.