Skip to content

Commit

Permalink
1.0.9 Update
Browse files Browse the repository at this point in the history
  • Loading branch information
TfTHacker committed Apr 12, 2024
1 parent ef3777d commit 60f6f5d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# 1.0.9

- Minor adjustments have been made in preparation for release to the community plugin list.

# 1.0.6

- Restructured the ait API object. All the helper classes are now in a child object called `helpers`. This makes the API object cleaner and easier to use.
- Restructured the API object of ait. All the helper classes have been moved to a child object named `helpers`. This modification makes the API object cleaner and more user-friendly.

# 1.0.5

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "ai-templater",
"name": "AI for Templater",
"version": "1.0.8",
"version": "1.0.9",
"minAppVersion": "1.5.11",
"description": "AI Extension for the Templater plugin with the OpenAI Client Library.",
"author": "TfTHacker",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openaisdk",
"version": "1.0.8",
"version": "1.0.9",
"description": "AI for Templater plugin for Obsidian.",
"main": "main.js",
"scripts": {
Expand Down
10 changes: 5 additions & 5 deletions src/settings/SettingsTab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class OWlSettingTab extends PluginSettingTab {
});

new Setting(containerEl)
.setName('Max Tokens Per Request')
.setName('Max tokens per request')
.setDesc(
`Maximum number of tokens the AI can generate. This is a safety feature to prevent the AI from
running indefinitely. It also helps in managing costs.`
Expand All @@ -67,9 +67,9 @@ export class OWlSettingTab extends PluginSettingTab {
});

new Setting(containerEl)
.setName('Max Characters Per Outgoing Request')
.setName('Max characters per outgoing request')
.setDesc(
`Each model calcualtes tokens differently. This setting controls how many characters can be sent
`Each model calculates tokens differently. This setting controls how many characters can be sent
before a function call fails. This is not the same as token count, but is a safety measure to
prevent large amounts of text being sent and potentially large costs being incurred.`
)
Expand All @@ -82,7 +82,7 @@ export class OWlSettingTab extends PluginSettingTab {
});

new Setting(containerEl)
.setName('System Message')
.setName('System message')
.setDesc(`Default system message sent with each prompt. This message is used to initialize the conversation.`)
.setClass('ait-settings')
.addTextArea((textEl) => {
Expand All @@ -100,7 +100,7 @@ export class OWlSettingTab extends PluginSettingTab {
promotionalLinks(containerEl);
containerEl.createEl('hr');

containerEl.createEl('h1', { text: 'Debugging' });
new Setting(containerEl).setName('Debugging').setHeading();

new Setting(containerEl)
.setName(`Debug to the console`)
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"1.0.5": "1.5.11",
"1.0.6": "1.5.11",
"1.0.7": "1.5.11",
"1.0.8": "1.5.11"
"1.0.8": "1.5.11",
"1.0.9": "1.5.11"
}

0 comments on commit 60f6f5d

Please sign in to comment.