1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
import "@logseq/libs";
import React, { useEffect } from "react";
import * as ReactDOM from "react-dom/client";
import App from "./App";
import "./index.css";
import { logseq as PL } from "../package.json";
import { SettingSchemaDesc } from "@logseq/libs/dist/LSPlugin";
import { ollamaUI } from "./ollama";
// @ts-expect-error
const css = (t, ...args) => String.raw(t, ...args);
const pluginId = PL.id;
let settings: SettingSchemaDesc[] = [
{
key: "host",
type: "string",
title: "Host",
description: "Set the host of your ollama model",
default: "localhost:11434"
},
{
key: "model",
type: "string",
title: "LLM Model",
description: "Set your desired model to use ollama",
default: "mistral:instruct"
},
{
key: "shortcut",
type: "string",
title: "Shortcut",
description: "Shortcut to open plugin command pallete",
default: "mod+shift+o"
},
]
function main() {
console.info(`#${pluginId}: MAIN`);
logseq.useSettingsSchema(settings)
const root = ReactDOM.createRoot(document.getElementById("app")!);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
function createModel() {
return {
show() {
ollamaUI()
},
};
}
logseq.provideModel(createModel());
logseq.setMainUIInlineStyle({
zIndex: 11,
});
const openIconName = "ollama-ui-open";
logseq.provideStyle(css`
.${openIconName} {
opacity: 1;
font-size: 20px;
margin-top: 4px;
}
.${openIconName}:hover {
color: red;
}
`);
logseq.App.registerUIItem("toolbar", {
key: openIconName,
template: `
<a data-on-click="show"
class="button">
<i class="ti ti-wand"></i>
</a>
`,
});
}
logseq.ready(main).catch(console.error);
|