-
Notifications
You must be signed in to change notification settings - Fork 504
add Client Pool #815
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
Merged
Merged
add Client Pool #815
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
5bd9ad5
add client pool
hallerite b5e9b70
Merge branch 'main' into hallerite/client-pool
hallerite 4e0c08c
satisfy ruff
hallerite c3201fb
fix bugbot stuff
hallerite edc92ae
Merge branch 'main' into hallerite/client-pool
willccbb 933eead
Fix invalid client run_group args
willccbb 314042c
Update eval config naming
willccbb 98ce153
ruff
willccbb bdd704e
Fix eval config naming
willccbb 94706fa
Fix eval_utils dict typing error
willccbb fb9af5c
Handle empty client configs safely
willccbb bf76918
Fix endpoint validation for dirs
willccbb e103f3c
Clean up endpoint config handling
willccbb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,215 @@ | ||
| [[endpoint]] | ||
| endpoint_id = "olmo3-32b-t" | ||
| model = "allenai/olmo-3-32b-think" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "olmo3-7b-i" | ||
| model = "allenai/olmo-3-7b-instruct" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "olmo3-7b-t" | ||
| model = "allenai/olmo-3-7b-think" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "trinity-mini" | ||
| model = "arcee/trinity-mini" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "haiku" | ||
| model = "anthropic/claude-4.5-haiku" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "sonnet" | ||
| model = "anthropic/claude-4.5-sonnet" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "opus" | ||
| model = "anthropic/claude-4.5-opus" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gemini-2.5-flash" | ||
| model = "google/gemini-2.5-flash" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gemini-2.5-pro" | ||
| model = "google/gemini-2.5-pro" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gemini-3-flash" | ||
| model = "google/gemini-3-flash" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gemini-3-pro" | ||
| model = "google/gemini-3-pro-preview" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gemini-3-pro-exp" | ||
| model = "google/gemini-3-pro-preview" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "qwen3-30b-i" | ||
| model = "qwen/qwen3-30b-a3b-instruct-2507" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "qwen3-30b-t" | ||
| model = "qwen/qwen3-30b-a3b-thinking-2507" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "qwen3-235b-i" | ||
| model = "qwen/qwen3-235b-a22b-instruct-2507" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "qwen3-235b-t" | ||
| model = "qwen/qwen3-235b-a22b-thinking-2507" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "qwen3-vl-30b-i" | ||
| model = "qwen/qwen3-vl-30b-a3b-instruct" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "qwen3-vl-30b-t" | ||
| model = "qwen/qwen3-vl-30b-a3b-thinking" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "qwen3-vl-235b-i" | ||
| model = "qwen/qwen3-vl-235b-a22b-instruct" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "qwen3-vl-235b-t" | ||
| model = "qwen/qwen3-vl-235b-a22b-thinking" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "kimi-k2" | ||
| model = "moonshotai/kimi-k2-0905" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "kimi-k2-t" | ||
| model = "moonshotai/kimi-k2-thinking" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gpt-oss-120b" | ||
| model = "openai/gpt-oss-120b" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gpt-oss-20b" | ||
| model = "openai/gpt-oss-20b" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gpt-4.1-nano" | ||
| model = "gpt-4.1-nano" | ||
| url = "https://api.openai.com/v1" | ||
| key = "OPENAI_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gpt-4.1-mini" | ||
| model = "gpt-4.1-mini" | ||
| url = "https://api.openai.com/v1" | ||
| key = "OPENAI_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gpt-4.1" | ||
| model = "gpt-4.1" | ||
| url = "https://api.openai.com/v1" | ||
| key = "OPENAI_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gpt-5-nano" | ||
| model = "gpt-5-nano" | ||
| url = "https://api.openai.com/v1" | ||
| key = "OPENAI_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gpt-5-mini" | ||
| model = "gpt-5-mini" | ||
| url = "https://api.openai.com/v1" | ||
| key = "OPENAI_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gpt-5" | ||
| model = "gpt-5" | ||
| url = "https://api.openai.com/v1" | ||
| key = "OPENAI_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gpt-5.1" | ||
| model = "gpt-5.1" | ||
| url = "https://api.openai.com/v1" | ||
| key = "OPENAI_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "gpt-5.2" | ||
| model = "gpt-5.2" | ||
| url = "https://api.openai.com/v1" | ||
| key = "OPENAI_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "glm-4.5" | ||
| model = "z-ai/glm-4.5" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "glm-4.5-air" | ||
| model = "z-ai/glm-4.5-air" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "glm-4.6" | ||
| model = "z-ai/glm-4.6" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
|
|
||
| [[endpoint]] | ||
| endpoint_id = "glm-4.7" | ||
| model = "z-ai/glm-4.7" | ||
| url = "https://api.pinference.ai/api/v1" | ||
| key = "PRIME_API_KEY" | ||
This file contains hidden or 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,21 @@ | ||
| endpoints_path = "../endpoints.toml" | ||
|
|
||
| endpoint_id = "gpt-5-mini" | ||
| save_results = true | ||
| rollouts_per_example = 3 | ||
|
|
||
| [[eval]] | ||
| env_id = "bfcl-v3" | ||
| num_examples = 100 | ||
|
|
||
| [[eval]] | ||
| env_id = "tau2-bench" | ||
| num_examples = 100 | ||
|
|
||
| [[eval]] | ||
| env_id = "wiki-search" | ||
| num_examples = 100 | ||
|
|
||
| [[eval]] | ||
| env_id = "tool-test" | ||
| num_examples = 100 |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.