We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Noticed this:
symbex '*alias*' -f ../llm/llm/__init__.py -sn
def get_models_with_aliases() -> List[?] def get_embedding_models_with_aliases() -> List[?] def get_embedding_model_aliases() -> Dict[(str, EmbeddingModel)] def get_model_aliases() -> Dict[(str, Model)] def set_alias(alias, model_id_or_alias) def remove_alias(alias)
Those signatures would be valid Python if they had a : at the end.
:
Even more so with docstrings:
symbex '*alias*' -f ../llm/llm/__init__.py -ns --docs --documented
def set_alias(alias, model_id_or_alias) "Set an alias to point to the specified model." def remove_alias(alias) "Remove an alias."
The text was updated successfully, but these errors were encountered:
After the fix:
def set_alias(alias, model_id_or_alias): "Set an alias to point to the specified model." def remove_alias(alias): "Remove an alias."
Sorry, something went wrong.
cd7eae3
Release 1.3.1
828166f
Refs #39
Inspired by:
No branches or pull requests
Noticed this:
symbex '*alias*' -f ../llm/llm/__init__.py -sn
Those signatures would be valid Python if they had a
:
at the end.Even more so with docstrings:
symbex '*alias*' -f ../llm/llm/__init__.py -ns --docs --documented
The text was updated successfully, but these errors were encountered: