Skip to content

Commit

Permalink
feat(release): 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ckt1031 committed Jun 24, 2023
1 parent 5da6e4c commit d5d0374
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To configure the AI plugin, you need to provide your OpenAI API key and further
There are also some additional options that you can configure:

- **OpenAI Base URL**: The base URL for the OpenAI API. You can change this if you want to use a different API endpoint, suitable for users who cannot access the OpenAI directly or intented to use third party services.
- **OpenAI Model**: The model to use for the AI. The default is `gpt-3.5-turbo`, which is the most stablest and suitable model. You can also use `gpt-3.5-turbo-0613` or `gpt-3.5-turbo-16k` for faster or longer results. or even `gpt-4` (Not recommended) and `gpt-4-32k` (Not recommended) for the most powerful model.
- **OpenAI Model**: The model to use for the AI. The default is `gpt-3.5-turbo`, which is the most stablest and suitable model. You can also use `gpt-3.5-turbo-0613` or `gpt-3.5-turbo-16k` for faster or longer results. or even `gpt-4` (Not recommended) and `gpt-4-32k` (Not recommended) for the most powerful model.
- **Temperature**: The higher the temperature, the crazier the text. The temperature can be any number between 0 and 1, but OpenAI recommends keeping it between 0.7 and 1.0.
- **Frequency Penalty**: Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim.
- **Presence Penalty**: Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics..
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"isDesktopOnly": false,
"minAppVersion": "1.0.0",
"name": "AI Plugin",
"version": "0.0.1"
"version": "0.0.2"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-ai-plugin",
"version": "0.0.1",
"version": "0.0.2",
"description": "Obsidian plugin for AI content generation",
"license": "MIT",
"author": "ckt1031",
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"0.0.1": "1.0.0"
"0.0.1": "1.0.0",
"0.0.2": "1.0.0"
}

0 comments on commit d5d0374

Please sign in to comment.