Remove references to demo

- The demo setting is no longer necessary for the time being, as we won't have anymore demo instances
This commit is contained in:
sabaimran 2023-11-04 17:17:04 -07:00
parent b5972e9311
commit 800bb4f458
14 changed files with 297 additions and 649 deletions

View file

@ -103,21 +103,6 @@ img.khoj-logo {
justify-self: center; justify-self: center;
} }
a.khoj-banner {
color: black;
text-decoration: none;
}
p.khoj-banner {
font-size: small;
margin: 0;
padding: 10px;
}
p#khoj-banner {
display: inline;
}
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
div.khoj-header { div.khoj-header {
display: grid; display: grid;

View file

@ -274,8 +274,9 @@
} }
</script> </script>
<body> <body>
<div id="khoj-banner-container" class="khoj-banner-container"> <div id="khoj-empty-container" class="khoj-empty-container">
</div> </div>
<!--Add Header Logo and Nav Pane--> <!--Add Header Logo and Nav Pane-->
<div class="khoj-header"> <div class="khoj-header">
<a class="khoj-logo" href="/"> <a class="khoj-logo" href="/">
@ -454,6 +455,11 @@
border-bottom: 1px dotted #475569; border-bottom: 1px dotted #475569;
} }
div.khoj-empty-container {
padding: 0;
margin: 0;
}
@media (pointer: coarse), (hover: none) { @media (pointer: coarse), (hover: none) {
abbr[title] { abbr[title] {
position: relative; position: relative;
@ -490,12 +496,6 @@
margin: 4px; margin: 4px;
grid-template-columns: auto; grid-template-columns: auto;
} }
a.khoj-banner {
display: block;
}
p.khoj-banner {
padding: 0;
}
} }
@media only screen and (min-width: 600px) { @media only screen and (min-width: 600px) {
body { body {
@ -507,11 +507,6 @@
} }
} }
div.khoj-banner-container {
padding: 0px;
margin: 0px;
}
div#chat-tooltip { div#chat-tooltip {
text-align: left; text-align: left;
font-size: medium; font-size: medium;
@ -533,23 +528,6 @@
text-align: center; text-align: center;
} }
button#khoj-banner-submit,
input#khoj-banner-email {
padding: 10px;
border-radius: 5px;
border: 1px solid #475569;
background: #f9fafc;
}
button#khoj-banner-submit:hover,
input#khoj-banner-email:hover {
box-shadow: 0 0 11px #aaa;
}
div.khoj-banner-container-hidden {
margin: 0px;
padding: 0px;
}
div.programmatic-output { div.programmatic-output {
background-color: #f5f5f5; background-color: #f5f5f5;
border: 1px solid #ddd; border: 1px solid #ddd;

View file

@ -362,35 +362,6 @@
gap: 4px; gap: 4px;
} }
</style> </style>
<script>
var khojBannerSubmit = document.getElementById("khoj-banner-submit");
khojBannerSubmit?.addEventListener("click", function(event) {
event.preventDefault();
var email = document.getElementById("khoj-banner-email").value;
fetch("https://app.khoj.dev/beta/users/", {
method: "POST",
body: JSON.stringify({
email: email
}),
headers: {
"Content-Type": "application/json"
}
}).then(function(response) {
return response.json();
}).then(function(data) {
console.log(data);
if (data.user != null) {
document.getElementById("khoj-banner").innerHTML = "Thanks for signing up. We'll be in touch soon! 🚀";
document.getElementById("khoj-banner-submit").remove();
} else {
document.getElementById("khoj-banner").innerHTML = "There was an error signing up. Please contact team@khoj.dev";
}
}).catch(function(error) {
console.log(error);
document.getElementById("khoj-banner").innerHTML = "There was an error signing up. Please contact team@khoj.dev";
});
});
</script>
<script src="./renderer.js"></script> <script src="./renderer.js"></script>
</html> </html>

View file

