-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from alan-turing-institute/15-change-model-to-api
Change "model" to "api"
- Loading branch information
Showing
11 changed files
with
42 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"gemini-1.0-pro": {"model":"gemini", "model_name":"gemini-1.0-pro-002", "parameters": {"temperature": 0}}} | ||
{"gemini-1.0-pro": {"api":"gemini", "model_name":"gemini-1.0-pro-002", "parameters": {"temperature": 0}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{"id": 9, "prompt": ["Hello", "My name is Bob and I'm 6 years old", "How old am I next year?"], "model": "azure_openai", "model_name": "reginald-gpt4", "parameters": {"temperature": 1, "top_p": 0.8}} | ||
{"id": 10, "prompt": ["Can you give me a random number between 1-10?", "What is +5 of that number?", "What is half of that number?"], "model": "azure_openai", "parameters": {"temperature": 0.5, "top_p": 0.6}} | ||
{"id": 11, "prompt": "How many theaters are there in London's South End?", "model": "azure_openai"} | ||
{"id": 9, "prompt": ["Hello", "My name is Bob and I'm 6 years old", "How old am I next year?"], "api": "azure_openai", "model_name": "reginald-gpt4", "parameters": {"temperature": 1, "top_p": 0.8}} | ||
{"id": 10, "prompt": ["Can you give me a random number between 1-10?", "What is +5 of that number?", "What is half of that number?"], "api": "azure_openai", "parameters": {"temperature": 0.5, "top_p": 0.6}} | ||
{"id": 11, "prompt": "How many theaters are there in London's South End?", "api": "azure_openai"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{"id": 9, "prompt": ["Hello", "My name is Bob and I'm 6 years old", "How old am I next year?"], "api": "openai", "model_name": "gpt-3.5-turbo-instruct", "parameters": {"temperature": 1, "top_p": 0.8}} | ||
{"id": 10, "prompt": ["Can you give me a random number between 1-10?", "What is +5 of that number?", "What is half of that number?"], "api": "openai", "parameters": {"temperature": 0.5, "top_p": 0.6}} | ||
{"id": 11, "prompt": "How many theaters are there in London's South End?", "api": "openai"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{"id": 9, "prompt": ["Hello", "My name is Bob and I'm 6 years old", "How old am I next year?"], "model": "unknown-model-name", "parameters": {"candidate_count": 1, "max_output_tokens": 64, "temperature": 1, "top_k": 40}} | ||
{"id": 10, "prompt": ["Can you give me a random number between 1-10?", "What is +5 of that number?", "What is half of that number?"], "model": "unknown-model-name", "parameters": {"candidate_count": 1, "max_output_tokens": 128, "temperature": 0.5, "top_k": 40}} | ||
{"id": 11, "prompt": "How many theaters are there in London's South End?", "model": "unknown-model-name"} | ||
{"id": 9, "prompt": ["Hello", "My name is Bob and I'm 6 years old", "How old am I next year?"], "api": "unknown-model-name", "parameters": {"candidate_count": 1, "max_output_tokens": 64, "temperature": 1, "top_k": 40}} | ||
{"id": 10, "prompt": ["Can you give me a random number between 1-10?", "What is +5 of that number?", "What is half of that number?"], "api": "unknown-model-name", "parameters": {"candidate_count": 1, "max_output_tokens": 128, "temperature": 0.5, "top_k": 40}} | ||
{"id": 11, "prompt": "How many theaters are there in London's South End?", "api": "unknown-model-name"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{"id": 9, "prompt": ["Hello", "My name is Bob and I'm 6 years old", "How old am I next year?"], "model": "gemini", "parameters": {"candidate_count": 1, "max_output_tokens": 64, "temperature": 1, "top_k": 40}} | ||
{"id": 10, "prompt": ["Can you give me a random number between 1-10?", "What is +5 of that number?", "What is half of that number?"], "model": "gemini", "parameters": {"candidate_count": 1, "max_output_tokens": 128, "temperature": 0.5, "top_k": 40}} | ||
{"id": 11, "prompt": "How many theaters are there in London's South End?", "model": "gemini"} | ||
{"id": 9, "prompt": ["Hello", "My name is Bob and I'm 6 years old", "How old am I next year?"], "api": "gemini", "parameters": {"candidate_count": 1, "max_output_tokens": 64, "temperature": 1, "top_k": 40}} | ||
{"id": 10, "prompt": ["Can you give me a random number between 1-10?", "What is +5 of that number?", "What is half of that number?"], "api": "gemini", "parameters": {"candidate_count": 1, "max_output_tokens": 128, "temperature": 0.5, "top_k": 40}} | ||
{"id": 11, "prompt": "How many theaters are there in London's South End?", "api": "gemini"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{"id": 9, "prompt": "Hello, my name is Bob and I'm 6 years old. How old am I next year?", "model": "ollama", "model_name": "gemma", "parameters": {"temperature": 1}} | ||
{"id": 10, "prompt": "Can you give me a random number between 1-10?", "model": "ollama", "model_name": "llama", "parameters": {"temperature": 0.5}} | ||
{"id": 11, "prompt": "How many theaters are there in London's South End?", "model": "ollama"} | ||
{"id": 9, "prompt": "Hello, my name is Bob and I'm 6 years old. How old am I next year?", "api": "ollama", "model_name": "gemma", "parameters": {"temperature": 1}} | ||
{"id": 10, "prompt": "Can you give me a random number between 1-10?", "api": "ollama", "model_name": "llama", "parameters": {"temperature": 0.5}} | ||
{"id": 11, "prompt": "How many theaters are there in London's South End?", "api": "ollama"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters