mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-05 21:29:11 +00:00
Version Khoj API, Update frontends, tests and docs to reflect it
- Split router.py into v1.0, beta and frontend (no-prefix) api modules under new router package. Version tag in main.py via prefix - Update frontends to use the versioned api endpoints - Update tests to work with versioned api endpoints - Update docs to mentioned, reference only versioned api endpoints
This commit is contained in:
@@ -85,7 +85,7 @@ khoj
|
|||||||
### 3. Configure
|
### 3. Configure
|
||||||
|
|
||||||
1. Enable content types and point to files to search in the First Run Screen that pops up on app start
|
1. Enable content types and point to files to search in the First Run Screen that pops up on app start
|
||||||
2. Click configure and wait. The app will load ML model, generates embeddings and expose the search API
|
2. Click `Configure` and wait. The app will download ML models and index the content for search
|
||||||
|
|
||||||
## Use
|
## Use
|
||||||
|
|
||||||
@@ -113,7 +113,7 @@ pip install --upgrade khoj-assistant
|
|||||||
|
|
||||||
## Miscellaneous
|
## Miscellaneous
|
||||||
|
|
||||||
- The beta [chat](http://localhost:8000/beta/chat) and [search](http://localhost:8000/beta/search) API endpoints use [OpenAI API](https://openai.com/api/)
|
- The beta [chat](http://localhost:8000/api/beta/chat) and [search](http://localhost:8000/api/beta/search) API endpoints use [OpenAI API](https://openai.com/api/)
|
||||||
- It is disabled by default
|
- It is disabled by default
|
||||||
- To use it add your `openai-api-key` via the app configure screen
|
- To use it add your `openai-api-key` via the app configure screen
|
||||||
- Warning: *If you use the above beta APIs, your query and top result(s) will be sent to OpenAI for processing*
|
- Warning: *If you use the above beta APIs, your query and top result(s) will be sent to OpenAI for processing*
|
||||||
|
|||||||
@@ -226,7 +226,7 @@ Use `which-key` if available, else display simple message in echo area"
|
|||||||
|
|
||||||
(defun khoj--get-enabled-content-types ()
|
(defun khoj--get-enabled-content-types ()
|
||||||
"Get content types enabled for search from API."
|
"Get content types enabled for search from API."
|
||||||
(let ((config-url (format "%s/config/data" khoj-server-url)))
|
(let ((config-url (format "%s/api/v1.0/config/data" khoj-server-url)))
|
||||||
(with-temp-buffer
|
(with-temp-buffer
|
||||||
(erase-buffer)
|
(erase-buffer)
|
||||||
(url-insert-file-contents config-url)
|
(url-insert-file-contents config-url)
|
||||||
@@ -243,7 +243,7 @@ Use `which-key` if available, else display simple message in echo area"
|
|||||||
"Construct API Query from QUERY, SEARCH-TYPE and (optional) RERANK params."
|
"Construct API Query from QUERY, SEARCH-TYPE and (optional) RERANK params."
|
||||||
(let ((rerank (or rerank "false"))
|
(let ((rerank (or rerank "false"))
|
||||||
(encoded-query (url-hexify-string query)))
|
(encoded-query (url-hexify-string query)))
|
||||||
(format "%s/search?q=%s&t=%s&r=%s&n=%s" khoj-server-url encoded-query search-type rerank khoj-results-count)))
|
(format "%s/api/v1.0/search?q=%s&t=%s&r=%s&n=%s" khoj-server-url encoded-query search-type rerank khoj-results-count)))
|
||||||
|
|
||||||
(defun khoj--query-api-and-render-results (query search-type query-url buffer-name)
|
(defun khoj--query-api-and-render-results (query search-type query-url buffer-name)
|
||||||
"Query Khoj API using QUERY, SEARCH-TYPE, QUERY-URL.
|
"Query Khoj API using QUERY, SEARCH-TYPE, QUERY-URL.
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ var emptyValueDefault = "🖊️";
|
|||||||
/**
|
/**
|
||||||
* Fetch the existing config file.
|
* Fetch the existing config file.
|
||||||
*/
|
*/
|
||||||
fetch("/config/data")
|
fetch("/api/v1.0/config/data")
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
.then(data => {
|
.then(data => {
|
||||||
rawConfig = data;
|
rawConfig = data;
|
||||||
@@ -26,7 +26,7 @@ fetch("/config/data")
|
|||||||
configForm.addEventListener("submit", (event) => {
|
configForm.addEventListener("submit", (event) => {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
console.log(rawConfig);
|
console.log(rawConfig);
|
||||||
fetch("/config/data", {
|
fetch("/api/v1.0/config/data", {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
credentials: "same-origin",
|
credentials: "same-origin",
|
||||||
headers: {
|
headers: {
|
||||||
@@ -46,7 +46,7 @@ regenerateButton.addEventListener("click", (event) => {
|
|||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
regenerateButton.style.cursor = "progress";
|
regenerateButton.style.cursor = "progress";
|
||||||
regenerateButton.disabled = true;
|
regenerateButton.disabled = true;
|
||||||
fetch("/regenerate")
|
fetch("/api/v1.0/update?force=true")
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
.then(data => {
|
.then(data => {
|
||||||
regenerateButton.style.cursor = "pointer";
|
regenerateButton.style.cursor = "pointer";
|
||||||
|
|||||||
@@ -77,8 +77,8 @@
|
|||||||
|
|
||||||
// Generate Backend API URL to execute Search
|
// Generate Backend API URL to execute Search
|
||||||
url = type === "image"
|
url = type === "image"
|
||||||
? `/search?q=${encodeURIComponent(query)}&t=${type}&n=${results_count}`
|
? `/api/v1.0/search?q=${encodeURIComponent(query)}&t=${type}&n=${results_count}`
|
||||||
: `/search?q=${encodeURIComponent(query)}&t=${type}&n=${results_count}&r=${rerank}`;
|
: `/api/v1.0/search?q=${encodeURIComponent(query)}&t=${type}&n=${results_count}&r=${rerank}`;
|
||||||
|
|
||||||
// Execute Search and Render Results
|
// Execute Search and Render Results
|
||||||
fetch(url)
|
fetch(url)
|
||||||
@@ -94,7 +94,7 @@
|
|||||||
|
|
||||||
function updateIndex() {
|
function updateIndex() {
|
||||||
type = document.getElementById("type").value;
|
type = document.getElementById("type").value;
|
||||||
fetch(`/reload?t=${type}`)
|
fetch(`/api/v1.0/update?t=${type}`)
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
.then(data => {
|
.then(data => {
|
||||||
console.log(data);
|
console.log(data);
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
function populate_type_dropdown() {
|
function populate_type_dropdown() {
|
||||||
// Populate type dropdown field with enabled search types only
|
// Populate type dropdown field with enabled search types only
|
||||||
var possible_search_types = ["org", "markdown", "ledger", "music", "image"];
|
var possible_search_types = ["org", "markdown", "ledger", "music", "image"];
|
||||||
fetch("/config/data")
|
fetch("/api/v1.0/config/data")
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
.then(data => {
|
.then(data => {
|
||||||
document.getElementById("type").innerHTML =
|
document.getElementById("type").innerHTML =
|
||||||
|
|||||||
@@ -19,7 +19,9 @@ from PyQt6.QtCore import QThread, QTimer
|
|||||||
|
|
||||||
# Internal Packages
|
# Internal Packages
|
||||||
from src.configure import configure_server
|
from src.configure import configure_server
|
||||||
from src.router import router
|
from src.routers.api_v1_0 import api_v1_0
|
||||||
|
from src.routers.api_beta import api_beta
|
||||||
|
from src.routers.frontend import frontend_router
|
||||||
from src.utils import constants, state
|
from src.utils import constants, state
|
||||||
from src.utils.cli import cli
|
from src.utils.cli import cli
|
||||||
from src.interface.desktop.main_window import MainWindow
|
from src.interface.desktop.main_window import MainWindow
|
||||||
@@ -29,7 +31,9 @@ from src.interface.desktop.system_tray import create_system_tray
|
|||||||
# Initialize the Application Server
|
# Initialize the Application Server
|
||||||
app = FastAPI()
|
app = FastAPI()
|
||||||
app.mount("/static", StaticFiles(directory=constants.web_directory), name="static")
|
app.mount("/static", StaticFiles(directory=constants.web_directory), name="static")
|
||||||
app.include_router(router)
|
app.include_router(api_v1_0, prefix="/api/v1.0")
|
||||||
|
app.include_router(api_beta, prefix="/api/beta")
|
||||||
|
app.include_router(frontend_router)
|
||||||
|
|
||||||
logger = logging.getLogger('src')
|
logger = logging.getLogger('src')
|
||||||
|
|
||||||
|
|||||||
89
src/routers/api_beta.py
Normal file
89
src/routers/api_beta.py
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
# Standard Packages
|
||||||
|
import json
|
||||||
|
import logging
|
||||||
|
from typing import Optional
|
||||||
|
|
||||||
|
# External Packages
|
||||||
|
from fastapi import APIRouter
|
||||||
|
|
||||||
|
# Internal Packages
|
||||||
|
from src.routers.api_v1_0 import search
|
||||||
|
from src.processor.conversation.gpt import converse, extract_search_type, message_to_log, message_to_prompt, understand, summarize
|
||||||
|
from src.utils.config import SearchType
|
||||||
|
from src.utils.helpers import get_absolute_path, get_from_dict
|
||||||
|
from src.utils import state
|
||||||
|
|
||||||
|
|
||||||
|
api_beta = APIRouter()
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
@api_beta.get('/search')
|
||||||
|
def search_beta(q: str, n: Optional[int] = 1):
|
||||||
|
# Extract Search Type using GPT
|
||||||
|
metadata = extract_search_type(q, api_key=state.processor_config.conversation.openai_api_key, verbose=state.verbose)
|
||||||
|
search_type = get_from_dict(metadata, "search-type")
|
||||||
|
|
||||||
|
# Search
|
||||||
|
search_results = search(q, n=n, t=SearchType(search_type))
|
||||||
|
|
||||||
|
# Return response
|
||||||
|
return {'status': 'ok', 'result': search_results, 'type': search_type}
|
||||||
|
|
||||||
|
|
||||||
|
@api_beta.get('/chat')
|
||||||
|
def chat(q: str):
|
||||||
|
# Load Conversation History
|
||||||
|
chat_session = state.processor_config.conversation.chat_session
|
||||||
|
meta_log = state.processor_config.conversation.meta_log
|
||||||
|
|
||||||
|
# Converse with OpenAI GPT
|
||||||
|
metadata = understand(q, api_key=state.processor_config.conversation.openai_api_key, verbose=state.verbose)
|
||||||
|
if state.verbose > 1:
|
||||||
|
print(f'Understood: {get_from_dict(metadata, "intent")}')
|
||||||
|
|
||||||
|
if get_from_dict(metadata, "intent", "memory-type") == "notes":
|
||||||
|
query = get_from_dict(metadata, "intent", "query")
|
||||||
|
result_list = search(query, n=1, t=SearchType.Org)
|
||||||
|
collated_result = "\n".join([item["entry"] for item in result_list])
|
||||||
|
if state.verbose > 1:
|
||||||
|
print(f'Semantically Similar Notes:\n{collated_result}')
|
||||||
|
gpt_response = summarize(collated_result, summary_type="notes", user_query=q, api_key=state.processor_config.conversation.openai_api_key)
|
||||||
|
else:
|
||||||
|
gpt_response = converse(q, chat_session, api_key=state.processor_config.conversation.openai_api_key)
|
||||||
|
|
||||||
|
# Update Conversation History
|
||||||
|
state.processor_config.conversation.chat_session = message_to_prompt(q, chat_session, gpt_message=gpt_response)
|
||||||
|
state.processor_config.conversation.meta_log['chat'] = message_to_log(q, metadata, gpt_response, meta_log.get('chat', []))
|
||||||
|
|
||||||
|
return {'status': 'ok', 'response': gpt_response}
|
||||||
|
|
||||||
|
|
||||||
|
@api_beta.on_event('shutdown')
|
||||||
|
def shutdown_event():
|
||||||
|
# No need to create empty log file
|
||||||
|
if not (state.processor_config and state.processor_config.conversation and state.processor_config.conversation.meta_log):
|
||||||
|
return
|
||||||
|
elif state.processor_config.conversation.verbose:
|
||||||
|
print('INFO:\tSaving conversation logs to disk...')
|
||||||
|
|
||||||
|
# Summarize Conversation Logs for this Session
|
||||||
|
chat_session = state.processor_config.conversation.chat_session
|
||||||
|
openai_api_key = state.processor_config.conversation.openai_api_key
|
||||||
|
conversation_log = state.processor_config.conversation.meta_log
|
||||||
|
session = {
|
||||||
|
"summary": summarize(chat_session, summary_type="chat", api_key=openai_api_key),
|
||||||
|
"session-start": conversation_log.get("session", [{"session-end": 0}])[-1]["session-end"],
|
||||||
|
"session-end": len(conversation_log["chat"])
|
||||||
|
}
|
||||||
|
if 'session' in conversation_log:
|
||||||
|
conversation_log['session'].append(session)
|
||||||
|
else:
|
||||||
|
conversation_log['session'] = [session]
|
||||||
|
|
||||||
|
# Save Conversation Metadata Logs to Disk
|
||||||
|
conversation_logfile = get_absolute_path(state.processor_config.conversation.conversation_logfile)
|
||||||
|
with open(conversation_logfile, "w+", encoding='utf-8') as logfile:
|
||||||
|
json.dump(conversation_log, logfile)
|
||||||
|
|
||||||
|
print('INFO:\tConversation logs saved to disk.')
|
||||||
@@ -1,45 +1,29 @@
|
|||||||
# Standard Packages
|
# Standard Packages
|
||||||
import yaml
|
import yaml
|
||||||
import json
|
|
||||||
import time
|
import time
|
||||||
import logging
|
import logging
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
# External Packages
|
# External Packages
|
||||||
from fastapi import APIRouter
|
from fastapi import APIRouter
|
||||||
from fastapi import Request
|
|
||||||
from fastapi.responses import HTMLResponse, FileResponse
|
|
||||||
from fastapi.templating import Jinja2Templates
|
|
||||||
|
|
||||||
# Internal Packages
|
# Internal Packages
|
||||||
from src.configure import configure_search
|
from src.configure import configure_search
|
||||||
from src.search_type import image_search, text_search
|
from src.search_type import image_search, text_search
|
||||||
from src.processor.conversation.gpt import converse, extract_search_type, message_to_log, message_to_prompt, understand, summarize
|
|
||||||
from src.utils.rawconfig import FullConfig
|
from src.utils.rawconfig import FullConfig
|
||||||
from src.utils.config import SearchType
|
from src.utils.config import SearchType
|
||||||
from src.utils.helpers import LRU, get_absolute_path, get_from_dict
|
|
||||||
from src.utils import state, constants
|
from src.utils import state, constants
|
||||||
|
|
||||||
|
|
||||||
router = APIRouter()
|
api_v1_0 = APIRouter()
|
||||||
templates = Jinja2Templates(directory=constants.web_directory)
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
query_cache = LRU()
|
|
||||||
|
|
||||||
|
|
||||||
@router.get("/", response_class=FileResponse)
|
@api_v1_0.get('/config/data', response_model=FullConfig)
|
||||||
def index():
|
|
||||||
return FileResponse(constants.web_directory / "index.html")
|
|
||||||
|
|
||||||
@router.get('/config', response_class=HTMLResponse)
|
|
||||||
def config_page(request: Request):
|
|
||||||
return templates.TemplateResponse("config.html", context={'request': request})
|
|
||||||
|
|
||||||
@router.get('/config/data', response_model=FullConfig)
|
|
||||||
def config_data():
|
def config_data():
|
||||||
return state.config
|
return state.config
|
||||||
|
|
||||||
@router.post('/config/data')
|
@api_v1_0.post('/config/data')
|
||||||
async def config_data(updated_config: FullConfig):
|
async def config_data(updated_config: FullConfig):
|
||||||
state.config = updated_config
|
state.config = updated_config
|
||||||
with open(state.config_file, 'w') as outfile:
|
with open(state.config_file, 'w') as outfile:
|
||||||
@@ -47,7 +31,7 @@ async def config_data(updated_config: FullConfig):
|
|||||||
outfile.close()
|
outfile.close()
|
||||||
return state.config
|
return state.config
|
||||||
|
|
||||||
@router.get('/search')
|
@api_v1_0.get('/search')
|
||||||
def search(q: str, n: Optional[int] = 5, t: Optional[SearchType] = None, r: Optional[bool] = False):
|
def search(q: str, n: Optional[int] = 5, t: Optional[SearchType] = None, r: Optional[bool] = False):
|
||||||
if q is None or q == '':
|
if q is None or q == '':
|
||||||
logger.info(f'No query param (q) passed in API call to initiate search')
|
logger.info(f'No query param (q) passed in API call to initiate search')
|
||||||
@@ -137,78 +121,7 @@ def search(q: str, n: Optional[int] = 5, t: Optional[SearchType] = None, r: Opti
|
|||||||
return results
|
return results
|
||||||
|
|
||||||
|
|
||||||
@router.get('/update')
|
@api_v1_0.get('/update')
|
||||||
def update(t: Optional[SearchType] = None, force: Optional[bool] = False):
|
def update(t: Optional[SearchType] = None, force: Optional[bool] = False):
|
||||||
state.model = configure_search(state.model, state.config, regenerate=force, t=t)
|
state.model = configure_search(state.model, state.config, regenerate=force, t=t)
|
||||||
return {'status': 'ok', 'message': 'index updated completed'}
|
return {'status': 'ok', 'message': 'index updated'}
|
||||||
|
|
||||||
|
|
||||||
@router.get('/beta/search')
|
|
||||||
def search_beta(q: str, n: Optional[int] = 1):
|
|
||||||
# Extract Search Type using GPT
|
|
||||||
metadata = extract_search_type(q, api_key=state.processor_config.conversation.openai_api_key, verbose=state.verbose)
|
|
||||||
search_type = get_from_dict(metadata, "search-type")
|
|
||||||
|
|
||||||
# Search
|
|
||||||
search_results = search(q, n=n, t=SearchType(search_type))
|
|
||||||
|
|
||||||
# Return response
|
|
||||||
return {'status': 'ok', 'result': search_results, 'type': search_type}
|
|
||||||
|
|
||||||
|
|
||||||
@router.get('/beta/chat')
|
|
||||||
def chat(q: str):
|
|
||||||
# Load Conversation History
|
|
||||||
chat_session = state.processor_config.conversation.chat_session
|
|
||||||
meta_log = state.processor_config.conversation.meta_log
|
|
||||||
|
|
||||||
# Converse with OpenAI GPT
|
|
||||||
metadata = understand(q, api_key=state.processor_config.conversation.openai_api_key, verbose=state.verbose)
|
|
||||||
if state.verbose > 1:
|
|
||||||
print(f'Understood: {get_from_dict(metadata, "intent")}')
|
|
||||||
|
|
||||||
if get_from_dict(metadata, "intent", "memory-type") == "notes":
|
|
||||||
query = get_from_dict(metadata, "intent", "query")
|
|
||||||
result_list = search(query, n=1, t=SearchType.Org)
|
|
||||||
collated_result = "\n".join([item["entry"] for item in result_list])
|
|
||||||
if state.verbose > 1:
|
|
||||||
print(f'Semantically Similar Notes:\n{collated_result}')
|
|
||||||
gpt_response = summarize(collated_result, summary_type="notes", user_query=q, api_key=state.processor_config.conversation.openai_api_key)
|
|
||||||
else:
|
|
||||||
gpt_response = converse(q, chat_session, api_key=state.processor_config.conversation.openai_api_key)
|
|
||||||
|
|
||||||
# Update Conversation History
|
|
||||||
state.processor_config.conversation.chat_session = message_to_prompt(q, chat_session, gpt_message=gpt_response)
|
|
||||||
state.processor_config.conversation.meta_log['chat'] = message_to_log(q, metadata, gpt_response, meta_log.get('chat', []))
|
|
||||||
|
|
||||||
return {'status': 'ok', 'response': gpt_response}
|
|
||||||
|
|
||||||
|
|
||||||
@router.on_event('shutdown')
|
|
||||||
def shutdown_event():
|
|
||||||
# No need to create empty log file
|
|
||||||
if not (state.processor_config and state.processor_config.conversation and state.processor_config.conversation.meta_log):
|
|
||||||
return
|
|
||||||
elif state.processor_config.conversation.verbose:
|
|
||||||
print('INFO:\tSaving conversation logs to disk...')
|
|
||||||
|
|
||||||
# Summarize Conversation Logs for this Session
|
|
||||||
chat_session = state.processor_config.conversation.chat_session
|
|
||||||
openai_api_key = state.processor_config.conversation.openai_api_key
|
|
||||||
conversation_log = state.processor_config.conversation.meta_log
|
|
||||||
session = {
|
|
||||||
"summary": summarize(chat_session, summary_type="chat", api_key=openai_api_key),
|
|
||||||
"session-start": conversation_log.get("session", [{"session-end": 0}])[-1]["session-end"],
|
|
||||||
"session-end": len(conversation_log["chat"])
|
|
||||||
}
|
|
||||||
if 'session' in conversation_log:
|
|
||||||
conversation_log['session'].append(session)
|
|
||||||
else:
|
|
||||||
conversation_log['session'] = [session]
|
|
||||||
|
|
||||||
# Save Conversation Metadata Logs to Disk
|
|
||||||
conversation_logfile = get_absolute_path(state.processor_config.conversation.conversation_logfile)
|
|
||||||
with open(conversation_logfile, "w+", encoding='utf-8') as logfile:
|
|
||||||
json.dump(conversation_log, logfile)
|
|
||||||
|
|
||||||
print('INFO:\tConversation logs saved to disk.')
|
|
||||||
25
src/routers/frontend.py
Normal file
25
src/routers/frontend.py
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
# Standard Packages
|
||||||
|
import logging
|
||||||
|
|
||||||
|
# External Packages
|
||||||
|
from fastapi import APIRouter
|
||||||
|
from fastapi import Request
|
||||||
|
from fastapi.responses import HTMLResponse, FileResponse
|
||||||
|
from fastapi.templating import Jinja2Templates
|
||||||
|
|
||||||
|
# Internal Packages
|
||||||
|
from src.utils import constants
|
||||||
|
|
||||||
|
|
||||||
|
frontend_router = APIRouter()
|
||||||
|
templates = Jinja2Templates(directory=constants.web_directory)
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
@frontend_router.get("/", response_class=FileResponse)
|
||||||
|
def index():
|
||||||
|
return FileResponse(constants.web_directory / "index.html")
|
||||||
|
|
||||||
|
@frontend_router.get('/config', response_class=HTMLResponse)
|
||||||
|
def config_page(request: Request):
|
||||||
|
return templates.TemplateResponse("config.html", context={'request': request})
|
||||||
@@ -43,9 +43,8 @@ just generating embeddings*
|
|||||||
|
|
||||||
- **Khoj via API**
|
- **Khoj via API**
|
||||||
- See [Khoj API Docs](http://localhost:8000/docs)
|
- See [Khoj API Docs](http://localhost:8000/docs)
|
||||||
- [Query](http://localhost:8000/search?q=%22what%20is%20the%20meaning%20of%20life%22)
|
- [Query](http://localhost:8000/api/v1.0/search?q=%22what%20is%20the%20meaning%20of%20life%22)
|
||||||
- [Regenerate
|
- [Update Index](http://localhost:8000/api/v1.0/update?t=ledger)
|
||||||
Embeddings](http://localhost:8000/regenerate?t=ledger)
|
|
||||||
- [Configure Application](https://localhost:8000/ui)
|
- [Configure Application](https://localhost:8000/ui)
|
||||||
- **Khoj via Emacs**
|
- **Khoj via Emacs**
|
||||||
- [Install](https://github.com/debanjum/khoj/tree/master/src/interface/emacs#installation)
|
- [Install](https://github.com/debanjum/khoj/tree/master/src/interface/emacs#installation)
|
||||||
|
|||||||
@@ -27,8 +27,8 @@
|
|||||||
- Run ~M-x khoj <user-query>~ or Call ~C-c C-s~
|
- Run ~M-x khoj <user-query>~ or Call ~C-c C-s~
|
||||||
|
|
||||||
- *Khoj via API*
|
- *Khoj via API*
|
||||||
- Query: ~GET~ [[http://localhost:8000/search?q=%22what%20is%20the%20meaning%20of%20life%22][http://localhost:8000/search?q="What is the meaning of life"]]
|
- Query: ~GET~ [[http://localhost:8000/api/v1.0/search?q=%22what%20is%20the%20meaning%20of%20life%22][http://localhost:8000/api/v1.0/search?q="What is the meaning of life"]]
|
||||||
- Regenerate Embeddings: ~GET~ [[http://localhost:8000/regenerate][http://localhost:8000/regenerate]]
|
- Update Index: ~GET~ [[http://localhost:8000/api/v1.0/update][http://localhost:8000/api/v1.0/update]]
|
||||||
- [[http://localhost:8000/docs][Khoj API Docs]]
|
- [[http://localhost:8000/docs][Khoj API Docs]]
|
||||||
|
|
||||||
- *Call Khoj via Python Script Directly*
|
- *Call Khoj via Python Script Directly*
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ def test_search_with_invalid_content_type():
|
|||||||
user_query = quote("How to call Khoj from Emacs?")
|
user_query = quote("How to call Khoj from Emacs?")
|
||||||
|
|
||||||
# Act
|
# Act
|
||||||
response = client.get(f"/search?q={user_query}&t=invalid_content_type")
|
response = client.get(f"/api/v1.0/search?q={user_query}&t=invalid_content_type")
|
||||||
|
|
||||||
# Assert
|
# Assert
|
||||||
assert response.status_code == 422
|
assert response.status_code == 422
|
||||||
@@ -43,29 +43,29 @@ def test_search_with_valid_content_type(content_config: ContentConfig, search_co
|
|||||||
# config.content_type.image = search_config.image
|
# config.content_type.image = search_config.image
|
||||||
for content_type in ["org", "markdown", "ledger", "music"]:
|
for content_type in ["org", "markdown", "ledger", "music"]:
|
||||||
# Act
|
# Act
|
||||||
response = client.get(f"/search?q=random&t={content_type}")
|
response = client.get(f"/api/v1.0/search?q=random&t={content_type}")
|
||||||
# Assert
|
# Assert
|
||||||
assert response.status_code == 200
|
assert response.status_code == 200
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------------------------------
|
||||||
def test_reload_with_invalid_content_type():
|
def test_update_with_invalid_content_type():
|
||||||
# Act
|
# Act
|
||||||
response = client.get(f"/reload?t=invalid_content_type")
|
response = client.get(f"/api/v1.0/update?t=invalid_content_type")
|
||||||
|
|
||||||
# Assert
|
# Assert
|
||||||
assert response.status_code == 422
|
assert response.status_code == 422
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------------------------------
|
||||||
def test_reload_with_valid_content_type(content_config: ContentConfig, search_config: SearchConfig):
|
def test_update_with_valid_content_type(content_config: ContentConfig, search_config: SearchConfig):
|
||||||
# Arrange
|
# Arrange
|
||||||
config.content_type = content_config
|
config.content_type = content_config
|
||||||
config.search_type = search_config
|
config.search_type = search_config
|
||||||
|
|
||||||
for content_type in ["org", "markdown", "ledger", "music"]:
|
for content_type in ["org", "markdown", "ledger", "music"]:
|
||||||
# Act
|
# Act
|
||||||
response = client.get(f"/reload?t={content_type}")
|
response = client.get(f"/api/v1.0/update?t={content_type}")
|
||||||
# Assert
|
# Assert
|
||||||
assert response.status_code == 200
|
assert response.status_code == 200
|
||||||
|
|
||||||
@@ -73,7 +73,7 @@ def test_reload_with_valid_content_type(content_config: ContentConfig, search_co
|
|||||||
# ----------------------------------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------------------------------
|
||||||
def test_regenerate_with_invalid_content_type():
|
def test_regenerate_with_invalid_content_type():
|
||||||
# Act
|
# Act
|
||||||
response = client.get(f"/regenerate?t=invalid_content_type")
|
response = client.get(f"/api/v1.0/update?force=true&t=invalid_content_type")
|
||||||
|
|
||||||
# Assert
|
# Assert
|
||||||
assert response.status_code == 422
|
assert response.status_code == 422
|
||||||
@@ -87,7 +87,7 @@ def test_regenerate_with_valid_content_type(content_config: ContentConfig, searc
|
|||||||
|
|
||||||
for content_type in ["org", "markdown", "ledger", "music", "image"]:
|
for content_type in ["org", "markdown", "ledger", "music", "image"]:
|
||||||
# Act
|
# Act
|
||||||
response = client.get(f"/regenerate?t={content_type}")
|
response = client.get(f"/api/v1.0/update?force=true&t={content_type}")
|
||||||
# Assert
|
# Assert
|
||||||
assert response.status_code == 200
|
assert response.status_code == 200
|
||||||
|
|
||||||
@@ -104,7 +104,7 @@ def test_image_search(content_config: ContentConfig, search_config: SearchConfig
|
|||||||
|
|
||||||
for query, expected_image_name in query_expected_image_pairs:
|
for query, expected_image_name in query_expected_image_pairs:
|
||||||
# Act
|
# Act
|
||||||
response = client.get(f"/search?q={query}&n=1&t=image")
|
response = client.get(f"/api/v1.0/search?q={query}&n=1&t=image")
|
||||||
|
|
||||||
# Assert
|
# Assert
|
||||||
assert response.status_code == 200
|
assert response.status_code == 200
|
||||||
@@ -122,7 +122,7 @@ def test_notes_search(content_config: ContentConfig, search_config: SearchConfig
|
|||||||
user_query = quote("How to git install application?")
|
user_query = quote("How to git install application?")
|
||||||
|
|
||||||
# Act
|
# Act
|
||||||
response = client.get(f"/search?q={user_query}&n=1&t=org&r=true")
|
response = client.get(f"/api/v1.0/search?q={user_query}&n=1&t=org&r=true")
|
||||||
|
|
||||||
# Assert
|
# Assert
|
||||||
assert response.status_code == 200
|
assert response.status_code == 200
|
||||||
@@ -139,7 +139,7 @@ def test_notes_search_with_only_filters(content_config: ContentConfig, search_co
|
|||||||
user_query = quote('+"Emacs" file:"*.org"')
|
user_query = quote('+"Emacs" file:"*.org"')
|
||||||
|
|
||||||
# Act
|
# Act
|
||||||
response = client.get(f"/search?q={user_query}&n=1&t=org")
|
response = client.get(f"/api/v1.0/search?q={user_query}&n=1&t=org")
|
||||||
|
|
||||||
# Assert
|
# Assert
|
||||||
assert response.status_code == 200
|
assert response.status_code == 200
|
||||||
@@ -156,7 +156,7 @@ def test_notes_search_with_include_filter(content_config: ContentConfig, search_
|
|||||||
user_query = quote('How to git install application? +"Emacs"')
|
user_query = quote('How to git install application? +"Emacs"')
|
||||||
|
|
||||||
# Act
|
# Act
|
||||||
response = client.get(f"/search?q={user_query}&n=1&t=org")
|
response = client.get(f"/api/v1.0/search?q={user_query}&n=1&t=org")
|
||||||
|
|
||||||
# Assert
|
# Assert
|
||||||
assert response.status_code == 200
|
assert response.status_code == 200
|
||||||
@@ -173,7 +173,7 @@ def test_notes_search_with_exclude_filter(content_config: ContentConfig, search_
|
|||||||
user_query = quote('How to git install application? -"clone"')
|
user_query = quote('How to git install application? -"clone"')
|
||||||
|
|
||||||
# Act
|
# Act
|
||||||
response = client.get(f"/search?q={user_query}&n=1&t=org")
|
response = client.get(f"/api/v1.0/search?q={user_query}&n=1&t=org")
|
||||||
|
|
||||||
# Assert
|
# Assert
|
||||||
assert response.status_code == 200
|
assert response.status_code == 200
|
||||||
|
|||||||
Reference in New Issue
Block a user