Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v10.16 #1074

Merged
merged 28 commits into from
Oct 6, 2024
Merged

v10.16 #1074

Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
eb7f89f
commands(select-roles-update): implement roles update
iamtraction Sep 28, 2024
d62b072
version: 10.16.0
iamtraction Sep 28, 2024
aeae60f
deps: update
iamtraction Sep 28, 2024
e054571
settings: update example
iamtraction Sep 28, 2024
6bda47d
eslint: upgrade to v9
iamtraction Sep 28, 2024
2b9f227
eslint: remove old config
iamtraction Sep 28, 2024
b427194
eslint(config): add new config
iamtraction Sep 28, 2024
0a352be
chore: linting
iamtraction Sep 28, 2024
ee1d92c
workflows(nodejs): use node 20.x
iamtraction Sep 28, 2024
611b00a
deps: update tesseract
iamtraction Sep 28, 2024
195880d
listeners(messageDeleteBulk): update typings
iamtraction Sep 28, 2024
d641f80
deps: update
iamtraction Oct 6, 2024
ecc7906
chore: linting
iamtraction Oct 6, 2024
40493e1
deps: add google gen ai lib
iamtraction Oct 6, 2024
c4f63b1
types: add typings for gemini settings
iamtraction Oct 6, 2024
9f0a3cd
settings: update example
iamtraction Oct 6, 2024
b300490
commands(chat): implement gemini support
iamtraction Oct 6, 2024
80f562a
deps: add anthropic sdk
iamtraction Oct 6, 2024
5f1e1f2
types: add typings for anthropic settings
iamtraction Oct 6, 2024
84893e1
settings: update example
iamtraction Oct 6, 2024
3fcb610
commands(chat): implement claude support
iamtraction Oct 6, 2024
8a9690f
commands(chat): update description
iamtraction Oct 6, 2024
4ab51a2
chore: generate command descriptions
iamtraction Oct 6, 2024
db1da65
commands(chat): add user metadata
iamtraction Oct 6, 2024
1191a9f
commands(translate): add metadata
iamtraction Oct 6, 2024
16cf016
actions: add Translate context menu command
iamtraction Oct 6, 2024
412fa90
actions: add Sentiment command
iamtraction Oct 6, 2024
66d8955
chore: generate commands data
iamtraction Oct 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
settings: update example
Signed-off-by: TRACTION <19631364+iamtraction@users.noreply.github.com>
  • Loading branch information
iamtraction committed Oct 6, 2024
commit 9f0a3cdfded80e13809bae56c53d1b9302bc2955
11 changes: 11 additions & 0 deletions settings.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,17 @@ openai:
# Change the `maxTokens` value to set the length of ChatGPT's responses.
# https://platform.openai.com/tokenizer
maxTokens: 100
# Required for `chat` command to use the Google's Gemini APIs.
# API pricing depends on these values.
# For more details, check https://ai.google.dev/pricing
gemini:
apiKey: ""
# If you want to use Gemini 1.5 Pro, set `model` to `gemini-1.5-pro`.
# https://ai.google.dev/gemini-api/docs/models/gemini
model: "gemini-1.5-flash"
# Change the `maxOutputTokens` value to set the length of ChatGPT's responses.
# https://ai.google.dev/gemini-api/docs/tokens
maxOutputTokens: 256
# Required for `weather` command.
openWeatherMapApiKey: ""
# Required for `movie` and `tv` commands.
Expand Down