-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31ea321
commit f373d86
Showing
1 changed file
with
73 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
""" | ||
© 2024 Blaine Freestone, Carson Bush, Brent Nelson | ||
This file is part of the Maeser usage example. | ||
Maeser is free software: you can redistribute it and/or modify it under the terms of | ||
the GNU Lesser General Public License as published by the Free Software Foundation, | ||
either version 3 of the License, or (at your option) any later version. | ||
Maeser is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; | ||
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR | ||
PURPOSE. See the GNU Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public License along with | ||
Maeser. If not, see <https://www.gnu.org/licenses/>. | ||
""" | ||
|
||
from maeser.chat.chat_logs import ChatLogsManager | ||
from maeser.chat.chat_session_manager import ChatSessionManager | ||
|
||
chat_logs_manager = ChatLogsManager("chat_logs") | ||
sessions_manager = ChatSessionManager(chat_logs_manager=chat_logs_manager) | ||
|
||
maeser_prompt: str = """You are speaking from the perspective of Karl G. Maeser. | ||
You will answer a question about your own life history based on the context provided. | ||
Don't answer questions about other things. | ||
{context} | ||
""" | ||
|
||
byu_prompt: str = """You are speaking about the history of Brigham Young University. | ||
You will answer a question about the history of BYU based on the context provided. | ||
Don't answer questions about other things. | ||
{context} | ||
""" | ||
|
||
from maeser.graphs.simple_rag import get_simple_rag | ||
from langgraph.graph.graph import CompiledGraph | ||
|
||
maeser_simple_rag: CompiledGraph = get_simple_rag(vectorstore_path="vectorstores/maeser", vectorstore_index="index", memory_filepath="chat_logs/maeser.db", system_prompt_text=maeser_prompt) | ||
sessions_manager.register_branch(branch_name="maeser", branch_label="Karl G. Maeser History", graph=maeser_simple_rag) | ||
|
||
byu_simple_rag: CompiledGraph = get_simple_rag(vectorstore_path="vectorstores/byu", vectorstore_index="index", memory_filepath="chat_logs/byu.db", system_prompt_text=byu_prompt) | ||
sessions_manager.register_branch(branch_name="byu", branch_label="BYU History", graph=byu_simple_rag) | ||
|
||
from maeser.user_manager import UserManager, GithubAuthenticator | ||
|
||
# Replace the '...' with a client id and secret from a GitHub OAuth App that you generate | ||
github_authenticator = GithubAuthenticator(client_id="Ov23liS9TxlVakrrwO4c", client_secret="964906d1eaac354a8f52ce1cab1512f2a25b32bd", auth_callback_uri="http://localhost:3000/login/github_callback") | ||
user_manager = UserManager(db_file_path="chat_logs/users", max_requests=5, rate_limit_interval=60) | ||
user_manager.register_authenticator(name="github", authenticator=github_authenticator) | ||
|
||
from flask import Flask | ||
|
||
base_app = Flask(__name__) | ||
|
||
from maeser.blueprints import add_flask_blueprint | ||
|
||
app: Flask = add_flask_blueprint( | ||
app=base_app, | ||
flask_secret_key="secret", | ||
chat_session_manager=sessions_manager, | ||
app_name="Test App", | ||
chat_head="/static/Karl_G_Maeser.png", | ||
user_manager=user_manager, | ||
# Note that you can change other images too! We stick with the defaults for the logo and favicon. | ||
# main_logo_light="/static/main_logo_light.png", | ||
# favicon="/static/favicon.png", | ||
) | ||
|
||
if __name__ == "__main__": | ||
app.run(port=3000) |