mirror of
https://github.com/katanemo/plano.git
synced 2026-04-29 19:06:34 +02:00
55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
version: v0.1
|
|
|
|
listeners:
|
|
egress_traffic:
|
|
address: 0.0.0.0
|
|
port: 12000
|
|
message_format: openai
|
|
timeout: 30s
|
|
|
|
llm_providers:
|
|
|
|
- name: local-llama
|
|
provider_interface: openai
|
|
model: llama3.2
|
|
endpoint: host.docker.internal:11434
|
|
default: true
|
|
|
|
system_prompt: |
|
|
You are a helpful assistant.
|
|
|
|
prompt_guards:
|
|
input_guards:
|
|
jailbreak:
|
|
on_exception:
|
|
message: Looks like you're curious about my abilities, but I can only provide assistance for currency exchange.
|
|
|
|
prompt_targets:
|
|
- name: currency_exchange
|
|
description: Get currency exchange rate from USD to other currencies
|
|
parameters:
|
|
- name: currency_symbol
|
|
description: the currency that needs conversion
|
|
required: true
|
|
type: str
|
|
in_path: true
|
|
endpoint:
|
|
name: frankfurther_api
|
|
path: /v1/latest?base=USD&symbols={currency_symbol}
|
|
system_prompt: |
|
|
You are a helpful assistant. Show me the currency symbol you want to convert from USD.
|
|
|
|
- name: get_supported_currencies
|
|
description: Get list of supported currencies for conversion
|
|
endpoint:
|
|
name: frankfurther_api
|
|
path: /v1/currencies
|
|
|
|
endpoints:
|
|
frankfurther_api:
|
|
endpoint: api.frankfurter.dev:443
|
|
protocol: https
|
|
|
|
tracing:
|
|
random_sampling: 100
|
|
trace_arch_internal: true
|