Skip to content

Commit

Permalink
removed syms
Browse files Browse the repository at this point in the history
  • Loading branch information
anish-palakurthi committed Jun 13, 2024
1 parent 6272990 commit 9cc16c3
Show file tree
Hide file tree
Showing 4 changed files with 199 additions and 4 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// These are LLM clients you can use in your functions. We currently support Anthropic, OpenAI / Azure, Gemini, and Ollama as providers but are expanding to many more.

// We also support any other provider that follows the OpenAI API specification, such as HuggingFace.

// For this playground, we have setup a few clients for you to use already with some free credits.

client<llm> GPT4 {
// Use one of the following: https://docs.boundaryml.com/v3/syntax/client/client#providers
provider openai
// You can pass in any parameters from the OpenAI Python documentation into the options block.
options {
model gpt-4
api_key env.OPENAI_API_KEY
}
}

client<llm> GPT4Turbo {
provider openai
options {
model gpt-4-turbo
api_key env.OPENAI_API_KEY
}
}

client<llm> GPT35 {
provider openai
options {
model gpt-3.5-turbo
api_key env.OPENAI_API_KEY
}
}

client<llm> Claude {
provider anthropic
options {
model claude-3-haiku-20240307
api_key env.ANTHROPIC_API_KEY
max_tokens 1000

}
}

client<llm> Gemini {
provider google-ai
options{
model "gemini-1.5-pro-001"
api_key env.GOOGLE_API_KEY
}
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// These are LLM clients you can use in your functions. We currently support Anthropic, OpenAI / Azure, Gemini, and Ollama as providers but are expanding to many more.

// We also support any other provider that follows the OpenAI API specification, such as HuggingFace.

// For this playground, we have setup a few clients for you to use already with some free credits.

client<llm> GPT4 {
// Use one of the following: https://docs.boundaryml.com/v3/syntax/client/client#providers
provider openai
// You can pass in any parameters from the OpenAI Python documentation into the options block.
options {
model gpt-4
api_key env.OPENAI_API_KEY
}
}

client<llm> GPT4Turbo {
provider openai
options {
model gpt-4-turbo
api_key env.OPENAI_API_KEY
}
}

client<llm> GPT35 {
provider openai
options {
model gpt-3.5-turbo
api_key env.OPENAI_API_KEY
}
}

client<llm> Claude {
provider anthropic
options {
model claude-3-haiku-20240307
api_key env.ANTHROPIC_API_KEY
max_tokens 1000

}
}

client<llm> Gemini {
provider google-ai
options{
model "gemini-1.5-pro-001"
api_key env.GOOGLE_API_KEY
}
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// These are LLM clients you can use in your functions. We currently support Anthropic, OpenAI / Azure, Gemini, and Ollama as providers but are expanding to many more.

// We also support any other provider that follows the OpenAI API specification, such as HuggingFace.

// For this playground, we have setup a few clients for you to use already with some free credits.

client<llm> GPT4 {
// Use one of the following: https://docs.boundaryml.com/v3/syntax/client/client#providers
provider openai
// You can pass in any parameters from the OpenAI Python documentation into the options block.
options {
model gpt-4
api_key env.OPENAI_API_KEY
}
}

client<llm> GPT4Turbo {
provider openai
options {
model gpt-4-turbo
api_key env.OPENAI_API_KEY
}
}

client<llm> GPT35 {
provider openai
options {
model gpt-3.5-turbo
api_key env.OPENAI_API_KEY
}
}

client<llm> Claude {
provider anthropic
options {
model claude-3-haiku-20240307
api_key env.ANTHROPIC_API_KEY
max_tokens 1000

}
}

client<llm> Gemini {
provider google-ai
options{
model "gemini-1.5-pro-001"
api_key env.GOOGLE_API_KEY
}
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
// These are LLM clients you can use in your functions. We currently support Anthropic, OpenAI / Azure, Gemini, and Ollama as providers but are expanding to many more.

// We also support any other provider that follows the OpenAI API specification, such as HuggingFace.

// For this playground, we have setup a few clients for you to use already with some free credits.

client<llm> GPT4 {
// Use one of the following: https://docs.boundaryml.com/v3/syntax/client/client#providers
provider openai
// You can pass in any parameters from the OpenAI Python documentation into the options block.
options {
model gpt-4
api_key env.OPENAI_API_KEY
}
}

client<llm> GPT4Turbo {
provider openai
options {
model gpt-4-turbo
api_key env.OPENAI_API_KEY
}
}

client<llm> GPT35 {
provider openai
options {
model gpt-3.5-turbo
api_key env.OPENAI_API_KEY
}
}

client<llm> Claude {
provider anthropic
options {
model claude-3-haiku-20240307
api_key env.ANTHROPIC_API_KEY
max_tokens 1000

}
}

client<llm> Gemini {
provider google-ai
options{
model "gemini-1.5-pro-001"
api_key env.GOOGLE_API_KEY
}
}

0 comments on commit 9cc16c3

Please sign in to comment.