2024-04-15 09:22:06 -04:00
|
|
|
import Component from "@glimmer/component";
|
|
|
|
import { tracked } from "@glimmer/tracking";
|
2024-05-08 22:11:50 -04:00
|
|
|
import { on } from "@ember/modifier";
|
2024-04-15 09:22:06 -04:00
|
|
|
import { action } from "@ember/object";
|
|
|
|
import { next } from "@ember/runloop";
|
|
|
|
import { htmlSafe } from "@ember/template";
|
|
|
|
import DButton from "discourse/components/d-button";
|
|
|
|
import DModal from "discourse/components/d-modal";
|
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2024-11-11 16:14:30 -05:00
|
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
2024-04-15 09:22:06 -04:00
|
|
|
import { clipboardCopy, escapeExpression } from "discourse/lib/utilities";
|
|
|
|
import i18n from "discourse-common/helpers/i18n";
|
|
|
|
import discourseLater from "discourse-common/lib/later";
|
|
|
|
import I18n from "discourse-i18n";
|
2024-06-27 03:27:40 -04:00
|
|
|
import { jsonToHtml } from "../../lib/utilities";
|
2024-04-15 09:22:06 -04:00
|
|
|
|
|
|
|
export default class DebugAiModal extends Component {
|
|
|
|
@tracked info = null;
|
|
|
|
@tracked justCopiedText = "";
|
2024-05-08 22:11:50 -04:00
|
|
|
@tracked activeTab = "request";
|
2024-04-15 09:22:06 -04:00
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super(...arguments);
|
|
|
|
next(() => {
|
|
|
|
this.loadApiRequestInfo();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
get htmlContext() {
|
|
|
|
if (!this.info) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
let parsed;
|
|
|
|
|
|
|
|
try {
|
2024-05-08 22:11:50 -04:00
|
|
|
if (this.activeTab === "request") {
|
|
|
|
parsed = JSON.parse(this.info.raw_request_payload);
|
|
|
|
} else {
|
|
|
|
return this.formattedResponse(this.info.raw_response_payload);
|
|
|
|
}
|
2024-11-19 05:57:40 -05:00
|
|
|
} catch {
|
2024-04-15 09:22:06 -04:00
|
|
|
return this.info.raw_request_payload;
|
|
|
|
}
|
|
|
|
|
2024-06-27 03:27:40 -04:00
|
|
|
return jsonToHtml(parsed);
|
2024-04-15 09:22:06 -04:00
|
|
|
}
|
|
|
|
|
2024-05-08 22:11:50 -04:00
|
|
|
formattedResponse(response) {
|
|
|
|
// we need to replace the new lines with <br> to make it look good
|
|
|
|
const split = response.split("\n");
|
|
|
|
const safe = split.map((line) => escapeExpression(line)).join("<br>");
|
|
|
|
|
|
|
|
return htmlSafe(safe);
|
|
|
|
}
|
|
|
|
|
2024-04-15 09:22:06 -04:00
|
|
|
@action
|
|
|
|
copyRequest() {
|
|
|
|
this.copy(this.info.raw_request_payload);
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
copyResponse() {
|
|
|
|
this.copy(this.info.raw_response_payload);
|
|
|
|
}
|
|
|
|
|
2024-11-11 16:14:30 -05:00
|
|
|
async loadLog(logId) {
|
|
|
|
try {
|
|
|
|
await ajax(`/discourse-ai/ai-bot/show-debug-info/${logId}.json`).then(
|
|
|
|
(result) => {
|
|
|
|
this.info = result;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
} catch (e) {
|
|
|
|
popupAjaxError(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
prevLog() {
|
|
|
|
this.loadLog(this.info.prev_log_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
nextLog() {
|
|
|
|
this.loadLog(this.info.next_log_id);
|
|
|
|
}
|
|
|
|
|
2024-04-15 09:22:06 -04:00
|
|
|
copy(text) {
|
|
|
|
clipboardCopy(text);
|
|
|
|
this.justCopiedText = I18n.t("discourse_ai.ai_bot.conversation_shared");
|
|
|
|
|
|
|
|
discourseLater(() => {
|
|
|
|
this.justCopiedText = "";
|
|
|
|
}, 2000);
|
|
|
|
}
|
|
|
|
|
|
|
|
loadApiRequestInfo() {
|
2024-11-11 16:14:30 -05:00
|
|
|
ajax(`/discourse-ai/ai-bot/post/${this.args.model.id}/show-debug-info.json`)
|
|
|
|
.then((result) => {
|
|
|
|
this.info = result;
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
popupAjaxError(e);
|
|
|
|
});
|
2024-04-15 09:22:06 -04:00
|
|
|
}
|
|
|
|
|
2024-05-08 22:11:50 -04:00
|
|
|
get requestActive() {
|
|
|
|
return this.activeTab === "request" ? "active" : "";
|
|
|
|
}
|
|
|
|
|
|
|
|
get responseActive() {
|
|
|
|
return this.activeTab === "response" ? "active" : "";
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
requestClicked(e) {
|
|
|
|
this.activeTab = "request";
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
responseClicked(e) {
|
|
|
|
this.activeTab = "response";
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
|
2024-04-15 09:22:06 -04:00
|
|
|
<template>
|
|
|
|
<DModal
|
|
|
|
class="ai-debug-modal"
|
|
|
|
@title={{i18n "discourse_ai.ai_bot.debug_ai_modal.title"}}
|
|
|
|
@closeModal={{@closeModal}}
|
|
|
|
>
|
|
|
|
<:body>
|
2024-05-08 22:11:50 -04:00
|
|
|
<ul class="nav nav-pills ai-debug-modal__nav">
|
|
|
|
<li><a
|
|
|
|
href=""
|
|
|
|
class={{this.requestActive}}
|
|
|
|
{{on "click" this.requestClicked}}
|
|
|
|
>{{i18n "discourse_ai.ai_bot.debug_ai_modal.request"}}</a></li>
|
|
|
|
<li><a
|
|
|
|
href=""
|
|
|
|
class={{this.responseActive}}
|
|
|
|
{{on "click" this.responseClicked}}
|
|
|
|
>{{i18n "discourse_ai.ai_bot.debug_ai_modal.response"}}</a></li>
|
|
|
|
</ul>
|
2024-04-15 09:22:06 -04:00
|
|
|
<div class="ai-debug-modal__tokens">
|
|
|
|
<span>
|
|
|
|
{{i18n "discourse_ai.ai_bot.debug_ai_modal.request_tokens"}}
|
|
|
|
{{this.info.request_tokens}}
|
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
{{i18n "discourse_ai.ai_bot.debug_ai_modal.response_tokens"}}
|
|
|
|
{{this.info.response_tokens}}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div class="debug-ai-modal__preview">
|
|
|
|
{{this.htmlContext}}
|
|
|
|
</div>
|
|
|
|
</:body>
|
|
|
|
|
|
|
|
<:footer>
|
|
|
|
<DButton
|
|
|
|
class="btn confirm"
|
|
|
|
@icon="copy"
|
|
|
|
@action={{this.copyRequest}}
|
|
|
|
@label="discourse_ai.ai_bot.debug_ai_modal.copy_request"
|
|
|
|
/>
|
|
|
|
<DButton
|
|
|
|
class="btn confirm"
|
|
|
|
@icon="copy"
|
|
|
|
@action={{this.copyResponse}}
|
|
|
|
@label="discourse_ai.ai_bot.debug_ai_modal.copy_response"
|
|
|
|
/>
|
2024-11-11 16:14:30 -05:00
|
|
|
{{#if this.info.prev_log_id}}
|
|
|
|
<DButton
|
|
|
|
class="btn"
|
|
|
|
@icon="angles-left"
|
|
|
|
@action={{this.prevLog}}
|
|
|
|
@label="discourse_ai.ai_bot.debug_ai_modal.previous_log"
|
|
|
|
/>
|
|
|
|
{{/if}}
|
|
|
|
{{#if this.info.next_log_id}}
|
|
|
|
<DButton
|
|
|
|
class="btn"
|
|
|
|
@icon="angles-right"
|
|
|
|
@action={{this.nextLog}}
|
|
|
|
@label="discourse_ai.ai_bot.debug_ai_modal.next_log"
|
|
|
|
/>
|
|
|
|
{{/if}}
|
2024-04-15 09:22:06 -04:00
|
|
|
<span class="ai-debut-modal__just-copied">{{this.justCopiedText}}</span>
|
|
|
|
</:footer>
|
|
|
|
</DModal>
|
|
|
|
</template>
|
|
|
|
}
|