@ -436,14 +436,6 @@
max-width: 90%; max-width: 90%;
} }
div.khoj-banner-container {
background: linear-gradient(-45deg, #FFC107, #FF9800, #FF5722, #FF9800, #FFC107);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
text-align: center;
padding: 10px;
}
@keyframes gradient { @keyframes gradient {
0% { 0% {
background-position: 0% 50%; background-position: 0% 50%;
@ -460,57 +452,5 @@
text-align: center; text-align: center;
} }
button#khoj-banner-submit,
input#khoj-banner-email {
padding: 10px;
border-radius: 5px;
border: 1px solid #475569;
background: #f9fafc;
}
button#khoj-banner-submit:hover,
input#khoj-banner-email:hover {
box-shadow: 0 0 11px #aaa;
}
@media only screen and (max-width: 600px) {
a.khoj-banner {
display: block;
}
p.khoj-banner {
padding: 0;
}
}
</style> </style>
<script>
var khojBannerSubmit = document.getElementById("khoj-banner-submit");
khojBannerSubmit?.addEventListener("click", function(event) {
event.preventDefault();
var email = document.getElementById("khoj-banner-email").value;
fetch("https://app.khoj.dev/beta/users/", {
method: "POST",
body: JSON.stringify({
email: email
}),
headers: {
"Content-Type": "application/json"
}
}).then(function(response) {
return response.json();
}).then(function(data) {
console.log(data);
if (data.user != null) {
document.getElementById("khoj-banner").innerHTML = "Thanks for signing up. We'll be in touch soon! 🚀";
document.getElementById("khoj-banner-submit").remove();
} else {
document.getElementById("khoj-banner").innerHTML = "There was an error signing up. Please contact team@khoj.dev";
}
}).catch(function(error) {
console.log(error);
document.getElementById("khoj-banner").innerHTML = "There was an error signing up. Please contact team@khoj.dev";
});
});
</script>
</html> </html>

View file

@ -159,10 +159,8 @@ def configure_middleware(app):
app.add_middleware(SessionMiddleware, secret_key=os.environ.get("KHOJ_DJANGO_SECRET_KEY", "!secret")) app.add_middleware(SessionMiddleware, secret_key=os.environ.get("KHOJ_DJANGO_SECRET_KEY", "!secret"))
if not state.demo: @schedule.repeat(schedule.every(61).minutes)
def update_search_index():
@schedule.repeat(schedule.every(61).minutes)
def update_search_index():
try: try:
logger.info("📬 Updating content index via Scheduler") logger.info("📬 Updating content index via Scheduler")
for user in get_all_users(): for user in get_all_users():

View file

@ -106,21 +106,6 @@ img.khoj-logo {
justify-self: center; justify-self: center;
} }
a.khoj-banner {
color: black;
text-decoration: none;
}
p.khoj-banner {
font-size: medium;
margin: 0;
padding: 10px;
}
p#khoj-banner {
display: inline;
}
/* Dropdown in navigation menu*/ /* Dropdown in navigation menu*/
#khoj-nav-menu-container { #khoj-nav-menu-container {
display: flex; display: flex;

View file

