Skip to content

Commit feac686

Browse files
committed
remove extra space
1 parent 0913b25 commit feac686

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-gpt",
33
"name": "GPT",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"minAppVersion": "0.9.12",
66
"description": "Obsidian plugin for getting language model completions from Openrouter. Use any supported model, including ChatGPT, Claude, LLaMa, and more.",
77
"author": "Jonathan Miller",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-gpt",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Obsidian plugin for getting language model completions from Openrouter. Use any supported model, including ChatGPT, Claude, LLaMa, and more.",
55
"main": "main.js",
66
"scripts": {

src/openrouter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const getCompletion = async (
4242
console.error(err);
4343
});
4444
const text = parseResponseText(res);
45-
return " " + text;
45+
return text;
4646
};
4747

4848
interface ORModel {

0 commit comments

Comments
 (0)