Skip to content

Commit

Permalink
added anthropic platform
Browse files Browse the repository at this point in the history
  • Loading branch information
dvarelas committed Mar 3, 2024
1 parent ed5359a commit 1ace63d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
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

0 comments on commit 1ace63d

Please sign in to comment.