LVKinyanjui commited on
Commit
98e42d1
·
1 Parent(s): 8b66575

Fixed import issues

Browse files
Files changed (2) hide show
  1. inference_main.py +1 -1
  2. ollama_inference.py +1 -1
inference_main.py CHANGED
@@ -1,5 +1,5 @@
1
  import streamlit as st
2
- from modules.inference.llama3_1_8b_instruct import infer
3
 
4
  st.write("## Ask your Local LLM")
5
  text_input = st.text_input("Query", value="Why is the sky Blue")
 
1
  import streamlit as st
2
+ from modules.inference.instruct import infer
3
 
4
  st.write("## Ask your Local LLM")
5
  text_input = st.text_input("Query", value="Why is the sky Blue")
ollama_inference.py CHANGED
@@ -1,5 +1,5 @@
1
  import streamlit as st
2
- from modules.ollama_sum_refine import refine
3
 
4
  st.write("### Get an Ollama Response ✨")
5
 
 
1
  import streamlit as st
2
+ from modules.common.ollama_sum_refine import refine
3
 
4
  st.write("### Get an Ollama Response ✨")
5