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

fix: added anthropic platform #156

Merged
merged 1 commit into from
Mar 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ Sagify provides a set of intuitive command-line interface (CLI) commands to simp
You can run `sagify llm platforms` to get a list of all supported backend LLM platforms:

- [OpenAI](https://platform.openai.com/docs/overview)
- [Anthropic](https://docs.anthropic.com)
- [AWS Sagemaker](https://aws.amazon.com/sagemaker). This option enables you to deploy open-source LLMs to AWS and leverage the powerful AWS computing platform.

The architectural design of the Sagify LLM Gateway is elegantly simple, comprising key components to facilitate seamless interaction with both proprietary and open-source Large Language Models (LLMs).
Expand Down
3 changes: 2 additions & 1 deletion sagify/commands/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ def platforms():
Commands to list supported platforms for LLM models
"""
logger.info("Platforms:")
logger.info(" - OpenAI: https://platform.openai.com/docs/overview")
logger.info(f" - OpenAI: {OPENAI_BASE_URL}/{OPENAI_DOCS}/overview")
logger.info(f" - Anthropic: {ANTHROPIC_BASE_URL}")
logger.info(" - AWS Sagemaker: https://aws.amazon.com/sagemaker")


Expand Down
Loading