@ -261,17 +261,7 @@
} }
</script> </script>
<body> <body>
<div id="khoj-banner-container" class="khoj-banner-container"> <div id="khoj-empty-container" class="khoj-empty-container">
{% if demo %}
<!-- Banner linking to https://khoj.dev -->
<a class="khoj-banner" href="https://khoj.dev" target="_blank">
<p id="khoj-banner" class="khoj-banner">
Enroll in Khoj cloud to get your own assistant
</p>
</a>
<input type="text" id="khoj-banner-email" placeholder="email" class="khoj-banner-email"></input>
<button id="khoj-banner-submit" class="khoj-banner-button">Submit</button>
{% endif %}
</div> </div>
<!--Add Header Logo and Nav Pane--> <!--Add Header Logo and Nav Pane-->
@ -480,12 +470,6 @@
margin: 4px; margin: 4px;
grid-template-columns: auto; grid-template-columns: auto;
} }
a.khoj-banner {
display: block;
}
p.khoj-banner {
padding: 0;
}
} }
@media only screen and (min-width: 700px) { @media only screen and (min-width: 700px) {
body { body {
@ -497,14 +481,6 @@
} }
} }
div.khoj-banner-container {
background: linear-gradient(-45deg, #FFC107, #FF9800, #FF5722, #FF9800, #FFC107);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
text-align: center;
padding: 10px;
}
div#chat-tooltip { div#chat-tooltip {
text-align: left; text-align: left;
font-size: medium; font-size: medium;
@ -526,19 +502,7 @@
text-align: center; text-align: center;
} }
button#khoj-banner-submit, div.khoj-empty-container {
input#khoj-banner-email {
padding: 10px;
border-radius: 5px;
border: 1px solid var(--main-text-color);
background: #f9fafc;
}
button#khoj-banner-submit:hover,
input#khoj-banner-email:hover {
box-shadow: 0 0 11px #aaa;
}
div.khoj-banner-container-hidden {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
} }
@ -558,39 +522,4 @@
white-space: pre-wrap; white-space: pre-wrap;
} }
</style> </style>
<script>
if ("{{demo}}" === "False") {
document.getElementById("khoj-banner-container").classList.remove("khoj-banner-container");
document.getElementById("khoj-banner-container").classList.add("khoj-banner-container-hidden");
}
var khojBannerSubmit = document.getElementById("khoj-banner-submit");
khojBannerSubmit?.addEventListener("click", function(event) {
event.preventDefault();
var email = document.getElementById("khoj-banner-email").value;
fetch("https://app.khoj.dev/beta/users/", {
method: "POST",
body: JSON.stringify({
email: email
}),
headers: {
"Content-Type": "application/json"
}
}).then(function(response) {
return response.json();
}).then(function(data) {
console.log(data);
if (data.user != null) {
document.getElementById("khoj-banner").innerHTML = "Thanks for signing up. We'll be in touch soon! 🚀";
document.getElementById("khoj-banner-submit").remove();
} else {
document.getElementById("khoj-banner").innerHTML = "There was an error signing up. Please contact team@khoj.dev";
}
}).catch(function(error) {
console.log(error);
document.getElementById("khoj-banner").innerHTML = "There was an error signing up. Please contact team@khoj.dev";
});
});
</script>
</html> </html>

View file

@ -10,18 +10,6 @@
</head> </head>
<body> <body>
{% if demo %}
<!-- Banner linking to https://khoj.dev -->
<div class="khoj-banner-container">
<a class="khoj-banner" href="https://khoj.dev" target="_blank">
<p id="khoj-banner" class="khoj-banner">
Enroll in Khoj cloud to get your own assistant
</p>
</a>
<input type="text" id="khoj-banner-email" placeholder="email" class="khoj-banner-email"></input>
<button id="khoj-banner-submit" class="khoj-banner-button">Submit</button>
</div>
{% endif %}
<div class="khoj-header"></div> <div class="khoj-header"></div>
<!-- Login Modal --> <!-- Login Modal -->
@ -106,19 +94,6 @@
justify-self: center; justify-self: center;
} }
button#khoj-banner-submit,
input#khoj-banner-email {
padding: 10px;
border-radius: 5px;
border: 1px solid #475569;
background: #f9fafc;
}
button#khoj-banner-submit:hover,
input#khoj-banner-email:hover {
box-shadow: 0 0 11px #aaa;
}
div#login-modal { div#login-modal {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: 1fr;
@ -143,12 +118,6 @@
} }
@media only screen and (max-width: 700px) { @media only screen and (max-width: 700px) {
a.khoj-banner {
display: block;
}
p.khoj-banner {
padding: 0;
}
div#login-modal { div#login-modal {
margin-left: 10%; margin-left: 10%;
margin-right: 10%; margin-right: 10%;
@ -156,34 +125,5 @@
} }
</style> </style>
<script>
var khojBannerSubmit = document.getElementById("khoj-banner-submit");
khojBannerSubmit?.addEventListener("click", function(event) {
event.preventDefault();
var email = document.getElementById("khoj-banner-email").value;
fetch("https://app.khoj.dev/beta/users/", {
method: "POST",
body: JSON.stringify({
email: email
}),
headers: {
"Content-Type": "application/json"
}
}).then(function(response) {
return response.json();
}).then(function(data) {
console.log(data);
if (data.user != null) {
document.getElementById("khoj-banner").innerHTML = "Thanks for signing up. We'll be in touch soon! 🚀";
document.getElementById("khoj-banner-submit").remove();
} else {
document.getElementById("khoj-banner").innerHTML = "There was an error signing up. Please contact team@khoj.dev";
}
}).catch(function(error) {
console.log(error);
document.getElementById("khoj-banner").innerHTML = "There was an error signing up. Please contact team@khoj.dev";
});
});
</script>
<script src="https://accounts.google.com/gsi/client" async defer></script> <script src="https://accounts.google.com/gsi/client" async defer></script>
</html> </html>

View file

@ -270,19 +270,6 @@
</script> </script>
<body> <body>
{% if demo %}
<!-- Banner linking to https://khoj.dev -->
<div class="khoj-banner-container">
<a class="khoj-banner" href="https://khoj.dev" target="_blank">
<p id="khoj-banner" class="khoj-banner">
Enroll in Khoj cloud to get your own assistant
</p>
</a>
<input type="text" id="khoj-banner-email" placeholder="email" class="khoj-banner-email"></input>
<button id="khoj-banner-submit" class="khoj-banner-button">Submit</button>
</div>
{% endif %}
<!--Add Header Logo and Nav Pane--> <!--Add Header Logo and Nav Pane-->
{% import 'utils.html' as utils %} {% import 'utils.html' as utils %}
{{ utils.heading_pane(user_photo, username) }} {{ utils.heading_pane(user_photo, username) }}
@ -458,14 +445,6 @@
max-width: 90%; max-width: 90%;
} }
div.khoj-banner-container {
background: linear-gradient(-45deg, #FFC107, #FF9800, #FF5722, #FF9800, #FFC107);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
text-align: center;
padding: 10px;
}
@keyframes gradient { @keyframes gradient {
0% { 0% {
background-position: 0% 50%; background-position: 0% 50%;
@ -482,57 +461,6 @@
text-align: center; text-align: center;
} }
button#khoj-banner-submit,
input#khoj-banner-email {
padding: 10px;
border-radius: 5px;
border: 1px solid var(--main-text-color);
background: #f9fafc;
}
button#khoj-banner-submit:hover,
input#khoj-banner-email:hover {
box-shadow: 0 0 11px #aaa;
}
@media only screen and (max-width: 700px) {
a.khoj-banner {
display: block;
}
p.khoj-banner {
padding: 0;
}
}
</style> </style>
<script>
var khojBannerSubmit = document.getElementById("khoj-banner-submit");
khojBannerSubmit?.addEventListener("click", function(event) {
event.preventDefault();
var email = document.getElementById("khoj-banner-email").value;
fetch("https://app.khoj.dev/beta/users/", {
method: "POST",
body: JSON.stringify({
email: email
}),
headers: {
"Content-Type": "application/json"
}
}).then(function(response) {
return response.json();
}).then(function(data) {
console.log(data);
if (data.user != null) {
document.getElementById("khoj-banner").innerHTML = "Thanks for signing up. We'll be in touch soon! 🚀";
document.getElementById("khoj-banner-submit").remove();
} else {
document.getElementById("khoj-banner").innerHTML = "There was an error signing up. Please contact team@khoj.dev";
}
}).catch(function(error) {
console.log(error);
document.getElementById("khoj-banner").innerHTML = "There was an error signing up. Please contact team@khoj.dev";
});
});
</script>
</html> </html>

View file

@ -119,7 +119,6 @@ def set_state(args):
state.verbose = args.verbose state.verbose = args.verbose
state.host = args.host state.host = args.host
state.port = args.port state.port = args.port
state.demo = args.demo
state.anonymous_mode = args.anonymous_mode state.anonymous_mode = args.anonymous_mode
state.khoj_version = version("khoj-assistant") state.khoj_version = version("khoj-assistant")
state.chat_on_gpu = args.chat_on_gpu state.chat_on_gpu = args.chat_on_gpu

View file

@ -111,29 +111,28 @@ async def map_config_to_db(config: FullConfig, user: KhojUser):
) )
# If it's a demo instance, prevent updating any of the configuration. def _initialize_config():
if not state.demo:
def _initialize_config():
if state.config is None: if state.config is None:
state.config = FullConfig() state.config = FullConfig()
state.config.search_type = SearchConfig.parse_obj(constants.default_config["search-type"]) state.config.search_type = SearchConfig.parse_obj(constants.default_config["search-type"])
@api.get("/config/data", response_model=FullConfig)
@requires(["authenticated"]) @api.get("/config/data", response_model=FullConfig)
def get_config_data(request: Request): @requires(["authenticated"])
def get_config_data(request: Request):
user = request.user.object user = request.user.object
EntryAdapters.get_unique_file_types(user) EntryAdapters.get_unique_file_types(user)
return state.config return state.config
@api.post("/config/data")
@requires(["authenticated"]) @api.post("/config/data")
async def set_config_data( @requires(["authenticated"])
async def set_config_data(
request: Request, request: Request,
updated_config: FullConfig, updated_config: FullConfig,
client: Optional[str] = None, client: Optional[str] = None,
): ):
user = request.user.object user = request.user.object
await map_config_to_db(updated_config, user) await map_config_to_db(updated_config, user)
@ -160,13 +159,14 @@ if not state.demo:
) )
return state.config return state.config
@api.post("/config/data/content_type/github", status_code=200)
@requires(["authenticated"]) @api.post("/config/data/content_type/github", status_code=200)
async def set_content_config_github_data( @requires(["authenticated"])
async def set_content_config_github_data(
request: Request, request: Request,
updated_config: Union[GithubContentConfig, None], updated_config: Union[GithubContentConfig, None],
client: Optional[str] = None, client: Optional[str] = None,
): ):
_initialize_config() _initialize_config()
user = request.user.object user = request.user.object
@ -187,13 +187,14 @@ if not state.demo:
return {"status": "ok"} return {"status": "ok"}
@api.post("/config/data/content_type/notion", status_code=200)
@requires(["authenticated"]) @api.post("/config/data/content_type/notion", status_code=200)
async def set_content_config_notion_data( @requires(["authenticated"])
async def set_content_config_notion_data(
request: Request, request: Request,
updated_config: Union[NotionContentConfig, None], updated_config: Union[NotionContentConfig, None],
client: Optional[str] = None, client: Optional[str] = None,
): ):
_initialize_config() _initialize_config()
user = request.user.object user = request.user.object
@ -213,13 +214,14 @@ if not state.demo:
return {"status": "ok"} return {"status": "ok"}
@api.post("/delete/config/data/content_type/{content_type}", status_code=200)
@requires(["authenticated"]) @api.post("/delete/config/data/content_type/{content_type}", status_code=200)
async def remove_content_config_data( @requires(["authenticated"])
async def remove_content_config_data(
request: Request, request: Request,
content_type: str, content_type: str,
client: Optional[str] = None, client: Optional[str] = None,
): ):
user = request.user.object user = request.user.object
update_telemetry_state( update_telemetry_state(
@ -240,14 +242,15 @@ if not state.demo:
enabled_content = await sync_to_async(EntryAdapters.get_unique_file_types)(user) enabled_content = await sync_to_async(EntryAdapters.get_unique_file_types)(user)
return {"status": "ok"} return {"status": "ok"}
@api.post("/config/data/content_type/{content_type}", status_code=200)
@requires(["authenticated"]) @api.post("/config/data/content_type/{content_type}", status_code=200)
async def set_content_config_data( @requires(["authenticated"])
async def set_content_config_data(
request: Request, request: Request,
content_type: str, content_type: str,
updated_config: Union[TextContentConfig, None], updated_config: Union[TextContentConfig, None],
client: Optional[str] = None, client: Optional[str] = None,
): ):
_initialize_config() _initialize_config()
user = request.user.object user = request.user.object
@ -265,13 +268,14 @@ if not state.demo:
return {"status": "ok"} return {"status": "ok"}
@api.post("/config/data/conversation/model", status_code=200)
@requires(["authenticated"]) @api.post("/config/data/conversation/model", status_code=200)
async def update_chat_model( @requires(["authenticated"])
async def update_chat_model(
request: Request, request: Request,
id: str, id: str,
client: Optional[str] = None, client: Optional[str] = None,
): ):
user = request.user.object user = request.user.object
new_config = await ConversationAdapters.aset_user_conversation_processor(user, int(id)) new_config = await ConversationAdapters.aset_user_conversation_processor(user, int(id))
@ -377,6 +381,7 @@ async def search(
SearchType.Github, SearchType.Github,
SearchType.Notion, SearchType.Notion,
SearchType.Plaintext, SearchType.Plaintext,
SearchType.Pdf,
]: ]:
# query markdown notes # query markdown notes
search_futures += [ search_futures += [

View file

@ -38,7 +38,6 @@ def index(request: Request):
"chat.html", "chat.html",
context={ context={
"request": request, "request": request,
"demo": state.demo,
"username": user.username, "username": user.username,
"user_photo": user_picture, "user_photo": user_picture,
}, },
@ -55,7 +54,6 @@ def index_post(request: Request):
"chat.html", "chat.html",
context={ context={
"request": request, "request": request,
"demo": state.demo,
"username": user.username, "username": user.username,
"user_photo": user_picture, "user_photo": user_picture,
}, },
@ -72,7 +70,6 @@ def search_page(request: Request):
"search.html", "search.html",
context={ context={
"request": request, "request": request,
"demo": state.demo,
"username": user.username, "username": user.username,
"user_photo": user_picture, "user_photo": user_picture,
}, },
@ -89,7 +86,6 @@ def chat_page(request: Request):
"chat.html", "chat.html",
context={ context={
"request": request, "request": request,
"demo": state.demo,
"username": user.username, "username": user.username,
"user_photo": user_picture, "user_photo": user_picture,
}, },
@ -107,7 +103,6 @@ def login_page(request: Request):
"login.html", "login.html",
context={ context={
"request": request, "request": request,
"demo": state.demo,
"google_client_id": google_client_id, "google_client_id": google_client_id,
"redirect_uri": redirect_uri, "redirect_uri": redirect_uri,
}, },
@ -125,11 +120,9 @@ def map_config_to_object(content_type: str):
return LocalPlaintextConfig return LocalPlaintextConfig
if not state.demo: @web_client.get("/config", response_class=HTMLResponse)
@requires(["authenticated"], redirect="login_page")
@web_client.get("/config", response_class=HTMLResponse) def config_page(request: Request):
@requires(["authenticated"], redirect="login_page")
def config_page(request: Request):
user = request.user.object user = request.user.object
user_picture = request.session.get("user", {}).get("picture") user_picture = request.session.get("user", {}).get("picture")
enabled_content = set(EntryAdapters.get_unique_file_types(user).all()) enabled_content = set(EntryAdapters.get_unique_file_types(user).all())
@ -154,9 +147,7 @@ if not state.demo:
conversation_options = ConversationAdapters.get_conversation_processor_options().all() conversation_options = ConversationAdapters.get_conversation_processor_options().all()
all_conversation_options = list() all_conversation_options = list()
for conversation_option in conversation_options: for conversation_option in conversation_options:
all_conversation_options.append( all_conversation_options.append({"chat_model": conversation_option.chat_model, "id": conversation_option.id})
{"chat_model": conversation_option.chat_model, "id": conversation_option.id}
)
selected_conversation_config = ConversationAdapters.get_conversation_config(user) selected_conversation_config = ConversationAdapters.get_conversation_config(user)
@ -168,16 +159,15 @@ if not state.demo:
"anonymous_mode": state.anonymous_mode, "anonymous_mode": state.anonymous_mode,
"username": user.username if user else None, "username": user.username if user else None,
"conversation_options": all_conversation_options, "conversation_options": all_conversation_options,
"selected_conversation_config": selected_conversation_config.id "selected_conversation_config": selected_conversation_config.id if selected_conversation_config else None,
if selected_conversation_config
else None,
"user_photo": user_picture, "user_photo": user_picture,
}, },
) )
@web_client.get("/config/content_type/github", response_class=HTMLResponse)
@requires(["authenticated"], redirect="login_page") @web_client.get("/config/content_type/github", response_class=HTMLResponse)
def github_config_page(request: Request): @requires(["authenticated"], redirect="login_page")
def github_config_page(request: Request):
user = request.user.object user = request.user.object
user_picture = request.session.get("user", {}).get("picture") user_picture = request.session.get("user", {}).get("picture")
current_github_config = get_user_github_config(user) current_github_config = get_user_github_config(user)
@ -211,9 +201,10 @@ if not state.demo:
}, },
) )
@web_client.get("/config/content_type/notion", response_class=HTMLResponse)
@requires(["authenticated"], redirect="login_page") @web_client.get("/config/content_type/notion", response_class=HTMLResponse)
def notion_config_page(request: Request): @requires(["authenticated"], redirect="login_page")
def notion_config_page(request: Request):
user = request.user.object user = request.user.object
user_picture = request.session.get("user", {}).get("picture") user_picture = request.session.get("user", {}).get("picture")
current_notion_config = get_user_notion_config(user) current_notion_config = get_user_notion_config(user)
@ -234,9 +225,10 @@ if not state.demo:
}, },
) )
@web_client.get("/config/content_type/{content_type}", response_class=HTMLResponse)
@requires(["authenticated"], redirect="login_page") @web_client.get("/config/content_type/{content_type}", response_class=HTMLResponse)
def content_config_page(request: Request, content_type: str): @requires(["authenticated"], redirect="login_page")
def content_config_page(request: Request, content_type: str):
if content_type not in VALID_TEXT_CONTENT_TYPES: if content_type not in VALID_TEXT_CONTENT_TYPES:
return templates.TemplateResponse("config.html", context={"request": request}) return templates.TemplateResponse("config.html", context={"request": request})

View file

@ -42,7 +42,6 @@ def cli(args=None):
parser.add_argument( parser.add_argument(
"--disable-chat-on-gpu", action="store_true", default=False, help="Disable using GPU for the offline chat model" "--disable-chat-on-gpu", action="store_true", default=False, help="Disable using GPU for the offline chat model"
) )
parser.add_argument("--demo", action="store_true", default=False, help="Run Khoj in demo mode")
parser.add_argument( parser.add_argument(
"--anonymous-mode", "--anonymous-mode",
action="store_true", action="store_true",

View file

@ -31,7 +31,6 @@ config_lock = threading.Lock()
chat_lock = threading.Lock() chat_lock = threading.Lock()
SearchType = utils_config.SearchType SearchType = utils_config.SearchType
telemetry: List[Dict[str, str]] = [] telemetry: List[Dict[str, str]] = []
demo: bool = False
khoj_version: str = None khoj_version: str = None
device = get_device() device = get_device()
chat_on_gpu: bool = True chat_on_gpu: bool = True