Skip to content
This repository was archived by the owner on Apr 12, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions freestream/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .pages.utils.styles import footer
2 changes: 1 addition & 1 deletion freestream/pages/1_🤖_RAGbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from langchain_google_genai import ChatGoogleGenerativeAI
from langchain_anthropic import ChatAnthropic
from langchain_openai import ChatOpenAI
from pages.utils import (
from pages import (
PrintRetrievalHandler,
StreamHandler,
RetrieveDocuments,
Expand Down
2 changes: 1 addition & 1 deletion freestream/pages/2_🖼️_Image_Upscaler.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os

import streamlit as st
from pages.utils import image_upscaler, footer
from pages import image_upscaler, footer

# Set expandable_segments
os.environ["PYTORCH_CUDA_ALLOC_CONF"] = "expandable_segments:True"
Expand Down
7 changes: 7 additions & 0 deletions freestream/pages/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from .utils import (
PrintRetrievalHandler,
RetrieveDocuments,
StreamHandler,
footer,
set_llm,
)
2 changes: 1 addition & 1 deletion freestream/🏡_Home.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import streamlit as st

from freestream.pages.utils import footer
from freestream import footer

st.set_page_config(page_title="FreeStream: Unlimited Access to AI Tools", page_icon="🏡")

Expand Down