mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-30 10:19:32 +00:00
fold openai responses into the Agents API
This commit is contained in:
parent
207224a811
commit
abd6280cb8
25 changed files with 967 additions and 199 deletions
|
|
@ -24,8 +24,6 @@ distribution_spec:
|
|||
- inline::basic
|
||||
- inline::llm-as-judge
|
||||
- inline::braintrust
|
||||
openai_responses:
|
||||
- inline::openai-responses
|
||||
tool_runtime:
|
||||
- remote::brave-search
|
||||
- remote::tavily-search
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ apis:
|
|||
- datasetio
|
||||
- eval
|
||||
- inference
|
||||
- openai_responses
|
||||
- safety
|
||||
- scoring
|
||||
- telemetry
|
||||
|
|
@ -88,14 +87,6 @@ providers:
|
|||
provider_type: inline::braintrust
|
||||
config:
|
||||
openai_api_key: ${env.OPENAI_API_KEY:}
|
||||
openai_responses:
|
||||
- provider_id: openai-responses
|
||||
provider_type: inline::openai-responses
|
||||
config:
|
||||
kvstore:
|
||||
type: sqlite
|
||||
namespace: null
|
||||
db_path: ${env.SQLITE_STORE_DIR:~/.llama/distributions/together}/openai_responses.db
|
||||
tool_runtime:
|
||||
- provider_id: brave-search
|
||||
provider_type: remote::brave-search
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ apis:
|
|||
- datasetio
|
||||
- eval
|
||||
- inference
|
||||
- openai_responses
|
||||
- safety
|
||||
- scoring
|
||||
- telemetry
|
||||
|
|
@ -83,14 +82,6 @@ providers:
|
|||
provider_type: inline::braintrust
|
||||
config:
|
||||
openai_api_key: ${env.OPENAI_API_KEY:}
|
||||
openai_responses:
|
||||
- provider_id: openai-responses
|
||||
provider_type: inline::openai-responses
|
||||
config:
|
||||
kvstore:
|
||||
type: sqlite
|
||||
namespace: null
|
||||
db_path: ${env.SQLITE_STORE_DIR:~/.llama/distributions/together}/openai_responses.db
|
||||
tool_runtime:
|
||||
- provider_id: brave-search
|
||||
provider_type: remote::brave-search
|
||||
|
|
|
|||
|
|
@ -36,7 +36,6 @@ def get_distribution_template() -> DistributionTemplate:
|
|||
"eval": ["inline::meta-reference"],
|
||||
"datasetio": ["remote::huggingface", "inline::localfs"],
|
||||
"scoring": ["inline::basic", "inline::llm-as-judge", "inline::braintrust"],
|
||||
"openai_responses": ["inline::openai-responses"],
|
||||
"tool_runtime": [
|
||||
"remote::brave-search",
|
||||
"remote::tavily-search",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue