-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from Daethyra/3.0.0-mpa
Multi-Page Application
- Loading branch information
Showing
7 changed files
with
127 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import streamlit as st | ||
|
||
st.set_page_config( | ||
page_title="FreeStream: Unlimited Access to AI Tools", | ||
page_icon="🏡" | ||
) | ||
|
||
st.title(":rainbow[FreeStream]") | ||
st.header(":green[_Unlimited Access to AI Tools_]", divider="red") | ||
# Project Overview | ||
st.subheader("What is FreeStream?") | ||
st.write( | ||
""" | ||
FreeStream is a project I'm working on to make AI tools more accessible. It's not just about having a chatbot; it's about exploring how AI can help us in our daily lives, today and in the future. Here's what you can do with FreeStream: | ||
* **Explore AI Tools:** Dive into a wide range of AI tools, from chatbots to document analysis, to discover what's possible. | ||
* **Educate Yourself:** Engage in interactive experiences designed to deepen your understanding of AI and its capabilities. | ||
* **Solve Real-World Problems:** Utilize AI tools to simplify and enhance your daily tasks, showcasing the power of AI in action. | ||
""" | ||
) | ||
|
||
st.divider() | ||
st.subheader("What tools are currently available?") | ||
st.write( | ||
""" | ||
Currently, FreeStream offers a range of AI tools, including: | ||
* **RAGbot**: An AI chatbot designed to answer questions about documents. | ||
""" | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool.poetry] | ||
|
||
name = "FreeStream" | ||
version = "2.0.2" | ||
version = "3.0.0" | ||
description = "An effort to give easy access to generative AI." | ||
authors = ["Daethyra <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -11,7 +11,7 @@ license = "GNU AGPL" | |
python = ">=3.10,<3.12" | ||
|
||
langchain = "^0.1.6" | ||
langchain-openai = "^0.0.5" | ||
langchain-openai = "^0.0.7" | ||
langchain-google-genai = "^0.0.9" | ||
streamlit = "^1.31.1" | ||
unstructured = {extras = ["all-docs"], version = "^0.12.4"} | ||
|