mishig HF staff commited on
Commit
ca3d512
1 Parent(s): 4029c63

fix import type { Conversation }

Browse files
src/lib/components/InferencePlayground/InferencePlaygroundConversation.svelte CHANGED
@@ -1,5 +1,5 @@
1
  <script lang="ts">
2
- import type { Conversation } from "$lib/types";
3
 
4
  import { createEventDispatcher } from "svelte";
5
 
 
1
  <script lang="ts">
2
+ import type { Conversation } from "$lib/components/InferencePlayground/types";
3
 
4
  import { createEventDispatcher } from "svelte";
5
 
src/lib/components/InferencePlayground/InferencePlaygroundGenerationConfig.svelte CHANGED
@@ -1,5 +1,5 @@
1
  <script lang="ts">
2
- import type { Conversation } from "$lib/types";
3
 
4
  import { GENERATION_CONFIG_KEYS, GENERATION_CONFIG_SETTINGS } from "./generationConfigSettings";
5
 
 
1
  <script lang="ts">
2
+ import type { Conversation } from "$lib/components/InferencePlayground/types";
3
 
4
  import { GENERATION_CONFIG_KEYS, GENERATION_CONFIG_SETTINGS } from "./generationConfigSettings";
5