-
Notifications
You must be signed in to change notification settings - Fork 126
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
refactor: 🎨 update model alias handling logic #952
Changes from 2 commits
5057e49
2fca8b5
8e0eab7
55b0e22
f7a21df
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,9 +81,10 @@ | |
- `large`: `gpt-4o like` model | ||
- `small`: `gpt-4o-mini` model or similar. A smaller, cheaper faster model | ||
- `vision`: `gpt-4o-mini`. A model that can analyze images | ||
- `reasoning`: `o1` or `o1-preview`. | ||
- `reasoning-small`: `o1-mini`. | ||
|
||
Check warning on line 86 in docs/src/content/docs/reference/scripts/model-aliases.mdx GitHub Actions / build
|
||
The following aliases are also set so that you can override LLMs used by GenAIScript itself. | ||
|
||
- `reasoning`: `large`. In the future, `o1` like models. | ||
- `agent`: `large`. Model used by the Agent LLM. | ||
- `memory`: `small`. Moel used by the agent short term memory. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The sentence is grammatically correct but could be clearer. Consider rephrasing it to improve readability. For example: "These aliases are also set so that you can override the LLMs used by GenAIScript itself."
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The model aliases
reasoning
andreasoning-small
are not clearly defined. It's unclear what models they map to (o1
,o1-preview
,o1-mini
). Consider providing more details or examples for clarity.